Tagged Questions
0
votes
2answers
95 views
restore dd image to another usb stick failed
I'm trying to create a dd image which contains two partition.
The first is a ext3,(19MB) the 2nd is fat32.(16MB)
I use one 512M usb stick to create image. And use
dd if=/dev/sdc of=image.dd bs=1M ...
2
votes
1answer
491 views
formatting ext3 to fat32/ntfs on windows 7
In a failed attempt to install Linux Mint on an external hard drive, I damaged the disk. Now, it does not show up in the 'My Computer' folder or in Disk Management. I speculate it might have to do ...
1
vote
2answers
1k views
How can I format an SD card with a more robust Linux-usable filesystem with a specific cluster size for better write performace?
Goal: microSD card formatted...
for best write performance
for use only with embedded Linux
for better reliability (random power failures may occur)
using an 64kB cluster size
I'm using an 8GB ...
5
votes
1answer
579 views
Disk fragmentation on Linux
Do I have to de-fragment my ext3 and FAT32 filesystems on Linux? And if yes how?
1
vote
1answer
1k views
Copy directory from ext3 to FAT32 ignoring symlinks, pipes, etc
I'm trying to write a shell script in which I recursively copy a directory to a USB stick. I need the return value of the copy operation for error-checking purposes. I've tried
cp -a /var/mydir ...