Ubuntu 13.04 中未出現 USB 設備

Ubuntu 13.04 中未出現 USB 設備

我遇到了問題。當我連接 USB 驅動器時,我的驅動器沒有出現在桌面上,我運行了命令 -

 dmesg | tail 

輸出是 -

[ 1178.937179] usb 3-2: SerialNumber: N85H8K1R  
[ 1178.938060] scsi10 : usb-storage 3-2:1.0  
[ 1179.937197] scsi 10:0:0:0: Direct-Access     JetFlash Transcend 8GB    8.07 PQ: 0      
ANSI: 4
[ 1179.939902] sd 10:0:0:0: Attached scsi generic sg3 type 0  
[ 1179.940616] sd 10:0:0:0: [sdc] 15679488 512-byte logical blocks: (8.02 GB/7.47GiB)  
[ 1179.941377] sd 10:0:0:0: [sdc] Write Protect is off  
[ 1179.941382] sd 10:0:0:0: [sdc] Mode Sense: 23 00 00 00  
[ 1179.942066] sd 10:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't
 support DPO or FUA  
[ 1179.950956]  sdc: unknown partition table  
[ 1179.953080] sd 10:0:0:0: [sdc] Attached SCSI removable disk 

我現在該怎麼做 ?謝謝

答案1

USB分割區表有問題。[1179.950956]sdc:未知的分區表

看看這裡的答案,在 Acer 上從 USB 隨身碟執行 Ubuntu

如果您的裝置不包含有價值的數據,請使用 gparted 等寫入新的分區表。如果它包含有價值的數據,您應該在嘗試還原分區表之前進行原始備份。

要進行原始備份,您可以使用例如 dd。sudo dd if=/dev/sdX of=usb-image.iso 記得替換X。

相關內容