lwc:misc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
lwc:misc [2021/09/20 15:20] – created John Harrisonlwc:misc [2026/02/27 19:03] (current) John Harrison
Line 1: Line 1:
-  * [[http://www.plantuml.com/|create chart from UML language]] +  * [[http://www.plantuml.com/|create chart from UML language]] 
 +  * [[https://serverfault.com/questions/4906/using-dd-for-disk-cloning|dd stackoverflow]] 
 +  * [[https://www.technibble.com/guide-using-ddrescue-recover-data/|ddrescue tutorial]] 
 + 
 +===== Resizing a microSD image ===== 
 +<code> 
 +$ sudo udisksctl loop-setup -f disk.img 
 +  Mapped file disk.img as /dev/loop0. 
 +$ gparted /dev/loop0 
 +$ sudo udisksctl loop-delete -b /dev/loop0 
 +</code> 
 +// from https://superuser.com/questions/297299/resize-a-partition-image-with-gparted // 
 + 
 +===== resize the filesystem after growing the volume ===== 
 +//example// 
 +<code> 
 +lsblk 
 +df -h 
 +sudo resize2fs /dev/sda # assuming ext4 
 +</code>
  • lwc/misc.1632169229.txt.gz
  • Last modified: 2021/09/20 15:20
  • by John Harrison