Ajmo ovako. Jedinica ti je /dev/sdXDaždevnjak je napisao/la:Probao sam sve , al nejde nikak. Ponuda stoji ako misli neko da ga može srediti pošaljem mu, samo da javi ako uspije i kako. Ja sam novce dobio natrag tako da nisam oštećen. Lp
koji je X pogledaj sa
# grep -Ff <(hwinfo --disk --short) <(hwinfo --usb --short)
# umount /dev/sdX
zaim odgovoris sa "m" bez navodnika da ti prikaže opcije
napravi novi partitionn table, kreiraj nednu novu primarnu particiju, fs joj promini u fat32, zapiši promine na stick.
Sve radiš ko su ne sudo!
u fdisk uvik možeš zatražiti opcije slovom m.
Evo šta kažu upute na open sUse o tome:
Optional steps
How to recover the USB stick for "normal" use again
After system installation, you may want to reuse the stick as you would normally to write things on it. In that case you have to reformat it. Often people complain that Windows fails to do it.
If you look at the 12.3 DVD image on a USB stick with fdisk, you would see something like this (notice the GPT warning):
# fdisk -l /dev/sdX
WARNING: GPT (GUID Partition Table) detected on '/dev/sdX'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdX: 7742 MB, 7742685184 bytes
64 heads, 32 sectors/track, 7384 cylinders, total 15122432 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x1bf0d4df
Device Boot Start End Blocks Id System
/dev/sdX1 4248 12439 4096 ef EFI (FAT-12/16/32)
/dev/sdX2 * 12440 9162751 4575156 17 Hidden HPFS/NTFS
So, before reformatting, you have to repartition it again. And sometimes, if this fails, you may need an extra step - because software thinks the stick is a CD and thus not writable:
Notice: all these instructions assume the stick device is /dev/sdX. You have to find which is yours (see “Find Block Device” section above). An error here will destroy some other disk in your system.
# umount /dev/sdX
# dd if=/dev/zero of=/dev/sdX count=100
That destroys the boot sector, partition table, and initial structures. Any operating system should be happy to reformat it again.
But typically, you would simply start fdisk:
# fdisk /dev/sdX
and select:
o create a new empty DOS partition table
and then:
n add a new partition
(primary, number 1, default size to use the entire device)
t change a partition's system id
Use type 6, FAT16
w write table to disk and exit
Finally:
# mkfs.msdos -n SOME_NAME /dev/sdX1
This last step is necessary, specially the -n SOME_NAME, else the stick always mount with the iso name.
And done. Or, you could use gparted for partitioning and formatting.
You could, if you prefer, make a backup image of the stick prior to using it for installation, with dd, and recover it after the installation.
Troubleshooting
How to make a USB drive bootable