LinuxQuestions.org
Support LQ: Use code LQ3 and save $3 on Domain Registration
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Suse/Novell
User Name
Password
Suse/Novell This Forum is for the discussion of Suse Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 04-27-2005, 04:00 PM   #1
cheetahman
Member
 
Registered: Feb 2005
Distribution: SuSE Linux 10/Windows XP
Posts: 208

Rep: Reputation: 30
Should it be mnt or mount


/dev/hda5 /mount/dev/hda5/mnt/1GB_native reiserfs auto,acl,user_xattr 1 2
 
Old 04-27-2005, 04:19 PM   #2
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Lubuntu
Posts: 19,068
Blog Entries: 4

Rep: Reputation: 385Reputation: 385Reputation: 385Reputation: 385
If you have a directory called /mount then mount it is, if you have one called /mnt then that's what it is.

Normally you'd do
Code:
mount /dev/hda5 /mnt/hda5
I assume that's from your fstab? A bit of formatting to show the end of each section wouldn't go amiss.
 
Old 04-27-2005, 05:06 PM   #3
cheetahman
Member
 
Registered: Feb 2005
Distribution: SuSE Linux 10/Windows XP
Posts: 208

Original Poster
Rep: Reputation: 30
/dev/hda7 / reiserfs acl,user_xattr 1 1
/dev/hda2 /windows/C ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hda6 swap swap pri=42 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
sysfs /sys sysfs noauto 0 0
/dev/cdrecorder /media/cdrecorder subfs fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/fd0 /media/floppy subfs fs=floppyfss,procuid,nodev,nosuid,sync 0 0
/dev/hda5 /mount/dev/hda5/mnt/1GB_native reiserfs auto,acl,user_xattr 1 2
/dev/cdrom /media/cdrom subfs fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
 
Old 04-27-2005, 09:27 PM   #4
damantis
Member
 
Registered: Dec 2004
Location: Auckland
Distribution: SUSE 10.0, FC4
Posts: 31

Rep: Reputation: 15
"/mount/dev/hda5/mnt/1GB_native" seems like quite a lot to swallow.

Just go for /mnt/hda5 or /mount/hda5 or /mnt/mp3s-drive or whatever the drive is for and make sure that the mount point exists on your hard drive.
 
Old 04-28-2005, 02:02 PM   #5
cheetahman
Member
 
Registered: Feb 2005
Distribution: SuSE Linux 10/Windows XP
Posts: 208

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by damantis
"/mount/dev/hda5/mnt/1GB_native" seems like quite a lot to swallow.

Just go for /mnt/hda5 or /mount/hda5 or /mnt/mp3s-drive or whatever the drive is for and make sure that the mount point exists on your hard drive.
Which one of these should I use /mnt/hda5 or /mount/hda5
 
Old 04-28-2005, 05:44 PM   #6
damantis
Member
 
Registered: Dec 2004
Location: Auckland
Distribution: SUSE 10.0, FC4
Posts: 31

Rep: Reputation: 15
If all your other drives are /mnt/hda#, than use /mnt.
If they're all /mount/hda#, use /mount to keep consistency,

