- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to delete a Symbolic link
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
08-21-2003 08:33 PM
08-21-2003 08:33 PM
How to delete a Symbolic link
after the fail of NFS remote directory mounting the directory "/cdrom" it changed to Symbolic link like that:
"lrwxrwxrwx 1 root root 20 Aug 22 02:42 cdrom"
then I want to see the cdrom by "cd /cdrom"
it prompt out
"NFS readlink fail for server (pid939@/cdrom): RPC Unable to receive."
how to delele the Symbolic link "cdrom" now ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 08:35 PM
08-21-2003 08:35 PM
Re: How to delete a Symbolic link
root user should be able to delete anything. If its on the remote box, log on that box as root. If you don't have root priv on the box, inform the admin.
I think the problem may be a state NFS link, which means you may need to umount and then mount the remote filesystem. If that server is back up.
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
08-21-2003 09:10 PM
08-21-2003 09:10 PM
Re: How to delete a Symbolic link
# ll temp
lrwxr-xr-x 1 root sys 9 Aug 22 12:47 temp -> /dev/null
# rm temp
# ll temp
temp not found
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 09:14 PM
08-21-2003 09:14 PM
Re: How to delete a Symbolic link
I dont see any problem in deleting a soft link. Its is a stale NFS link. If you restart the NFS service then this will go away. Is automount turned on for this?
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 10:31 PM
08-21-2003 10:31 PM
Re: How to delete a Symbolic link
#fuser -k /cdrom
restart the NFS services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 10:41 PM
08-21-2003 10:41 PM
Re: How to delete a Symbolic link
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 10:46 PM
08-21-2003 10:46 PM
Re: How to delete a Symbolic link
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 10:54 PM
08-21-2003 10:54 PM
Re: How to delete a Symbolic link
"#fuser -k /cdrom"
it prompt out
"/cdrom: stat: NO such file or directory"
"fuser: could not find or access the file /cdrom."
but when i use "ls -l"
I can see that
"lrwxrwxrwx 1 root root 20 Aug 22 02:42 cdrom"
..?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2003 12:07 AM
08-22-2003 12:07 AM
Re: How to delete a Symbolic link
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2003 12:29 AM
08-22-2003 12:29 AM
Re: How to delete a Symbolic link
thanks UmapathyS.