- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Xterm and Dterm ?
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-10-2001 11:17 AM
тАО09-10-2001 11:17 AM
Xterm and Dterm ?
Thanks,
Patrick H. Hughes
SPAWAR Systems Center Chesapeake, VA
phughes@scn.spawar.navy.mil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2001 04:47 AM
тАО09-11-2001 04:47 AM
Re: Xterm and Dterm ?
$HOME/.dt/errorlog
and /var/dt/Xerrors. Make sure LANG and is set to something reasonable, and verify if you use Roman-8 character set or
an ISO set.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2001 05:00 AM
тАО09-11-2001 05:00 AM
Re: Xterm and Dterm ?
can you login on your console and run something like
UNIX95=x ps -efH
there, while you see the "bogus" characters in that
dtterm or xterm?
Then look "below" the line for the dtterm/xterm:
There will be line for the "shell", and perhaps there
are even more lines, all indented to the right...
What are those lines showing (i.e. what processes are
running)?
Is this true for all users, all terminals, all networked
sessions (telnet, rlogin, remsh, X-Windows failsafe
session, X-Windows CDE session, console terminal)?
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2001 12:22 PM
тАО09-11-2001 12:22 PM
Re: Xterm and Dterm ?
In the CDE "Application Manager" you will find an icon for "xwd" which will let you take a window dump and save to a file. Use this to grab a shot of the dtterm/xterm display and we'll probably be able to offer additional suggestions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2001 11:24 AM
тАО09-13-2001 11:24 AM
Re: Xterm and Dterm ?
All other commands while in the root directory appear to work correctly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2001 11:28 AM
тАО09-13-2001 11:28 AM
Re: Xterm and Dterm ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2001 02:15 PM
тАО09-13-2001 02:15 PM
Re: Xterm and Dterm ?
Can you check if "ls" is an alias. Do a
"type ls"
and since you are saying this is happening to all users, check the /etc/profile and see if you are aliasing ls there.
Did you see anything in the errorlogs?
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2001 07:59 PM
тАО09-13-2001 07:59 PM
Re: Xterm and Dterm ?
Using the inode listed (from "-i") and "find", you can rename these file with something like:
let count=0
for file in $(find / -xdev -inum insertinodenumberhere )
do
mv -i $file /tmp/badfile.$count
let count++
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2001 08:04 PM
тАО09-13-2001 08:04 PM
Re: Xterm and Dterm ?
ls -ib
This will display the non-printables as octal values.
Then, using the inode number (from the "-i" option) for each file, you can move these to /tmp & rename them using something like:
find / -xdev -inum INODE -exec mv -i {} /tmp/badfile \;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-13-2001 11:18 PM
тАО09-13-2001 11:18 PM
Re: Xterm and Dterm ?
I think your home directories .dt subdir is corrupt. Simply
rm -rf $HOME/.dt
and then log into the desktop again and it will be recreated.