熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

雙啟動型USB優盤的使用舉例和注意問題

2022-06-13   來源: Oracle 

  現在市面上有一種雙啟動型的USB優盤(它可作為硬盤使用也可以作為軟盤使用) 但在LINUX上使用時不少網友反映了不少問題特別是以軟盤使用時的問題最多現在以朗科M雙啟動型USB優盤作為例子
  
  一硬盤方式
  >>> fdisk l /dev/sd?
  Disk /dev/sda: heads sectors cylinders
  Units = cylinders of * bytes
  
  Device Boot Start End Blocks Id System
  /dev/sda * + FAT
  Partition has different physical/logical beginnings (nonLinux?):
  phys=( ) logical=( )
  Partition has different physical/logical endings:
  phys=( ) logical=( )
  Partition does not end on cylinder boundary:
  phys=( ) should be ( )
  
  加載上面的分區
  
  mount t vfat /dev/sda /mnt/mnt (這裡的 /dev/sda 是一個分區)
  
  那麼現在就可以使用USB盤了
  
  二軟盤方式
  >>> fdisk l /dev/sd?
  Disk /dev/sda: heads sectors cylinders
  Units = cylinders of * bytes
  
  Device Boot Start End Blocks Id System
  /dev/sda ? Unknown
  Partition has different physical/logical beginnings (nonLinux?):
  phys=( ) logical=( )
  Partition has different physical/logical endings:
  phys=( ) logical=( )
  Partition does not end on cylinder boundary:
  phys=( ) should be ( )
  
  在這裡請注意上面顯示在USB軟盤上在一個分區但實際上這個分區是無法加載的請看上面的 Blocks 為 也就分區是沒有空間的那麼要怎麼樣才能加載這個USB軟盤呢?我們把分區的概念去掉也就是不要想分區的問題想一想我平時是怎麼用一般軟盤的
  
  mount t vfat /dev/fd /mnt/fd
  
   那麼道理在USB軟盤上差不多
  
  mount t vfat /dev/sda /mnt/usbfd (這裡的 /dev/sda 不是分區)
  
  這樣執行能行成功加載
  
  cd /mnt/usbfd
  ls
  
   這時你會看到DOS的啟動文件請注意這時的USB軟盤只有M的空間可以用
  
  總結
   從上面的例子看到在LINUX中使用USB優盤有一定的技巧本例子中的軟盤方式使用的辦法同樣可以用在某些單啟動型USB優盤因為這些單啟動型USB優盤是以軟盤方式接入LINUX的
  

From:http://tw.wingwit.com/Article/program/Oracle/201311/17729.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.