USB 파티션 생성

USB 파티션 생성

파티셔닝을 위해 SD 카드를 삽입한 후 dmesg를 실행하면

[ 4611.940660] sd 7:0:0:0: [sdb] Assuming drive cache: write through
[ 4611.944440]  sdb: unknown partition table
[ 4611.949411] sd 7:0:0:0: [sdb] No Caching mode page present
[ 4611.949419] sd 7:0:0:0: [sdb] Assuming drive cache: write through
[ 4611.949424] sd 7:0:0:0: [sdb] Attached SCSI removable disk
[ 4966.868425] end_request: I/O error, dev fd0, sector 0

처음에는 리눅스 커널이 읽지 못해서 그런 줄 알았는데(커널에 문제가 좀 있었네요) 파티션 세부 정보를 얻기 위해 방금 명령어를 실행해보니

sudo /dev/sdb [sdb is my device name ]
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0x9b17bdaf.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

누구든지 나에게 이 문제에 대한 해결책을 줄 수 있습니까?

관련 정보