Sponsored Content
Full Discussion: Unable to mount CD rom
Top Forums UNIX for Dummies Questions & Answers Unable to mount CD rom Post 302755653 by Skrynesaver on Monday 14th of January 2013 04:01:09 AM
Old 01-14-2013
You mount a filesystem, not a device, the device/partition should not be mounted when you create a filesystem on it, man mkisofs for more detail
This User Gave Thanks to Skrynesaver For This Post:
 

10 More Discussions You Might Find Interesting

1. Linux

cant mount cd rom in damm small linux

hey guys im rather new to linux, im runnin damm small linux on an old HP. my problem is I cant mount the cd rom drive. when I try and mount I get the mount point is being used by another directory, i tried editing the fstab file. but that didnt work. any help would be greatly appreciated. (12 Replies)
Discussion started by: format
12 Replies

2. UNIX for Dummies Questions & Answers

How can i MOUNT CD-ROM in FEDORA Core?

Hai friends, Could you please tell me , How can i MOUNT CD-ROM in FEDORA Core? (1 Reply)
Discussion started by: haisubbu
1 Replies

3. Solaris

Mount CD-ROM to the kernel

Guys, I've successfully mounted a USB memory stick into Solaris 9 kernel using volrmmount -e /vol/dev/rdsk/cXtXdX, however I am not able to perfrom the same module in mounting CD-ROM, in another word I am not able to mount a CD-ROM to the system's kernel but I am able to see the character... (3 Replies)
Discussion started by: fkaba81
3 Replies

4. Solaris

Solaris 10 does not mount CD/DVD ROM

Hi All, I just bought the SUN x2200m2. After I installed Solaris, I cannot see the CD/DVD ROM. I cannot mount the CD/DVD ROM since it says already mounted. When I try unmount it I get message that CD/DVD is not mounted. :( Any idea please. Thx (4 Replies)
Discussion started by: afakhim
4 Replies

5. Solaris

cd rom to dvd rom drive swap

Hello, I need to replace a cd rom drive with a dvd rom drive in a SunFire v120 running Solaris 8. My objective is to install Solaris 10 from dvd disc. Downloading Solaris 10 cd discs is not an option since I am in Baghdad, Iraq and connection speeds are horrible. So far, all I can get is power to... (9 Replies)
Discussion started by: 555
9 Replies

6. Solaris

Unable to use CD-ROM

I've been having some problems with the CD/DVD drive in my V480 server. I've decided to try to boot from the Solaris DVD (to rule out the Solaris 10 OS as a culprit). I get the following errors when I try to boot from the DVD Rebooting with command: boot cdrom Boot device:... (6 Replies)
Discussion started by: soliberus
6 Replies

7. Solaris

Unable to mount Metadevice

Hi, I am running Solaris 8 on a V880 which has recently crashed. It has got a fibre connection to a StorageTrek array containing my database info. Since the crash I have been unable to mount the 2 metadevices which correspond to /spool & /apps - these FS's contain my db info and theredore I... (20 Replies)
Discussion started by: Duffs
20 Replies

8. AIX

need help - How to mount DVD rom in AIX in Command line

Dear Friends could u pls help me on this . how to mount DVD rom in command line in aix? THanks DD (4 Replies)
Discussion started by: ded325
4 Replies

9. Red Hat

Unable to mount.

Hi, I am unable to mount the AIX share on Red Hat Linux 5.5 getting below error on linux server while mounting. reason given by server: unknown nfs status return value: -1 I have checked on AIX side. lssrc -g nfs showing below output. bash-3.00# lssrc -g nfs Subsystem ... (2 Replies)
Discussion started by: manoj.solaris
2 Replies

10. UNIX for Dummies Questions & Answers

Unable to mount NFS

Hello, While mounting NFS below error is coming: # mount -t nfs 10.65.150.69:/lvsnap /lvsnap mount: mount to NFS server '10.65.150.69' failed: RPC Error: Program not registered. Please advise. Best regards, Vishal (2 Replies)
Discussion started by: admin_db
2 Replies
xfs_growfs(8)						      System Manager's Manual						     xfs_growfs(8)

NAME
xfs_growfs, xfs_info - expand an XFS filesystem SYNOPSIS
xfs_growfs [ -dilnrxV ] [ -D size ] [ -e rtextsize ] [ -L size ] [ -m maxpct ] [ -t mtab ] [ -R size ] mount-point xfs_info [ -t mtab ] mount-point DESCRIPTION
xfs_growfs expands an existing XFS filesystem (see xfs(5)). The mount-point argument is the pathname of the directory where the filesystem is mounted. The filesystem must be mounted to be grown (see mount(8)). The existing contents of the filesystem are undisturbed, and the added space becomes available for additional file storage. xfs_info is equivalent to invoking xfs_growfs with the -n option (see discussion below). OPTIONS
-d | -D size Specifies that the data section of the filesystem should be grown. If the -D size option is given, the data section is grown to that size, otherwise the data section is grown to the largest size possible with the -d option. The size is expressed in filesystem blocks. -e Allows the real-time extent size to be specified. In mkfs.xfs(8) this is specified with -r extsize=nnnn. -i The new log is an internal log (inside the data section). [NOTE: This option is not implemented] -l | -L size Specifies that the log section of the filesystem should be grown, shrunk, or moved. If the -L size option is given, the log section is changed to be that size, if possible. The size is expressed in filesystem blocks. The size of an internal log must be smaller than the size of an allocation group (this value is printed at mkfs(8) time). If neither -i nor -x is given with -l, the log contin- ues to be internal or external as it was before. [NOTE: These options are not implemented] -m Specify a new value for the maximum percentage of space in the filesystem that can be allocated as inodes. In mkfs.xfs(8) this is specified with -i maxpct=nn. -n Specifies that no change to the filesystem is to be made. The filesystem geometry is printed, and argument checking is performed, but no growth occurs. -r | -R size Specifies that the real-time section of the filesystem should be grown. If the -R size option is given, the real-time section is grown to that size, otherwise the real-time section is grown to the largest size possible with the -r option. The size is expressed in filesystem blocks. The filesystem does not need to have contained a real-time section before the xfs_growfs operation. -t Specifies an alternate mount table file (default is /proc/mounts if it exists, else /etc/mtab). This is used when working with filesystems mounted without writing to /etc/mtab file - refer to mount(8) for further details. -V Prints the version number and exits. The mount-point argument is not required with -V. xfs_growfs is most often used in conjunction with logical volumes (see md(4) and lvm(8) on Linux). However, it can also be used on a regu- lar disk partition, for example if a partition has been enlarged while retaining the same starting block. PRACTICAL USE
Filesystems normally occupy all of the space on the device where they reside. In order to grow a filesystem, it is necessary to provide added space for it to occupy. Therefore there must be at least one spare new disk partition available. Adding the space is often done through the use of a logical volume manager. SEE ALSO
mkfs.xfs(8), md(4), lvm(8), mount(8). xfs_growfs(8)
All times are GMT -4. The time now is 04:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy