-
More useful software
Pacman
- gnome gnome-extra gnome-tweaks
- borg python-llfuse
- chromium
- tlp
- bluez bluez-utils blueman
- sway waybar rofi
- openssh
- dunst
- keepass
- libnotify-gtk3
- inkscape gimp krita
AUR
- https://aur.archlinux.org/mattermost-desktop.git
- https://aur.archlinux.org/phpstorm.git
- https://aur.archlinux.org/redshift-wlr-gamma-control.git
- https://aur.archlinux.org/tomb.git
- https://aur.archlinux.org/tor-browser.git
- https://aur.archlinux.org/gnome-terminal-transparency.git
- (https://aur.archlinux.org/vmware-horizon-client.git)
- https://aur.archlinux.org/libnotify-gtk2.git
- https://aur.archlinux.org/network-manager-applet-indicator.git
- https://aur.archlinux.org/tlpui-git.git
- https://aur.archlinux.org/sublime-text-dev.git
- https://aur.archlinux.org/gnome-shell-extension-appindicator.git
-
Größe der LUKS Partition verändern (erweitern)
-
cryptsetup luksOpen /dev/sdaX luks
to open the encrypted volume. -
parted /dev/sda
to extend the partition.resizepart NUMBER END
. -
vgchange -a n vg0
. Stop using the VG so you can do the next step. -
cryptsetup luksClose luks
. Close the encrypted volume for the next steps. -
cryptsetup luksOpen /dev/sdaX luks
. Open it again. -
cryptsetup resize luks
. Will automatically resize the LUKS volume to the available space. -
vgchange -a y vg0
Activate the VG. -
pvresize /dev/mapper/luks
Resize the PV. -
lvresize -l+100%FREE /dev/vg0/home
Resize the LV for /home to 100% of the free space. -
e2fsck -f /dev/mapper/vg0-home
Throw some fsck magic at the resized fs. -
resize2fs /dev/mapper/vg0-home
Resize the filesystem in /home (automatically uses 100% free space)
-
Please register or sign in to comment