linux起動自動Windowsパーティションマウント

717 ワード

ネット上では、fstabにWINDOWパーティションコードのロードを追加すると言われています.
私のシステムはcentosで、上記の方法を使用するとwindowsパーティションでshスクリプトファイルを実行できません.上の方法は使いにくい.
次の方法で問題を解決しました.LINUX起動後に自動的にwindowパーティションをロードし、起動後にwindowパーティションでlinuxスクリプトを実行できることを保証します./etc/rc.d/rc.localを変更してください.例えば私のwindowパーティションにはntfs形式のdディスクが2つあり、fat 32形式のeディスクがあり、修正後の内容は以下の通りです.
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

#todo: wulong add mount window disk
mount -t ntfs /dev/sda3  /mnt/d
mount -t vfat -o codepage=936,iocharset=utf8 /dev/sda5  /mnt/e
#endif