Pause on boot, had changed number of partitions

I’m getting a delay on boot. When I check with journalctl -b:

Dec 30 12:15:13 di-t480 systemd[1]: systemd-rfkill.service: Deactivated successfully.
Dec 30 12:16:37 di-t480 systemd[1]: dev-sdb6.device: Job dev-sdb6.device/start timed out.
Dec 30 12:16:37 di-t480 systemd[1]: Timed out waiting for device /dev/sdb6.
Dec 30 12:16:37 di-t480 systemd[1]: Dependency failed for /dev/sdb6.
Dec 30 12:16:37 di-t480 systemd[1]: Dependency failed for Swaps.
Dec 30 12:16:37 di-t480 systemd[1]: swap.target: Job swap.target/start failed with result 'dependency'.
Dec 30 12:16:37 di-t480 systemd[1]: dev-sdb6.swap: Job dev-sdb6.swap/start failed with result 'dependency'.
Dec 30 12:16:37 di-t480 systemd[1]: dev-sdb6.device: Job dev-sdb6.device/start failed with result 'timeout'.
Dec 30 12:16:37 di-t480 systemd[1]: Mounting /tmp...
Dec 30 12:16:37 di-t480 systemd[1]: Mounted /tmp.

On sdb, I used to have six partitions, of which the swap was number 6. As a result of changes from Multi-boot Manjaro + Kubuntu on second disk, separate from Windows 11 disk , I now have four partitions, with swap as number 4.

lsblk -f                                                                                              
NAME        FSTYPE FSVER LABEL     UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
sda                                                                                    
nvme1n1                                                                                
├─nvme1n1p1 vfat   FAT32 efi       799E-1833                             638.5M     0% /boot/efi
├─nvme1n1p2 ext4   1.0   root      49805434-8063-49c6-a466-4da328f30b91     77G    28% /
├─nvme1n1p3 ext4   1.0   home      27402c37-8963-4add-a2ea-edb8208ff267  294.4G     3% /home
└─nvme1n1p4 swap   1     swap      4b6d9aaa-e50c-4ed8-ae38-d89f8520b336                [SWAP]
nvme0n1                                                                                
├─nvme0n1p1 vfat   FAT32           598F-3DC9                                           
├─nvme0n1p2                                                                            
├─nvme0n1p3 ntfs         Windows   01DB526FD6C6EC90                                    
├─nvme0n1p4 ntfs         data-ntfs 786C3F756C3F2D6E                      313.1G    61% /dos
└─nvme0n1p5 ntfs         Recovery  71BDC6711C84CFF4                      

I’ve tried update-grub, but this pause persists. What do I have to update?

Try looking at (and adapting it to your current situation) your /etc/fstab file instead …

Neither /dev/sdb nor /partitions on /dev/sda are present in your lsblk -f output

I didn’t read through the linked post.

1 Like

As requested, here is the fstab

# <file system>             <mount point>  <type>  <options>  <dump>  <pass>
UUID=799E-1833                            /boot/efi      vfat    defaults,umask=0077 0 2
UUID=49805434-8063-49c6-a466-4da328f30b91 /              ext4    defaults   0 1
UUID=27402c37-8963-4add-a2ea-edb8208ff267 /home          ext4    defaults   0 2
UUID=4b6d9aaa-e50c-4ed8-ae38-d89f8520b336 swap           swap    defaults   0 0
UUID=786C3F756C3F2D6E /dos ntfs3 defaults,rw,noatime,iocharset=utf8,umask=0000 0 0
/dev/sdb6 none swap sw 0 0
tmpfs                                     /tmp           tmpfs   defaults,noatime,mode=1777 0 0 

Ah, I now see the /dev/sdb6!

Yes - but it doesn’t exist.

Your swap is /dev/nvme1n1p4 according to lsblk -f
and it is also (kind of) correctly in /etc/fstab

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.