I am new to Ubuntu and have dual boot Windows 10 & Ubuntu 18.04 LTS. Firstly, everything was running fine, but after one update, Ubuntu started to boot extremely slow. After a couple of hours searching the internet, I figured out that the delay is caused by: 'a start job started by dev-disk-by...' and found that question: a start job is running..., but I am a bit worried that I would screw somethig and I need a bit of help.
My /etc/fstab
looks like:
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=5e550b00-a4ae-4293-a9a0-183c3ca24483 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda6 during installation
#UUID=B288-94AF /boot/efi vfat umask=0077 0 1
# swap was on /dev/sda5 during installation
UUID=6bd932ca-9689-4507-8536-a1e0a7e5028d none swap sw 0 0
and my gparted looks like: GParted
I am not sure where Ubuntu is located to comment out the proper UUID according to mentioned question?
Also is there a way to merge the highlighted unallocated space with /dev/sda6
?
[EDIT]: Can I get rid of /dev/sda5
?
ext4 errors=remount-ro
part withext4 errors=remount-ro,x-systemd.automount,noatime
. The systemd part might solve the problem with time (or not), and noatime is just nice to have. – Hi-Angel Sep 28 '18 at 22:54/etc/fstab
. Is this the main cause of the problem and do I have to update it? – gasar8 Sep 29 '18 at 08:22/etc/fstab
is equal to one in question, but when I printblkid
I get/dev/sda1: UUID="84D8331AD8330A46" TYPE="ntfs" PARTUUID="2bfb4dc8-01" /dev/sda2: LABEL="Podatki" UUID="01D3EBEB03417620" TYPE="ntfs" PARTUUID="2bfb4dc8-02" /dev/sda3: UUID="01D3EBEB1BDD5B90" TYPE="ntfs" PARTUUID="2bfb4dc8-03" /dev/sda5: UUID="B288-94AF" TYPE="vfat" PARTUUID="2bfb4dc8-05" /dev/sda6: UUID="5e550b00-a4ae-4293-a9a0-183c3ca24483" TYPE="ext4" PTTYPE="dos" PARTUUID="2bfb4dc8-06"
I don't know which is swap and also sda-s are different? – gasar8 Sep 29 '18 at 10:16blkid
(or by right-clicking in Gparted, and choosing "information"). – Hi-Angel Sep 29 '18 at 11:06/dev/sda6
or at least use this space? – gasar8 Sep 29 '18 at 11:32