Terminal Stops Echoing Input

I've been using Terminal (OS X Lion) to ssh into a Linux server (itself running in a virtual machine) to do development work, and have been doing this on this system for the past half year.
A few days ago my Mac crashed and I had to restore it (and the Linux VM) from a backup. Since then Terminal's been behaving strangely. It always works properly when I first open it, but after between a few minutes and a few hours it stops echoing keyboard input. In other words, if I type "ls -al" and hit enter, nothing appears at the command prompt. But after hitting enter the command is sent to the Linux box and run anyway. Nothing I type is being printed back to my screen though everything is still being invisibly sent to the remote server.
I can't figure out if it's Terminal itself or some control code being erroneously sent from the Linux server that stops it from echoing input.
When it happens I have to close the Terminal window and open a new one. That fixes it, until the issue invariably pops up again.
Any idea what's going on?

try something like this
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String user_input = reader.readLine();
if(!(user_input.equals(""))){
      System.exit(0);
}else{
//run your program
}Greetings,.
Arnoud

Similar Messages

  • Control to Stop Users Inputting their own Time Data?

    Hi all. I'm carrying out a security review of users on a SAP HR implementation. I was wondering if there is a control in place on SAP that would stop a user with access to make changes to input time from inputting their own time on the system using PTMW. Thanks

    Hi John,
    You have to use the authorization object P_PERNR with the value E = Authorization for all personnel numbers excluding own personnel number for field PSIGN while creating the authorization profiles and assigning to HR roles.
    Pls refer the below link:
    http://help.sap.com/erp2005_ehp_02/helpdata/en/94/b8b83b5b831f3be10000000a114084/content.htm
    Regards
    Raviiiiiiiiiii
    Edited by: ravishanker m on Jul 1, 2011 10:35 AM

  • Terminal stopped working normally.

    Before I start, I must say I don't have a clue how the terminal works, so forgive me.
    I've been using it to start my installation of Coldfusion 8, without any problems.
    However, today I entered my usual:
    sudo /Applications/Coldfusion8/bin/coldfusion start &
    Which has always worked before.
    This time, is asked me for a password, which it hasn't before, but I entered it anyway, and all I get is 'Command not found' and that it had been stopped.
    All the lines have the prefix of xp:~, which I'm sure it didn't before.
    I hope someone can help as I'm at the end of my tether and am desperate to test my websites.
    UPDATE: I quit terminal and started it again. When it starts I get no prompt at all, just a grey box. When I type in the start Coldfusion command and press enter, it just sits there, not doing anything.

    You always have to enter an admin password when using the sudo command in Terminal (it's good for five minutes). The *command not found* message indicates that coldfusion isn't in that bin folder. Finally, you'll probably get a more cogent response posting to the Unix forum under OS X Technologies.

  • When to stop reading input...

    Lets say you're talking to a server that sends nulls all the time, midway through communication. You want to put the data you're receiving into a packet. You have to determine the cutoff of a packet, and in this case it's easy, as it's just when the server stops talking to you (it expects you to send a packet next).
    But when do you determine when the server stops talking to you? You can't say read while the byte input is not 0x00, since it sends 0x00's all the time. The ways that I can think of to do this seem overcomplicated. For instance, using a timer, stopping when you receive a certain byte or a certain number of bytes, etc. Sometimes you will not know how long a packet is, however, and how much time it takes to send (the cutoff from one packet to another could be greatly significant). Is there any way to for an InputStream object to tell when it's not receiving anything at all (when 0x00 is not an answer)? Are there other classes that have this functionality? (I'm using InputStream and some of its subclasses and I can't find what I'm looking for.)

    If you're reading from an InputStream connected to a socket you can use Socket.setSoTimeout to cause an exception if nothing is received within a particular time.
    These old protocols that filled the line with nulls, which they tended to call "idles" are not good candidates for direct ports to TCP/IP. The standard practice in theX.3 - X29, etc world was to have the following to determine forwarding and turnaround (in this discussion "character" means Octet, represented as a byte in Java, not a 16 bit Java unicode character) :
    - a forwarding or idle time, after a certain period of either no receipt of data or just idles, the collected data was packetized and forwarded.
    - a set of forwarding characters, if any of these are received, forward what you have..
    - a maximum packet size, forward if full
    - if half duplex a turnaround character, Ascii 7, bell, was a favorite. This character was treated as a forwarding character by pads.
    All of this could be configured.

  • XI3.1 stop start input/output

    windows clustered BOE XI 3.1 environment.. now that services run under the SIA.. how can I stop and start input and output from dos command.  I need this because I have a .bat file that stops these services at 11 pm every night to backup for DR
    Thanks
    Bryan

    Look in the admin guide and also search SAP Notes, there is a KB on this.
    1286926    How to start/stop or enable/disable individual XI3.x servers from command line

  • Termination Workbench -Batch Input (sm35)

    Hi,
    In case of Termination Workbench, when we execute the batch input including the infotypes for delimition, do I need to actually delimit alll these infotypes or will they get delimited on their own on execution of batch input.
    Regards
    Yashika

    they will delimate automatically
    Reward points if helpful

  • Custom Pipeline Component stopped changing input filename

    Hi
    In my project, I have a custom pipeline component to change the input file name. I use it in the receive pipeline decode stage. It was working initially when I had only a receive pipeline and custom pipeline component in my solution. later I introduced
    two schemas, an orchestration, map and a send pipeline. The rename is not working anymore. Please help.
    receive adapter: FILE
    send adapter: FTP
    Custom pipeline component: (File Name Setter)
    Receive pipeline:
      decode: custom pipeline component to rename the filename
      disassemble: flatfile disassembler conecting to a document schema
    Map:
      Schema 1 to Schema 2 (transforms from Windows to Unix format)
    Orchestration:
      receive message
      transform using map above
      send message
      Exception Handler
    Send pipeline:
      FlatFile assembler
    manibest

    May be its not working now, because in the orchestration which you have added,
     you’re constructing a new message from the received message and the context properties from the Received message is not copied across to the newly constructed message. So when you use “%SourceFileName%” macro in the send port,
    the ReceivedFileName context property is missing in the newly constructed message which is sent out.
    So in your Orchestration, while constructing (in MessageAssignment shape) the outbound message from the Received message, copy the context property of the Received message to the newly constructed message. Something like this
    //This line copies all the context properties from received message to the outputted message
    msgOutputted (*)= msgReceived(*)
    //or
    //This line just copies the receive file name context property from received message to the outputted message
    msgOutputted (FILE.ReceivedFileName)= msgReceived (FILE.ReceivedFileName).
    If you’re not using the Orchestration or constructing the new message (even in map), then just add the schemas/orchestration or any pipeline would not affect the ReceiveFileName code. May be in this case, debug the pipeline and also check whether the outputted
    message has ReceivedFileName in its context property.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Need to stop irrelevant input into inbox / how to do a REAL filter?

    I finally found the User Manual. This should be put up at the head of the website - not hidden away. It was recently posted. I didn't know it existed. I discovered it by accident.
    Some of the stuff in the User Manual is confusing and not well or completely explained. I don't seem to be following any streams. I've turned "e-mail me" back on, and I'm waiting to see if I get flooded with e-mails yet again - although everything else is supposedly filtered. My problem is two-fold:
    (1) I'm only interested in ONE specific problem aspect of Adobe Flash Player - I don't want to hear about anything else - it's irrelevant.
    (2) I ONLY want responses to my relevant questions - I don't want a huge amount of trivial data about AFP - I can look it up in the forums myself. And I DON'T want notifications about all this clogging up my e-mail inbox, in turn.
    Re the User Manual again - I finally confirmed the sad news that I can't delete stuff - 95% of which is useless and unneeded by me. So how do I prevent it from coming in in the first place? No info here. I will have to shut down my account, and start a new one, each time I try to resolve a single problem. That's B.S. Fix the problem with Adobe Forums, get a REAL filter going. Adobe needs to fire Jive, junk their sorry excuse for a website, and hire somebody with skills to design a proper, functional, and user-friendly website. Duh.

    I had to figure it out myself, by trial and error:
    Anytime you see the bloody "Following in…" icon [looks like an electrically shocked earthworm] on any forum page, click on it to get a drop down menu:
    Click on "Stop Following", then on "Done".
    This can (or must be) done for each thread and/or forum you are following. 
    This is the lamest, dumbest, most ridiculous system I have ever experienced anywhere, including other Jive sites.
    The Apple discussion boards also use Jive, and I don't see any of the Adobe forums cr@p we know so well and hate so intensely here. 

  • How to stop echo on iphone 4s?

    Just got an iphone 4s and my callers get this annoying echo, less of a problem when mobile is on loudspeaker, but echo is still there. Can anyone help please?

    guess you could put them all in the same folder and name it somebody elses problem
    not seriously you can't but you can use restrictions to block stuff
    (restrictions are in settings->general)

  • [SOLVED] Terminator stopped working Unable to start shell:/bin/bash

    Hello,
    I just wanted to share as I didn't found anything about it,
    Since yesterday I can't launch my favorite terminal emulator which is terminator, it gives me :
    Unable to start shell:/bin/bash
    displayed in terminator window where I'm supposed to type commands.
    What is strange is that I can launch /bin/bash in tty's plus I installed xterm temporarily which works fine with bash.
    One more thing is that if I close terminator window it closes my graphical session !
    Any idea to troubleshoot this ?
    Last edited by detestable (2013-08-16 08:39:54)

    I'm getting this :
    me@latitude ~ $ gdb /usr/bin/python
    GNU gdb (GDB) 7.6
    Copyright (C) 2013 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law. Type "show copying"
    and "show warranty" for details.
    This GDB was configured as "x86_64-unknown-linux-gnu".
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/>...
    Reading symbols from /usr/bin/python3.3...(no debugging symbols found)...done.
    (gdb) run /bin/terminator
    Starting program: /usr/bin/python3.3 /bin/terminator
    warning: Could not load shared library symbols for linux-vdso.so.1.
    Do you need "set solib-search-path" or "set sysroot"?
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/usr/lib/libthread_db.so.1".
    File "/bin/terminator", line 103
    except (KeyError,ValueError), ex:
    ^
    SyntaxError: invalid syntax
    [Inferior 1 (process 13780) exited with code 01]
    I also tried gnome-terminal which is not working correctly (installed right now)
    From the user interface it says in red :
    "There was an error creating the child process for this terminal"
    "grantpt failed: Operation not permitted"
    From gdb :
    m@latitude ~ $ gdb /usr/bin/gnome-terminal
    GNU gdb (GDB) 7.6
    Copyright (C) 2013 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law. Type "show copying"
    and "show warranty" for details.
    This GDB was configured as "x86_64-unknown-linux-gnu".
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/>...
    Reading symbols from /usr/bin/gnome-terminal...(no debugging symbols found)...done.
    (gdb) run
    Starting program: /usr/bin/gnome-terminal
    warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000
    warning: Could not load shared library symbols for linux-vdso.so.1.
    Do you need "set solib-search-path" or "set sysroot"?
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/usr/lib/libthread_db.so.1".
    [New Thread 0x7fffea2b9700 (LWP 13839)]
    Error: GDBus.Error:org.gtk.GDBus.UnmappedGError.Quark._vte_2dpty_2derror.Code1: grantpt failed: Operation not permitted
    [Thread 0x7fffea2b9700 (LWP 13839) exited]
    [Inferior 1 (process 13835) exited normally]
    Only xterm seems to work

  • MaskFormatter stops allowing input

    i need a MaskFormatter which allows the user ot input time in the format hh:mm. features:
    user should be able to conveniently type four digites without having to press the ":" key
    the value of the JFormattedTextfield should always be of type date, never string
    the problem: once i set a value, the textfield doesn't allow input anymore. here's an example:
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import javax.swing.JButton;
    import javax.swing.JFormattedTextField;
    import javax.swing.JFrame;
    import javax.swing.text.MaskFormatter;
    public class TimeFormatter extends MaskFormatter {
         // set mask and placeholder
         public TimeFormatter() {
              try {
                   setMask("##:##");
                   setPlaceholderCharacter('0');
                   setAllowsInvalid(false);
                   setOverwriteMode(true);
              } catch (ParseException e) {
                   e.printStackTrace();
         @Override
         public Object stringToValue(String string) throws ParseException {
              SimpleDateFormat df = new SimpleDateFormat("HH:mm");
              if( string == null)
                   string = "00:00";
              return df.parse(string);
         @Override
         public String valueToString(Object value) throws ParseException {
              SimpleDateFormat df = new SimpleDateFormat("HH:mm");
              if( value == null)
                   value = new Date( 0);
              return df.format( (Date) value);
         public static void main(String[] args) throws Exception {
              // textfield 1: create formatter and textfield
              final MaskFormatter formatter = new TimeFormatter();
    //          formatter.setValueClass(java.util.Date.class);
              final JFormattedTextField tf1 = new JFormattedTextField( formatter);
              tf1.setPreferredSize( new Dimension( 50, 22));
              // set initial value
              tf1.setValue( new Date());
              // textfield 2: create formatter and textfield
              final JFormattedTextField tf2 = new JFormattedTextField( formatter);
              tf1.setPreferredSize( new Dimension( 50, 22));
              // no initial value
              // tf1.setValue( new Date());
              // button to show current value
              JButton bt = new JButton("Show Value");
              bt.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.out.println("value 1 = " + tf1.getValue() + ", value 2 = " + tf2.getValue());
                        System.out.println("value 1 = " + tf1.getText() + ", value 2 = " + tf2.getText());
                        // System.out.println("value class: " + formatter.getValueClass());
              // main frame
              JFrame f = new JFrame();
              f.getContentPane().setLayout(new FlowLayout());
              f.getContentPane().add(tf1);
              f.getContentPane().add(tf2);
              f.getContentPane().add(bt);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.pack();
              f.setSize(300, 100);
              f.setVisible(true);
    }you see, that you can't edit the first textfield. it has a value set (current date). however, you can edit the 2nd textfield, but once that field loses the focus, you can't edit that anymore either.
    does anyone know what's happening and have a solution?

    you can lock this, i've solved it.
    however, since probably more people will run into this issue, here's a quick solution:
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import javax.swing.JButton;
    import javax.swing.JFormattedTextField;
    import javax.swing.JFrame;
    import javax.swing.text.MaskFormatter;
    public class TimeFormatter extends MaskFormatter {
         // set mask and placeholder
         public TimeFormatter() {
              try {
                   setMask("##:##");
                   setPlaceholderCharacter('0');
                   setAllowsInvalid(false);
                   setOverwriteMode(true);
              } catch (ParseException e) {
                   e.printStackTrace();
         @Override
         public Object stringToValue(String string) throws ParseException {
              return new MyDate( string);
         @Override
         public String valueToString(Object value) throws ParseException {
              if( value == null)
                   return new MyDate().toString();
              return ((MyDate) value).toString();
         public static void main(String[] args) throws Exception {
              // textfield 1: create formatter and textfield
              final MaskFormatter formatter = new TimeFormatter();
              final JFormattedTextField tf1 = new JFormattedTextField( formatter);
              tf1.setPreferredSize( new Dimension( 50, 22));
              // set initial value
              tf1.setValue( new MyDate());
              // textfield 2: create formatter and textfield
              final JFormattedTextField tf2 = new JFormattedTextField( formatter);
              tf1.setPreferredSize( new Dimension( 50, 22));
              // no initial value
              // tf1.setValue( new Date());
              // button to show current value
              JButton bt = new JButton("Show Value");
              bt.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.out.println("value 1 = " + tf1.getValue() + ", value 2 = " + tf2.getValue());
                        System.out.println("value 1 = " + tf1.getText() + ", value 2 = " + tf2.getText());
                        // System.out.println("value class: " + formatter.getValueClass());
              // main frame
              JFrame f = new JFrame();
              f.getContentPane().setLayout(new FlowLayout());
              f.getContentPane().add(tf1);
              f.getContentPane().add(tf2);
              f.getContentPane().add(bt);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.pack();
              f.setSize(300, 100);
              f.setVisible(true);
         public static class MyDate extends Date {
              public MyDate() {
                   super();
              public MyDate( String time) {
                   super();
                   try {
                        setTime( new SimpleDateFormat("HH:mm").parse(time).getTime());
                   } catch (ParseException e) {
                        e.printStackTrace();
                        setTime( 0);
              @Override
              public String toString() {
                   SimpleDateFormat df = new SimpleDateFormat("HH:mm");
                   return df.format( getTime());
    }the problem: you mustn't use Date as an object of the formatter.
    the reason: Date doesn't have a constructor that allows a string specified in "HH:mm" format. new Date("00:00") throws an
    IllegalArgumentException()
    in Date's
    public static long parse(String s)
    During text input the parser is called from Date's String parameterized constructor:
    MaskFormatter's stringToValue(String value, boolean completeMatch)
    calls
    DefaultFormatter's stringToValue(String string)
    which contains:
    cons = vc.getConstructor(new Class[] { String.class });
    return cons.newInstance(new Object[] { string });
    and the instantiation of Date( "00:00") fails because the above mentioned IllegalArgumentException()
    In short: a given MUST for the MaskFormatter is, that the used object must have a valid constructor which allows a String parameter.

  • After opening up any PDF my PC will stop taking input

    ....what I mean is, the PDF will open, but any program, software, document I try to open afterwards will not. Task Manager does not come up, when I double click on an icon i can see I clicked on it, I get the hourglass for a second, then it disappears. This has happened to me on X and XI
    PS: If this has been answered already, I apologize, I really just couldn't find a solution since I really did not know how to word this in a short way.

    Very strange; this is not something I have seen before.  Still, some things to try...
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    If you cannot open Reader by itself, try to disable Protected Mode in the registry; download, unzip, then run the attached registry script
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • Adobe apps stop accepting input from my keyboard(s)

    This happens irregularly in Photoshop, Illustrator and the old GoLive CS. I will have a dialog box open and nothing happens when I type into a text field. The only solution is to use the mouse to close windows and quit the program. I have the same preferences on two computers because I copy my documents folder from desktop to laptop when on extended trips.
    This happens on all sorts different keyboards (Apple aluminum and Kensington extended for my 2008 Mac Pro, built-in and Logitech keyboard for my 2008 MacBook. I am currently using Leopard, and these are CS2 apps. But the fact is, it's been a problem for years.
    It's really annoying. Any suggestions to solve it, aside from upgrading to CS4?

    CS and CS2 are not supported in Leopard and will never be supported. If they work thank your lucky stars.
    Also CS and CS2 are written for PowerPC Macs and are not native to the new Intel Macs so they must run in Emulation mode (known as Rosetta).
    If you really need these apps I suggest you get CS4 which is native to the Intel Chip or move back to your Power PC Mac.

  • Running vmware-user-suid-wrapper stops keyboard/mouse input

    I'm attempting to run Arch under VMWare Fusion 3 in Mac OS X.  I have previously run Arch on a variety of Windows and Linux machines using VirtualBox without issue. (I would use VirtualBox on the Mac as well, but it's performance is incredibly slow.)
    I followed the instructions in the Wiki here:
    https://wiki.archlinux.org/index.php/In … _in_VMware
    However, when I run the command as listed in the guide:
    $ ls -l /usr/bin/vmware-user-suid-wrapper
    the wrapper's permissions are
    -rwsr-sr-t 1 root root
    rather than what is shown in the wiki.  If I then attempt to execute vmware-user-suid-wrapper, the system stops accepting input from my mouse and keyboard.  Executing the command via sudo does nothing, nor does running chmod 4755 as suggested in the guide.
    Any ideas?
    Last edited by ptmkenny (2011-03-22 16:04:48)

    Hello,
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Foreign language input on "Solaris 10"

    Hello.
    I installed "Solaris 10" via 5 CD's (minus the 6th, Languages CD).
    My question is in what way can the GNOME desktop present an indicator of a language other than English?Via Preferences>Keyboard Layout I added Serbian, German and Bulgarian (it seems tha under my configuration four is the maximal number of languages I can add).The system did not reported any failure or error.
    However, I do not know how to enable the keyboard to make inputs in Cyrillic alphabets (Serbian and Bulgarian) or in German latin.
    There is no indicator present in the bottom panel, neither is one to be founded under items that may be added to the panel.
    As you all know, even the feeblest of Linux distributions and all Windows distribution do provide a multilanguage support, available usually via icon that may be swithched or expanded into menu.I would be most surprised that a serious OS like Solaris would fail to provide such a simple solution to the needs of its users worldwide.
    Thus I believe that the mistake is on a me: did I made a mistake by not selecting all those languages , or some of them (thinking that these are only files for regionalization of the GUI) or is there some other way, with or without the sixth CD, to establish an easy method for prompt switching among languages for keyboard input on the Solaris's GNOME-like desktop?
    Can anybody of you could kindly explain me what is the issue here.
    Thank you.

    Hello.
    I installed "Solaris 10" via 5 CD's (minus the 6th,
    Languages CD).
    My question is in what way can the GNOME desktop
    present an indicator of a language other than
    English?Via Preferences>Keyboard Layout I added
    Serbian, German and Bulgarian (it seems tha under my
    configuration four is the maximal number of languages
    I can add).The system did not reported any failure or
    error.
    However, I do not know how to enable the keyboard to
    make inputs in Cyrillic alphabets (Serbian and
    Bulgarian) or in German latin.
    There is no indicator present in the bottom panel,
    neither is one to be founded under items that may be
    added to the panel.
    As you all know, even the feeblest of Linux
    distributions and all Windows distribution do provide
    a multilanguage support, available usually via icon
    that may be swithched or expanded into menu.I would
    be most surprised that a serious OS like Solaris
    would fail to provide such a simple solution to the
    needs of its users worldwide.
    Thus I believe that the mistake is on a me: did I
    made a mistake by not selecting all those languages ,
    or some of them (thinking that these are only files
    for regionalization of the GUI) or is there some
    other way, with or without the sixth CD, to establish
    an easy method for prompt switching among languages
    for keyboard input on the Solaris's GNOME-like
    desktop?
    Can anybody of you could kindly explain me what is
    the issue here.
    Thank you.serveral questions -
    did you choose to install the locales you are referring to ?
    if so, can you login to the terninal and choose one of those locales
    and when you are in the gnome session, in the terminal if you
    type echo $LC_ALL, it shows you the value for those locales ?
    when typing xset q - what are the results - part of those results
    shows the font path, and that is needed to be set for the fonts
    to be found, though if locales are installed and you login to the
    locale, that is set for you.
    from that terminal can you input the characters of that locale, using
    the key combinations that are needed ?
    or could it be the 6th CD is needed, that it might have the locale info
    and fonts for the locales you are referring to ?
    Please send this addtional information when you can.

Maybe you are looking for