diff --git a/disk-clone.md b/disk-clone.md deleted file mode 100644 index b9c3314..0000000 --- a/disk-clone.md +++ /dev/null @@ -1,6 +0,0 @@ -# Disk Clone - - -## Use dd -It should work -`dd if=/dev/old of=/dev/new bs=64K conv=noerror,sync` diff --git a/disk-utils.md b/disk-utils.md new file mode 100644 index 0000000..ec45e6e --- /dev/null +++ b/disk-utils.md @@ -0,0 +1,15 @@ +# Disk utils + +## Use dd +It should work +`dd if=/dev/old of=/dev/new bs=64K conv=noerror,sync` + +## Resize drive + +### ext4 +`resize2fs /dev/sdb 100G` -> resized my partition on hetzner from 50G to 100G ez + + + +### Best page to check if you land here: +[red_hat](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/storage_administration_guide/part-file-systems) diff --git a/rstudio.md b/rstudio.md new file mode 100644 index 0000000..3c0b5cb --- /dev/null +++ b/rstudio.md @@ -0,0 +1,7 @@ +# Rstudio + +## If it does not launch on wayland: +```bash +export QT_QPA_PLATFORM=xcb +rstudio #if you are on arch or derivative then include "--no-sandbox" flag +```