歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux基礎知識

實用技巧:Linux系統下往U盤寫數據

將U盤掛載到一個目錄:/mnt/usb下,要對U盤數據進行寫操作要帶上命令-o rw -n

    簡單步驟如下(必須在可讀文件系統下才可以使用):

    1.mount -n -t vfat -o rw /dev/sda1 /mnt/usb/

    2.cp -arf *.cpp /mnt/usb (may be delay some minutes)

    3.cd ……(not at the dir /mnt/usb)

    4.umount -t vfat /mnt/usb

Copyright © Linux教程網 All Rights Reserved