Mount a Filesystem


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Mount a Filesystem
# 1  
Old 06-14-2002
Mount a Filesystem

I want help about mount a filesystem to use a cdrom to install a software that be in the cd cdrom..

you can send a mail ::removed emails::

Last edited by oombera; 02-19-2004 at 11:35 AM..
# 2  
Old 06-14-2002
It is against forum rules to ask for responses via e-mail.

If I e-mail the solution to you, how is JoeBob in three months going to find the answer to the exact same question when he uses the forum search function? (https://www.unix.com/showthread.php?s...ht=mount+cdrom)

What OS are you using?

On a BSD type system the command is:

Code:
mount -t cd9660 /dev/acd0 /MyMountPoint

If the CD drive is an IDE drive. The device names often different from OS to OS.
# 3  
Old 06-14-2002
On HPUX, you can mount a cdrom in this manner.

mount -F cdfs /dev/dsk/c0t0d4 /cdrom

Some may require you to mount as read only ( ro ).

Smilie
# 4  
Old 06-18-2002
On Red Hat linux it's just mount /dev/cdrom .

Rgds
Gambhi.
# 5  
Old 06-18-2002
that's misleading, i think, you should use the -t flag to specify the filesystem type, and also you should specify the mount point. The example given there relies on a corresponding entry in the /etc/fstab file, does it not?

as far as i know, for GNU/Linux, you would make sure the mount point exists, eg /mnt/cdrom and if not, create it "mkdir /mnt/cdrom" then you would:
"mount -t iso9660 /dev/hdc1 /mnt/cdrom"

hdc1 is the name of your device, so that can change, but that's how it is on my system, /mnt/cdrom can be any directory that exists, and the type (denoted by -t) is something you may wish to check by doing "man mount" or "man fstab" since i am saying this off the top of my head and i'm not 100% sure it's correct.
# 6  
Old 06-18-2002
On Unixware 7.1
mount -r -Fcdfs /dev/cdrom/cdrom1 /CD
ladwig
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

OpenIndiana: Can't mount ext2 filesystem

I have oi_151a7 and installed from sfe fuse-ext, libfuse and e2fsprogs. Mount e.g. # mount -F ext2fs /dev/dsk/c4t0d0p1 /mnt returns "mount: Operation not applicable to FSType ext2fs" and $ fuse-ext2 /dev/dsk/c4t0d0p1 ~/tmp/a/ does not output anything but the filesystem seems not to be... (3 Replies)
Discussion started by: bsdx
3 Replies

2. UNIX for Dummies Questions & Answers

Can't mount filesystem

I have 2 Linux servers. rcwlo-ods10g and rcwlo-10gdev I can mount one filesystem from rcwlo-ods10g onto rcwlo-10gdev fine: RCWLO-10gDev:/ # mount -F rcwlo-ods10g:/SAN /backup but when I try another one I get: RCWLO-10gDev:/ # mount -F rcwlo-ods10g:/backup /backup mount:... (0 Replies)
Discussion started by: jamie_collins
0 Replies

3. AIX

Mount Filesystem in AIX Unable to read /etc/filesystem

Dear all, We are facing prolem when we are going to mount AIX filesystem, the system returned the following error 0506-307The AFopen call failed : A file or directory in the path name does not exist. But when we ls filesystems in the /etc/ directory it show -rw-r--r-- 0 root ... (2 Replies)
Discussion started by: m_raheelahmed
2 Replies

4. Solaris

Mount old zfs filesystem

Hey all, I have a machine with 16 drive slots. Two of the drives have a ZFS mirror of the operating system, the other 14 contain the storage raidz. So, after installing Opensolaris on the OS drives, how can I remount the storage raid? TIA (11 Replies)
Discussion started by: PatrickBaer
11 Replies

5. Solaris

Mount /usr as a separate filesystem

Hi All, I have mount /usr directory as a seperate filesystem.The /usr directory includedd in / root file system.I have to mount it as seperate. Please Help me, Thanks and Regards, (7 Replies)
Discussion started by: lbreddy
7 Replies

6. Linux

How to mount a filesystem of one pc in another pc that are connected in a network?

Hi, I have a software in one of the pcs connected in the network and I need to mount that file system in my PC. Both the pcs have Linux installed. Please let me know how can we achieve this. Any pointers would be of great help. Thanks & Regards, Venkatesh. (3 Replies)
Discussion started by: venkatesh_sasi
3 Replies

7. Shell Programming and Scripting

shell script to mount filesystem

Hi, Gurus: I need your help to finish a script that will mount two file systems automatically when saver is reboot or start. I am working on a new Sun Sparc machine with Solaris 9 on it. This box got two disk. disk one has been partitioned to hold Solaris OS. disk two has been partitioned as... (6 Replies)
Discussion started by: duke0001
6 Replies

8. Solaris

Remote mount an already mounted nfs filesystem

Hello all, We're using JET to build our systems.. I'm in the process of needing to build a centrally located JET box with access to all our networks rather that 2 or 3 dotted around. Part of the means I need to locate the boot & OS images on an NFS mount (via NETAPP filer).. However in the... (1 Reply)
Discussion started by: itsupplies
1 Replies

9. Linux

how to mount ntfs filesystem

:) Hi frds ..i hope i can get some help for this.. I am unable to mount ntfs/hpfs file system which contain my XP o/s. As per the information collected on net i found tht my kernel i.e 2.4.xx does not support ntfs ..? Now I dont knwo where to get upgraded kernel and how to deploy it ..can anyone... (0 Replies)
Discussion started by: nicknihal
0 Replies

10. UNIX for Dummies Questions & Answers

Mount nfs filesystem

I try to share a directory from a wortstation to a server. the share command was no problem. Solaris 8 on mars share -F nfs -o rw /dir/dir2 on the server mount mars:/dir/dir2 /mount_point RPC: Program not registered <--- What is the meaning of this ? Thanks for you help ! (2 Replies)
Discussion started by: joerg
2 Replies
Login or Register to Ask a Question