Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
18
rated 0 times [  18] [ 0]  / answers: 1 / hits: 37711  / 1 Year ago, thu, december 1, 2022, 1:40:05

I have to copy my SD card to my hard-drive. I know that I have to mount and unmount it, but the following line doesn't work:



dd if=/media/oneiric of=~/sd-card-copy.img


That was my first try, but then I found out that I have to unmount my card and select /dev/sdX. The problem is that the command fdisk -l isn't showing anything. Nothing happens and therefore I can't copy my files.



How can I fix this?


More From » sd-card

 Answers
0

Run mount | grep "/media/oneiric". This will show the sdcard device (/dev/sdXX). Then run:



sudo umount /media/oneiric
sudo dd if=/dev/sdXX of=~/sd-card-copy.img

[#31086] Friday, December 2, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
skipu

Total Points: 366
Total Questions: 114
Total Answers: 112

Location: Saudi Arabia
Member since Mon, Sep 5, 2022
2 Years ago
;