- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unable to display the @ character
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
06-23-2004 09:14 AM
06-23-2004 09:14 AM
Unable to display the @ character
on some of our HP servers, the @ character cannot be displayed neither from the command line nor under vi for all UNIX users.
Instead, it behaves as if I had keyboarded a new line character : the prompt is displayed again, and the beginning of the command typed (before pressing @) is not executed.
Have I got a problem with my stty definitions ?
How can I retrieve my "at" character ?
Thanks in advance, BR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 09:20 AM
06-23-2004 09:20 AM
Re: Unable to display the @ character
to fix
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 09:21 AM
06-23-2004 09:21 AM
Re: Unable to display the @ character
stty eol '^@'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 09:30 AM
06-23-2004 09:30 AM
Re: Unable to display the @ character
It is set to either eol or by default "kill" so you would see it like new line character though you won't get a prompt unless you type enter.
Run the following command and see how your stty settings appear.
stty -a
If you see @ associated with kill, do
stty kill ^U
or if it is eol then
stty eol ^@
Where (^U is cntrolV-ControlU)
Make sure you profile includes the following line
stty erase "^H" kill "^U" intr "^C" eof "^D"
and ensure your terminal is configured to pass those characters accordingly.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 12:30 PM
06-23-2004 12:30 PM
Re: Unable to display the @ character
are you set correct $TERM ?
"ttytype" command in /etc/profile sets $TERM.
see also man page of ttytype, tset, terminfo, tic and untic.
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 01:06 AM
06-24-2004 01:06 AM
Re: Unable to display the @ character
What if you type \@?
e.g., typing
ls -l | elm -s"test" my.addr\@example.org
should display as
ls -l | elm -s"test" my.addr@example.org
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 08:32 PM
06-24-2004 08:32 PM
Re: Unable to display the @ character
By forcing
stty eol ^@
stty erase "^H" kill "^U" intr "^C" eof "^D"
in my .profile, no more problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 09:55 PM
06-24-2004 09:55 PM
Re: Unable to display the @ character
check output form stty -a
and see in which signals is @ associated
and than rapier it according to "working unix".
I guess that problem is in wrong setting of following
eol = @; eol2 = @;
change it on
eol = ^@; eol2 = ^@;
by
stty eol ^@
br Jan