![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Slackware The Official Release of Slackware Linux by Patrick Volkerding is an advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Mounting | sniper007 | BSD | 2 | 08-15-2008 06:30 PM |
| mounting USB | akhil1460 | UNIX for Advanced & Expert Users | 1 | 08-05-2006 12:09 PM |
| /data directory not mounting | khelen | SCO | 2 | 04-07-2006 03:01 PM |
| mounting a directory to a windows 2000 shared folder | cw1972 | Windows & DOS: Issues & Discussions | 2 | 10-01-2003 03:48 AM |
| Mounting...? | mo0ness | Filesystems, Disks and Memory | 1 | 07-03-2003 06:04 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
fdisk -l
Disk /dev/hda :8455 MB Device boot Start End Id System /dev/hda1 1 126 83 linux /dev/hda2 127 1027 83 linux ... ... ... .... /dev/hda10 778 794 82 linux swap /dev/hda11 795 1027 83 linux (I added this partition later) Disk /dev/hdb:40 GB Device boot Start end id system /dev/hdb1 2 2550 f W95 EXT'd(LBA) /dev/hdb2 2551 4111 7 HPFS/NTFS /dev/hdb5 2 2550 7 HPFS/NTFS cat /etc/fstab /dev/hda10 swap swap defaults 0 0 /dev/hda11 /back reiserfs defaults 1 2 /dev/hda1 / reiserfs defaults 1 1 /dev/hda5 /usr reiserfs defaults 1 2 /dev/hda6 / home reiserfs defaults 1 2 /dev/hdb2 /dev/hdb2 ntfs ro 1 0 /dev/hdb5 /dev/hdb5 ntfs ro 1 0 I still cannot mount /dev/hda11?? Last edited by tjay83; 08-31-2008 at 10:48 PM.. |
|
||||
|
Your fstab says that the partition should have (is expected to have) a file system of type reiserfs, have You created that? If not, run the command
Code:
mkreiserfs /dev/hda11 ![]() After that You may mount it with mount /back or mount /dev/hda11 or mount /dev/hda11 /back or even mount -t reiserfs /dev/hda11 /back and even more variants The entry in fstab actually makes sure that it will be mounted every time Your system boot (thats when a mount -a will be done, usually), but right now it also helps specify the details, that explains why for example mount /dev/hda11 and mount /back work equally well. Good luck! /Lakris |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|