- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem mounting my cdrom
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
01-11-2001 01:48 PM
01-11-2001 01:48 PM
Problem mounting my cdrom
Trying to mount my cdrom on a K-580, running 11.0.
Issue a "mount /cdrom" and receive the following message;
/dev/dsk/c4t2d0: Device busy
No users are attached to the drive.
How can I tell what's going on?
Additional information;
I have no entry in my mnttab file for the cdrom
I have an entry in my fstab file for the cdrom;
/dev/dsk/c4t2d0 /cdrom cdfs ro,suid 0 0
I tried to issue the following command as well;
mount -F cdfs /dev/dsk/c4t2d0 /cdrom
/dev/dsk/c4t2d0: Device busy
Any ideas?
Thanks
Kurt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2001 02:03 PM
01-11-2001 02:03 PM
Re: Problem mounting my cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2001 02:47 PM
01-11-2001 02:47 PM
Re: Problem mounting my cdrom
# umount /cdrom
umount: cannot find /cdrom in /etc/mnttab
cannot unmount /cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2001 04:19 PM
01-11-2001 04:19 PM
Re: Problem mounting my cdrom
Hope this helps
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2001 05:41 PM
01-11-2001 05:41 PM
Re: Problem mounting my cdrom
mkdir /xcdrom
mount /dev/dsk/c4t2d0 /xcdrom
If this succeeds, then
umount /xcdrom
rm /cdrom ---don't ask me why, it just worked.
mkdir /cdrom
mount /dev/dsk/c4t2d0 /cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2001 11:02 PM
01-11-2001 11:02 PM
Re: Problem mounting my cdrom
Do you have pfsd and pfs_mountd running?
If this is the case, it could prevent from mounting a cdrom and report a "device busy" ?
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 07:36 AM
01-12-2001 07:36 AM
Re: Problem mounting my cdrom
Rane: Results for fuser -u /cdrom
# fuser -u /cdrom
/cdrom:
#
So I take that as no active connections to this resource.
Donovan:
# mkdir /xcdrom
# mount /dev/dsk/c4t2d0 /xcdrom
/dev/dsk/c4t2d0: Device busy
Still busy...
Hetzel:
# ps -ef | grep pfs
root 2026 14853 1 08:24:05 pts/t2 0:00 grep pfs
No indication of any pfs*
Still puzzled....
Should I have an entry in my mnttab for my cdrom? If so, Anyone know what it should look like?
About ready to boot the box this weekend if all else fails...
Thanks for the continued support.
Kurt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 10:43 AM
01-12-2001 10:43 AM
Re: Problem mounting my cdrom
Apparently, I need to have a CD in the drive before I mount it! Duuuuuu
Thanks all