- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Swapping CD's
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-17-2002 11:34 AM
01-17-2002 11:34 AM
Swapping CD's
I have been prompted to insert the second CD while I am doing an install. The problem is that when I try to eject it won't eject and when I try to unmount it gives a message the the device is busy. What other kinds of actions should I take.
CHeers,
Dee.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2002 11:36 AM
01-17-2002 11:36 AM
Re: Swapping CD's
Two things to check:-
1. That you are not in or using the mount point.
2. Fuser -u
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2002 11:37 AM
01-17-2002 11:37 AM
Re: Swapping CD's
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2002 11:39 AM
01-17-2002 11:39 AM
Re: Swapping CD's
find the process using the CD drive
# fuser -ku /cdrom
# fuser -ku {device file for CDROM}
Also you may be already in /cdrom.
#pwd
Verify that you are nod in that mount-point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2002 11:48 AM
01-17-2002 11:48 AM
Re: Swapping CD's
You are probably in the directory where the cd is mounted. if there is a install process running it may get killed if you want to forcibly unmount the CD. This is how you forcibly unmount a cd/filesystem,
fuser -cu /mount_point
this will list the user and the process id of the process using that mount point. to kill all the process using the mount point,
fuser -ck /mount_point
Again do a fuser and see if there are any more processes left. If not try to unmount the cd/filesystem,
umount /mount_point
Hope this helps.
Regds