How to backup your Raspberry Pi bootable SD card in Ubuntu ?
Chit Ko Ko
Contributor
1 min read
Using dd to backup a PI SD
sudo fdisk -l
သင်၏ SD card ကိုစာဖြင့်ရေးမှတ်ထားပါ။ အများစုကို /dev/sdb1 ဟုတွေ့မြင်ရပါမည် ။
မှတ်ချက် ။။ သင်backup လုပ်လိုသော SD card မှ အပ အခြား SD Card / Memory Stick မျျားကို သင်၏စက်နှင့်မချိတ်ဆက်ထားရ။
အောက်ဖော်ပြပါ command သည် SD card ကို image file ပြုလုပ်နိုင်ပါသည် ။
sudo dd bs=4M if=/dev/sdb | gzip > /home/your_username/image`date +%d%m%y`.gz
***``your_username``= သင်၏ user account အမည်
အောက်ဖော်ပြပါ command သည် image file ကို listပြုလုပ်နိုင်ပါသည် ။
ls | grep image
အောက်ဖော်ပြပါ command သည် backup image file ကို SD card သို့ restore ပြန်လည်ပြုလုပ်နိုင်ပါသည် ။
sudo gzip -dc /home/your_username/image.gz | dd bs=4M of=/dev/sdb
Related posts
Install Myanmar(Unicode) Keyboard and font on Raspberry Pi
ဒီနေ့ပြောမယ့် အကြောင်းအရာကတော့ Raspberry Pi ပေါ်မှာ Myanmar လို ရိုက်လို့ရအောင် ဘယ်လိုလုပ်ရမလဲဆိုတဲ့ အကြောင်းအရာလေးပဲ ဖြစ်ပါတယ်။ ကျွန်တော် Test လုပ်မယ့် device ကတော့ Rpi 3 mobel…
1 min read
Raspberry Pi Multiboot with berryboot – Parrotsec run GNS3 cisco on RaspberryPi
RaspberryPi\ Multiboot\ with\ berryboot Parrotsec\ run\ GNS3\ cisco\ on\ RaspberryPi ပထမဆုံး Browser ကနေပြီတော့ https://sourceforge.net/projects/berryboot/ berryboot zip file ကို…
2 min read
Raspberry Pi tips tricks
(၁) Auto Login အခုနောက်ပိုင်းတော့ Raspberry pi နဲ့ Project လုပ်မယ့်သူတွေ အနေနဲ့ USB ၄ပေါက် ပါဝင်တဲ့ Pi2 or Pi3 တွေပဲ သုံးဖြစ်ကြတော့မှာပါ။ ကျွန်တော့်ဆီမှာ အရင်က USB ၂ပေါက်ပဲ ပါတဲ့…
2 min read



