Hello,
I am a newcomer in Linux and my English ist very bad.
So please excuse me for bad words. I will try to understand your answers and need your help.
Sorry for long text, but I think it's important to describe the problem exactly.
Bevore install aptosid I made 3 Partitions in an extended Partition. But while installation I missed to set a mountpoint for my third Partition called "Daten". So I guess the system set the 3. partition in media. I also have an old windows data Partition, but this is not my problem.
I need to mount my 3. Linux data Partition in the system. This are my Linux
Partitions shown in GParted
sda 1 = extended
sda 5 = ext 4 mountpoint / (root?) (logical drives start with sda 5)
sda 6 = ext 4 mountpoint /home
sda 7 = ext 4 mountpoint is empty. The Label of the device ist "Daten" it's my Partition for my Linux datas. (just empty)
mount - l show this:
Quote:
/dev/sda5 on / type ext4 (rw,relatime,errors=remount-ro,commit=0)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,size=5242880,mode=755,size=5242880,mode=755)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=755,size=10%,mode=755)
tmpfs on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880,mode=1777,size=5242880,mode=1777)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,size=20%,mode=1777,size=20%,mode=1777)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,size=20%,mode=1777,size=20%,mode=1777)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620,gid=5,mode=620)
/dev/sda2 on /media/disk1part2 type fuseblk (ro,noexec,nosuid,nodev,allow_other,blksize=4096,default_permissions) [DATA]
/dev/sda6 on /home type ext4 (rw,relatime,errors=remount-ro,commit=0)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
The original fstab was this:
Quote:
UUID=D662BC1B62BBFE75 /media/disk1part2 ntfs auto,users,ro,dmask=0022,fmask=0133,nls=utf8 0 0
UUID=0b79f1fd-8e43-4a5d-96b3-e94bbb9325bf / ext4 defaults,relatime,errors=remount-ro 0 1
UUID=46dde793-9723-465e-ae20-b175264d16d5 /home ext4 defaults,relatime,errors=remount-ro 0 2
UUID=9a505d1d-bd25-4899-835a-661b3d09bc1a /media/disk1part7 ext4 auto,users,rw,exec,relatime 0 0 #(this is th UUID of my sda7)
UUID=dde16a28-8b81-4927-8c17-485b6c61e3c3 none swap sw
I tryed it this way to mount my 3. partiton.
1. unmount the sda7 in Gparted (I dont remember the mountpoint in GParted before unmounting)
2. mkdir /Daten (in the terminal an the directory is set)
3. edit fstab like this (with Krusader as root)
Quote:
UID=D662BC1B62BBFE75 /media/disk1part2 ntfs auto,users,ro,dmask=0022,fmask=0133,nls=utf8 0 0
UUID=0b79f1fd-8e43-4a5d-96b3-e94bbb9325bf / ext4 defaults,relatime,errors=remount-ro 0 1
UUID=46dde793-9723-465e-ae20-b175264d16d5 /home ext4 defaults,relatime,errors=remount-ro 0 2
UUID=9a505d1d-bd25-4899-835a-661b3d09bc1a /Daten ext4 defaults,users,sync,relatime,errors=remount-ro 0 2
UUID=dde16a28-8b81-4927-8c17-485b6c61e3c3 none swap sw 0 0
Then I made a boot and got the following failure message obout the sda 7.
fck.ext unable to resolve UUID (here is shown the UUID of the Partion sda7)
The log show this:
Quote:
fsck from util-linux 2.19.1
/dev/sda6: clean, 54406/1602496 files, 560248/6402304 blocks
fsck.ext4: Unable to resolve 'UUID=9a505d1d-bd25-4899-835a-661b3d09bc1a'
fsck died with exit status 8
Know I dont know what is wrong. Is it possible that it is wrong if the last number in the fstab is set of 2? Should I set this on nr. 3. that the system check this dev at last? I read this link about meaning of the last number in fstab about the "pass" : http://de.wikipedia.org/wiki/Fstab
Sorry for long text and thx in advance TM
PS: Ok it'S not very good when the label of the dev is the same name like the mountpoint. both are called "Daten" in my case. |