If you have no other drives at mnt or mount, just pick whatever one you want (it's your choice). I could pick /mounted-drives/hard-disk1/partition2/files/ if I wanted to, but I wouldn't as it's too long.

Try
/dev/hda7 /
/dev/hda2 /windows/C
/dev/hda6 swap
/dev/cdrecorder /media/cdrecorder
/dev/fd0 /media/floppy
/dev/hda5 /mount/hda5
/dev/cdrom /media/cdrom

Or, to keep all drives consistent,
/dev/hda7 /
/dev/hda2 /mnt/hda2
/dev/cdrecorder /mnt/hdc
/dev/fd0 /mnt/fd0
/dev/hda5 /mnt/hda5
/dev/cdrom /mnt/hdd

Or go for a more descriptive scheme
/dev/hda7 /
/dev/hda2 /mnt/windows
/dev/cdrecorder /mnt/cdrw
/dev/fd0 /mnt/floppy
/dev/hda5 /mnt/backupdrive
/dev/cdrom /mnt/cdrom
 
Old 04-28-2005, 05:45 PM   #7
taxtropel
Member
 
Registered: Mar 2005
Location: Cascade Mountains WA USA
Distribution: Linux From Scratch (LFS)
Posts: 149

Rep: Reputation: 16
you can use any mount point you want. it doesn't matter.
that's the point of being able to supply a mount point.
 
Old 04-28-2005, 06:35 PM   #8
cheetahman
Member
 
Registered: Feb 2005
Distribution: SuSE Linux 10/Windows XP
Posts: 208

Original Poster
Rep: Reputation: 30
Which one do you recomend
 
Old 04-28-2005, 07:09 PM   #9
jschiwal
Moderator
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,263

Rep: Reputation: 562Reputation: 562Reputation: 562Reputation: 562Reputation: 562Reputation: 562
Assuming that you are using SuSE, if you have hard drive partitions that aren't assign a standard mount point, during installation, the installer will create mount points /data1, /data2, etc. for them. So you might want to have this partition mount in the root directory.

Mandrake mounts extra partitions like CDROMs and the floppy disk under the /mnt directory, while SuSE uses /media instead. The /media partition is an LFS standard location for mounting media devices such as DVDs, CDROMs, and floppy disks.

Some partitions don't create any mount points under /mnt. For them, the /mnt directory is used as a standard location to temporarily mount a device from the console. For example if you wanted to mount an .iso file somewhere to look at it, or if you are mounting a different file sytem before using the chroot command.

But answering your question directly,
/mount/dev/hda5/mnt/1GB_native in way too long. Consider using either something like /data5 or if you want to keep the root directory uncluttered /mnt/data5. The last part was an arbitrary name that I just made up and you would probably want a more functional name.

Last edited by jschiwal; 04-28-2005 at 07:10 PM.
 
Old 04-28-2005, 07:34 PM   #10
cheetahman
Member
 
Registered: Feb 2005
Distribution: SuSE Linux 10/Windows XP
Posts: 208

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by jschiwal
Assuming that you are using SuSE, if you have hard drive partitions that aren't assign a standard mount point, during installation, the installer will create mount points /data1, /data2, etc. for them. So you might want to have this partition mount in the root directory.

Mandrake mounts extra partitions like CDROMs and the floppy disk under the /mnt directory, while SuSE uses /media instead. The /media partition is an LFS standard location for mounting media devices such as DVDs, CDROMs, and floppy disks.

Some partitions don't create any mount points under /mnt. For them, the /mnt directory is used as a standard location to temporarily mount a device from the console. For example if you wanted to mount an .iso file somewhere to look at it, or if you are mounting a different file sytem before using the chroot command.

But answering your question directly,
/mount/dev/hda5/mnt/1GB_native in way too long. Consider using either something like /data5 or if you want to keep the root directory uncluttered /mnt/data5. The last part was an arbitrary name that I just made up and you would probably want a more functional name.
I am using SuSe9.1 Personal with Windows XP
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
automount: mount(generic): failed to mount (null) (type iso9660) on /mnt/media/ vasudevadas Slackware 5 10-17-2005 03:05 PM
Allowing anyone to mount /mnt/cdrom ToothlessRebel Linux - Newbie 6 06-15-2005 09:29 PM
Is this even possible???mount /mnt/floppy spedsta Linux - Newbie 3 06-23-2004 08:37 AM
mount -t //192.168.0.1/mnt /mnt/windows -o password='' generates error broadsoft Linux - Networking 3 08-07-2003 04:51 AM
How do I mount Win98 from within Linux if my mnt/...... purpleburple Linux - General 4 07-04-2002 11:33 PM


All times are GMT -5. The time now is 07:19 PM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration