- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File Manager
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
07-01-2003 05:27 AM
07-01-2003 05:27 AM
File Manager
I am operating an HP-UX 10.20 system. When I open the filemanager and go to an NFS mounted directory and double-click on a file I get the following error.
The request to service this action has failed for the following reason:
TT_DESKTOP_ENOENT No such file or directory.
If it is a local file system this does not happen. Any help would be greatly appreciated.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 05:53 AM
07-01-2003 05:53 AM
Re: File Manager
I think you will get a delay followed by an error message about a stale nfs connection.
If I am correct and nfs connection is stale, which means connectivity has been lost since mount, probably due to the target server being booted.
The fix is to umount and mount the nfs share, assuming there is no netowrk problem preventing you from doing so.
Lets say the nfs mount is called /machine2
umount /machine2
This might fail due to open processes.
check with
fuser -cu /machine2
kill with
fuser -cuk /machine2
umount /machine2
mount /machine2
If you get an error at mount time, check /etc/fstab and general network connectivity. Start with ping.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 05:59 AM
07-01-2003 05:59 AM
Re: File Manager
My mount options are as follows.
chpt520:disk5 /disk5 nfs rw,suid,hard,intr 0 0
could there be something I need to do with the options?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 06:03 AM
07-01-2003 06:03 AM
Re: File Manager
i know there is a problem with DT DESKTOP and NFS mounts.
When you move or open file around graphically, you get some .nfs#### files created, and these are released only when DT DESKTOP is closed.
Deleting this files manually does not help, they get re-created.
NFS user must be able to write to this directory.
I think this might be the problem...
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 12:08 PM
07-01-2003 12:08 PM
Re: File Manager
Check the permissions of your nfs mount,
that you can write to the directory.
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2003 09:37 PM
07-01-2003 09:37 PM
Re: File Manager
CDE only supports temporary mounts created by automount(1M) when created using the special map mode, -hosts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2003 08:40 AM
07-02-2003 08:40 AM
Re: File Manager
It's been years since I saw this error. Had to dig to find my notes. I had help from HP.
In the following notes the # precedes comments made by me.
(1) Login under CDE (non-root user) on the HP-UX system
that has the problem.
(2) Open 2 dtterm windows.
(3) In one dtterm window, "su" to root. In this window, do the
following:
Execute:
cd /etc/dt/appconfig/types/C
ls -l #note I used the l command.
# or better to use ll dtpad.dt uxstd.dt
look for the existance of dtpad.dt and/or uxstd.dt If
either do exist, make backups for safe keeping.
Use -i option on cp, and if target file exists, answer "No";
you will edit the pre-existing file.
Execute:
cp -i /usr/dt/appconfig/types/C/dtpad.dt .
#note: I used cp -p -i to maintain permissions.
Execute:
cp -i /usr/dt/appconfig/types/C/uxstd.dt .
#note: I used cp -p -i to maintain permissions.
Edit the ./dtpad.dt file, making the following modifications:
REPLACE:
MAP_ACTION DtTTMediaOpen
WITH:
MAP_ACTION OpenDtpad
Save the ./dtpad.dt file.
Edit the ./uxstd.dt file, making the following modifications:
ADD:
ACTION OpenDtpad
{
LABEL Text Editor (Vi)
ARG_COUNT 0
WINDOW_TYPE NO_STDIO
TYPE COMMAND
EXEC_STRING /usr/dt/bin/dtpad
DESCRIPTION The Text Editor action runs the dtpad command directly without using ToolTalk
}
ACTION OpenDtpad
{
LABEL Text Editor (Vi)
ARG_CLASS FILE
ARG_COUNT >0
TYPE COMMAND
WINDOW_TYPE NO_STDIO
EXEC_STRING /usr/dt/bin/dtpad "%Arg_1%"
DESCRIPTION The Text Editor action runs the dtpad command directly without using ToolTalk
}
Save the ./uxstd.dt file.
(4) In the other dtterm window (non-root), do the following:
Close all dtpad windows.
Execute:
ps -ef |grep dtpad
Normally, 2 dtpad processes will exist for this user's
session (owned by this user). The ps output would
typically indicate this with lines that contain the
commands:
dtpad -server
/usr/bin/sh -c dtpad -server
Use "kill" to kill all dtpad processes owned by the user.
Execute:
/usr/dt/bin/dtaction ReloadActions
and wait until the FrontPanel activity light stops blinking.
Execute:
/usr/dt/bin/dttypes |grep -i OpenDtpad
and confirm the output shows grep finds "OpenDtpad"
(5) Click on the text editor Icon and see if it works with core
core dumping.
This changes the Dtpad action's MAP ACTION from the default
DtTTMediaOpen action to the (new) OpenDtpad action. The OpenDtpad
action bypasses tooltalk, and instead invokes dtpad directly.
Kinda long, hope it helps.
John