2021-10-11

Use all the space of a Micro-SD card of a Raspberry Pi running Fedora 34 (or possibly higher)

 To expand the root partition

growpart /dev/mmcblk0 3
pvresize /dev/mmcblk0p3
lvextend -r -l +100%FREE  /dev/mapper/fedora_fedora-root
xfs_growfs -d /


No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...