Re: HD problem
Since this is a different hard drive, I assume it is in the system as /dev/sda (because that drive is "missing" from your /etc/fstab file).
So, once you have it re-partitioned and formatted ext3, you need to first confirm my theory by running
. You should find a /dev/sda1 that is formatted ext3.
So, you will then do two things:
1. Make a mount point
where "new_drive" is the name you want for it.
2. Edit /etc/fstab with kate or nano, for example Alt-F2 "kdesu kate /etc/fstab" and make your etc/fstab file look like this:
The bold line is the one you add, using the UUID number and mount point from your actual observation and new mount point.
Since this is a different hard drive, I assume it is in the system as /dev/sda (because that drive is "missing" from your /etc/fstab file).
So, once you have it re-partitioned and formatted ext3, you need to first confirm my theory by running
Code:
sudo blkid
So, you will then do two things:
1. Make a mount point
Code:
sudo mkdir /media/new_drive
2. Edit /etc/fstab with kate or nano, for example Alt-F2 "kdesu kate /etc/fstab" and make your etc/fstab file look like this:
file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sdb1
UUID=43f3840c-2f59-4e5b-a75b-6fa4347c957b / ext3 relatime,errors=remount-ro 0 1
# /dev/sdb5
UUID=c3a14530-4d80-4f87-b481-49e2963107f7 none swap sw 0 0
UUID=1a1ffa9b-a8f6-43e9-bb1f-fbc32934018b /media/new_drive ext3 auto,users,rw,exec,noatime 0 2
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sdb1
UUID=43f3840c-2f59-4e5b-a75b-6fa4347c957b / ext3 relatime,errors=remount-ro 0 1
# /dev/sdb5
UUID=c3a14530-4d80-4f87-b481-49e2963107f7 none swap sw 0 0
UUID=1a1ffa9b-a8f6-43e9-bb1f-fbc32934018b /media/new_drive ext3 auto,users,rw,exec,noatime 0 2
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
Comment