- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- "@" symbol is not printing
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2004 06:56 PM
10-10-2004 06:56 PM
When i telnet to one of my server , i am not able to type "@" symbol. It is not printing anything even in vi editor also. This is working in other servers. I have the same .cshrc files for both the systems
Any idea why is it happening ?
Thanks
Sreejith M
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2004 07:02 PM
10-10-2004 07:02 PM
Re: "@" symbol is not printing
check the contents of /etc/kbdlang
#more /etc/kbdlang
it should be
PS2_DIN_US_English
or
USB_PS2_DIN_US_English
or
Not_Applicable
regds,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2004 07:04 PM
10-10-2004 07:04 PM
Re: "@" symbol is not printing
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2004 07:16 PM
10-10-2004 07:16 PM
Re: "@" symbol is not printing
stty eol "^@"
Put that in your shell default profile there.
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2004 08:20 PM
10-10-2004 08:20 PM
SolutionTo correct this, you mus set the kill character to something else. I use ^U (control-U) for that:
stty kill ^U
If this helps, check the other stty settings too: there are other default settings that may not make sense in a modern environment, like the default terminal speed of 300 bps.
(Anything slower than 9600 makes some editors deliberately slow down their output.)
Where are you telnetting from? The telnet client on Unix host should be able to report the stty settings of the client host to the server host, so the session on the server host can be set up correctly. However, some Windows telnet clients might not do this correctly.
The terminal type setting (environment variable TERM on unix hosts) might also be affecting this. If you're using a Windows telnet client, find out what terminal type it is reporting to the server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2004 10:25 PM
10-10-2004 10:25 PM
Re: "@" symbol is not printing
It is working now. Thanks a lot
Sreejith M