You are not logged in.
When i install Arch Linux and get to the bootloader (usually i use systemd-boot) and specify UUID on the options line.
I actually take a picture of my root partition's UUID with my phone and enter it manually along with the other lines
title Arch Linux
linux /vmlinuz-linux
initrd /intel-ucode.img
initrd /initramfs-linux.img
options root=UUID=12345-67890-1234-123456-7890 rwHow do you manage entering UUID or PARTUUID? Is there a smarter way to minimize the risk of typos? Like passing blkid entry for the root partition via some command or likewise?
Last edited by dockland (2018-07-25 05:38:58)
I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.
Offline
If you need the output of blkid so that you can write it to a file, consider appending the data using
blkid >> targetfileand then firing up an editor like vim to modify the file for your needs. (I'm not sure if you can use the system clipboard from a tty)
Offline
Thank you, that is a smart,quick and safe way.
I possess a device, in my pocket, that is capable of accessing the entirety of information known to man.
I use it to look at funny pictures of cats and to argue with strangers.
Offline
From my bash_history during my last install:
blkid | awk '/sdb2/' >> /boot/loader/entries/backup.confOffline
shell: lsblk -no UUID /dev/sdb2
vi(m): :r! lsblk -no UUID /dev/sdb2edit: could even do -Po
edit2: if the partition is mounted then you could use findmnt to remove one additional source of potentional confusion.
Last edited by Mr.Elendig (2018-07-25 07:50:56)
Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest
Offline
I just use copy and paste in my terminal window - but then again all of my installs that aren't scripted are done over ssh ![]()
Offline