I have recent installs of 10.04 on two machines. Both are 64 bit machines. One is a desktop motherboard setup, the other is a HP DV-6-3010us. The partitions on both were set up using GParted. Both give me a mount: can't find –a in /etc/fstab or /etc/mtab when I do a sudo mount –a.
Is this normal?
The details below relate to the desktop machine.
Results of sudo fdisk -l
Results of sudo blkid
Results of cat /etc/fstab -n
So what does can't find –a imply?
Thanks,
Ray
Is this normal?
The details below relate to the desktop machine.
Results of sudo fdisk -l
~$ sudo fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0005eb38
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1020 8193118+ 83 Linux
/dev/sda2 1021 2932 15358140 83 Linux
/dev/sda3 2934 53033 402428250 83 Linux
/dev/sda4 53034 60801 62396429+ 5 Extended
/dev/sda5 53034 53670 5116671 82 Linux swap / Solaris
/dev/sda6 53671 60801 57279726 83 Linux
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0005eb38
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1020 8193118+ 83 Linux
/dev/sda2 1021 2932 15358140 83 Linux
/dev/sda3 2934 53033 402428250 83 Linux
/dev/sda4 53034 60801 62396429+ 5 Extended
/dev/sda5 53034 53670 5116671 82 Linux swap / Solaris
/dev/sda6 53671 60801 57279726 83 Linux
~$ sudo blkid
/dev/sda1: UUID="870c1fc7-7953-4e24-a7f7-1a4b50db8132" TYPE="ext4"
/dev/sda2: UUID="e386e029-b081-45e9-8838-e2e57c8add19" TYPE="ext4"
/dev/sda3: UUID="3611e022-e83c-4001-b340-fc54645c9254" TYPE="ext4"
/dev/sda5: UUID="a74417a2-9d2c-4ff0-930f-3d6a94a1738d" TYPE="swap"
/dev/sda6: LABEL="Image" UUID="dc47d6b7-74c3-4e9c-9f2d-419e87f64191" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda1: UUID="870c1fc7-7953-4e24-a7f7-1a4b50db8132" TYPE="ext4"
/dev/sda2: UUID="e386e029-b081-45e9-8838-e2e57c8add19" TYPE="ext4"
/dev/sda3: UUID="3611e022-e83c-4001-b340-fc54645c9254" TYPE="ext4"
/dev/sda5: UUID="a74417a2-9d2c-4ff0-930f-3d6a94a1738d" TYPE="swap"
/dev/sda6: LABEL="Image" UUID="dc47d6b7-74c3-4e9c-9f2d-419e87f64191" SEC_TYPE="ext2" TYPE="ext3"
~$ cat /etc/fstab -n
1 # /etc/fstab: static file system information.
2 #
3 # Use 'blkid -o value -s UUID' to print the universally unique identifier
4 # for a device; this may be used with UUID= as a more robust way to name
5 # devices that works even if disks are added and removed. See fstab(5).
6 #
7 # <file system> <mount point> <type> <options> <dump> <pass>
8 proc /proc proc nodev,noexec,nosuid 0 0
9 /dev/sda2 / ext4 errors=remount-ro 0 1
10 # /home was on /dev/sda3 during installation
11 UUID=3611e022-e83c-4001-b340-fc54645c9254 /home ext4 defaults 0 2
12 # swap was on /dev/sda5 during installation
13 UUID=a74417a2-9d2c-4ff0-930f-3d6a94a1738d none swap sw 0 0
1 # /etc/fstab: static file system information.
2 #
3 # Use 'blkid -o value -s UUID' to print the universally unique identifier
4 # for a device; this may be used with UUID= as a more robust way to name
5 # devices that works even if disks are added and removed. See fstab(5).
6 #
7 # <file system> <mount point> <type> <options> <dump> <pass>
8 proc /proc proc nodev,noexec,nosuid 0 0
9 /dev/sda2 / ext4 errors=remount-ro 0 1
10 # /home was on /dev/sda3 during installation
11 UUID=3611e022-e83c-4001-b340-fc54645c9254 /home ext4 defaults 0 2
12 # swap was on /dev/sda5 during installation
13 UUID=a74417a2-9d2c-4ff0-930f-3d6a94a1738d none swap sw 0 0
Thanks,
Ray
Comment