35 lines
1.8 KiB
Markdown
35 lines
1.8 KiB
Markdown
sudo mount /dev/nvme0p1 /mnt/newssd/boot/efi
|
|
sudo chroot /mnt/newssd
|
|
|
|
|
|
|
|
/dev/nvme1n1p1: UUID="ad271484-f3d7-4065-b1b7-224cdd4cd1ca" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="3c04012f-35d1-a64d-bc80-04382a24d521"
|
|
|
|
|
|
soenke@heimdall:/var/cache$ sudo blkid
|
|
/dev/nvme0n1p3: UUID="4476761c-6ba1-4ef7-bb5f-81f38f96ff44" TYPE="swap" PARTUUID="f60a9a77-2842-40ab-9315-e92e35f42ca6"
|
|
/dev/nvme0n1p1: UUID="1504-1CE6" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="c4c73403-14cd-4a99-842c-a02c5c772214"
|
|
/dev/nvme0n1p2: UUID="f6b9a157-815a-4f61-a463-0caf165a92b4" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="260bc56c-585a-446f-b2c2-ba7e1057289d"
|
|
/dev/sda1: UUID="c810ee0e-35ab-4f2a-a273-0a94ea401731" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="721505ac-9419-4475-9843-e5058fb41550"
|
|
|
|
vi /etc/fstab
|
|
|
|
# Use 'blkid' to print the universally unique identifier for a
|
|
# device; this may be used with UUID= as a more robust way to name devices
|
|
# that works even if disks are added and removed. See fstab(5).
|
|
#
|
|
# systemd generates mount units based on this file, see systemd.mount(5).
|
|
# Please run 'systemctl daemon-reload' after making changes here.
|
|
#
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
# / was on /dev/nvme0n1p2 during installation
|
|
UUID=ad271484-f3d7-4065-b1b7-224cdd4cd1ca / ext4 errors=remount-ro 0 1 ### change this line to uuid of nvme1(or 1)n1p2 (ext4 one...) -> f6b9a157-815a-4f61-a463-0caf165a92b4
|
|
# /boot/efi was on /dev/nvme0n1p1 during installation
|
|
UUID=1504-1CE6 /boot/efi vfat umask=0077 0 1
|
|
# /home was on /dev/sda1 during installation
|
|
# UUID=c810ee0e-35ab-4f2a-a273-0a94ea401731 /home ext4 defaults 0 2 ####Re-Add this one?
|
|
# swap was on /dev/nvme0n1p3 during installation
|
|
UUID=4476761c-6ba1-4ef7-bb5f-81f38f96ff44 none swap sw 0 0
|
|
|
|
|