Ubuntu系統手工掛載Windows分區

來源:互聯網
上載者:User
關鍵字 Ubuntu Windows分區 手工掛載

手工掛載 windows 分區

執行下列命令, 編輯掛載腳本 autowinfs.

sudo HTTP://www.aliyun.com/zixun/aggregation/19512.html">nano /usr/sbin/autowinfs

複製粘貼以下引用的內容,
輸入Ctrl + O並回車,保存檔, Ctrl + X退出。

#!/bin/sh##autowinfs auto mount windows disks## Copyright (c) 2005 Jiahua Huang <jhuangjiahua@gmail.com># License: G PLv2## /usr/bin/sutowinfs# 用來自動掛載機器上的 Windows 分區 # 六 4月 23 01:21:23 CST 2005mkdir -p /windows/rmdir /windows/* 1> /dev/ null# 可以把腳本內容保存為 /etc/rcS.d/S60autowinfs# 加上可執行許可權# 這樣就可以在開機時候自動掛載 Windows 分區# 適用于需要增減硬碟,或硬碟分區的使用者## 本腳本用於 UTF-8 的 Locale 下 # 單獨的 fdisk -l 不能列出分區的情況很少了 , 所以把 /dev/[hs]d[a-z] 去掉# 查找 NTFS 分區 , 新內核的 auto 好像有點問題 , 所以現在把 NTFS 和 VFST 分開來fdisk -l /dev/[ hs]d[a-z] | grep 'NTFS' | cut -d' ' -f1 | cut -d/ -f3 | while read WDISKSdomkdir "/windows/$WDISKS"#mount /dev/$WDISKS /windows/$WDISKS -t ntfs user,nls=utf8,umask=0# <sup& gt;^</sup> 在 Ubuntu 5.10 上執行上述語句會出錯, 少了 "-o"mount /dev/$WDISKS /windows/$WDISKS -t ntfs -o user,nls=utf8,umask=0done fdisk -l /dev/[hs]d[a-z] | grep 'FAT' | cut -d' ' -f1 | cut -d/ -f3 | while read WDISKSdomkdir "/windows/$WDISKS"#mount /dev/$WDISKS /windows/$WDISKS -t vfat user,utf8,umask=0# <sup>^ </sup> 在 Ubuntu 5.10 上執行上述語句會出錯, 少了 "-o"mount /dev/$WDISKS /windows/$WDISKS -t vfat -o user,utf8,umask=0done

再運行命令

sudo chmod +x /usr/sbin/autowinfssudo /usr/sbin/autowinfs

就可以了,Windows分區將掛載在 /windows/ 下.


以後如果重啟後,需要掛載分區,則使用

sudo /usr/sbin/autowinfs

命令掛載。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.