Many thanks for your reply.
My fstab file is here:
Code: Select all
➜ /etc more fstab
# /etc/fstab: static file system information.
#
# noatime turns off atimes for increased performance (atimes normally aren't
# needed); notail increases performance of ReiserFS (at the expense of storage
# efficiency). It's safe to drop the noatime options if you want and to
# switch between notail / tail freely.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#
# See the manpage fstab(5) for more information.
#
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
#
# NOTE: Even though we list ext4 as the type here, it will work with ext2/ext3
# filesystems. This just tells the kernel to use the ext4 driver.
#
# NOTE: You can use full paths to devices like /dev/sda3, but it is often
# more reliable to use filesystem labels or UUIDs. See your filesystem
# documentation for details on setting a label. To obtain the UUID, use
# the blkid(8) command.
/dev/sda1 /boot/efi vfat noauto,noaatime 1 2
/dev/sda4 / ext4 noatime 0 1
/dev/sda3 none swap sw 0 0
#/dev/cdrom /mnt/cdrom auto noauto,ro 0 0
➜ /etc
PS I have managed to mount /boot/efi:
Code: Select all
➜ /etc mount /dev/sda1 /boot/efi
➜ /etc
I think things are starting to behave a bit better:
Code: Select all
➜ /etc fdisk -l
Disk /dev/sda: 232.91 GiB, 250059350016 bytes, 488397168 sectors
Disk model: WDC WD2500AAJS-6
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x94e26dd6
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 17326079 17324032 8.3G ef EFI (FAT-12/16/32)
/dev/sda2 17326080 198555647 181229568 86.4G 83 Linux
/dev/sda3 198555648 208795647 10240000 4.9G 82 Linux swap / Solaris
/dev/sda4 208795648 488396799 279601152 133.3G 83 Linux
➜ /etc
contains the root partition for an ubuntu installation I have on this machine.
is a communal swap partition
contains the root partition for gentoo.
Cheers
MF