Ubuntu系统手工挂载Windows分区

手工挂载 windows 分区

执行下列命令, 编辑挂载脚本 autowinfs.

sudo ">nano /usr/sbin/autowinfs

复制粘贴以下引用的内容,
输入Ctrl + O并回车,保存文件, Ctrl + X退出。

#!/bin/sh##autowinfs auto mount windows disks## Copyright (c) 2005 Jiahua Huang <jhuangjiahua@gmail.com># License:
GPLv2## /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>^</sup> 在
Ubuntu 5.10 上执行上述语句会出错, 少了 "-o"mount /dev/$WDISKS /windows/$WDISKS -t ntfs -o user,nls=utf8,umask=0donefdisk -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

命令挂载。

时间: 2024-11-02 03:45:10

Ubuntu系统手工挂载Windows分区的相关文章

Ubuntu系统自动挂载Windows分区

自动挂载 Windows 分区 自动挂载 windows 分区执行下列命令, 编辑挂载脚本 autowinfs. sudo gedit /usr/sbin/autowinfs 复制粘贴以下引用的内容,保存文件, 退出. mkdir -p /windows/rmdir /windows/* 1> /dev/http://www.aliyun.com/zixun/aggregation/19527.html">nullgrep -v '/windows/' /etc/ fstab >

linux系统上挂载windows分区和U盘的方法

1.支持ntfs分区 如果你的windows分区有ntfs格式的,要使linux支持ntfs格式,你可以通过编译内核实现,但最简单的方式是通过安装支持ntfs的rpm包实现. 单击右键,在快捷菜单里选择在此打开终端.在终端中输入uname -a查看内核版本,下载相应内核的rpm,我的rh9是kernel-ntfs-2.4.20-8.i686.rpm.在终端中输入 代码: rpm -ivh kernel-ntfs-2.4.20-8.i686.rpm 即可.(rpm为安装rpm包的命令,参数i 为显

Ubuntu自动挂载windows分区执行命令

自动挂载 windows 分区执行下列命令, 编辑挂载脚本 autowinfs. sudo gedit /usr/sbin/autowinfs复制粘贴以下引用的内容,保存文件, 退出. mkdir&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; -p  /windows/rmdir   /windows/*   1> /dev/nullgrep  -v  '/windows/'  /etc/fstab  &g

Linux系统下挂载windows分区方法

挂载Windows分区 1.手工挂载 在Linux中也可以读取Windows分区,包括fat32格式的和ntfs格式的.首先你得知道Linux下对硬盘分区的称呼.比如Windows下的C盘通常是hda1,D盘是hda5,E盘是hda6,等等.详细情形请看相关文档. 要挂载Windows分区,首先得确定你所用的Linux系统的locale(这个locale包括了系统使用的语言和字符的编码等信息).中文Linux 常用的locale是zh_CN.gb2312,zh_CN.gbk,zh_CN.gb18

如何挂载windows分区和U盘

1.支持ntfs分区 如果你的windows分区有ntfs格式的,要使linux支持ntfs格式,你可以通过编译内核实现,但最简单的方式是通过安装支持ntfs的rpm包实现. 单击右键,在快捷菜单里选择在此打开终端.在终端中输入uname -a查看内核版本 到http://linux-ntfs.sourceforge.net/rpm/redhat9.html下载相应内核的rpm,我的rh9是kernel-ntfs-2.4.20-8.i686.rpm.在终端中输入 代码: rpm -ivh ker

Ubuntu挂载Windows分区详解

如果可能,推荐挂载在ubuntu的windows分区为FAT32格式,而不是NTFS.因为保密和缺少NTFS文件系统的结构文档等原因,ubuntu对NTFS的支持还不是很好.如果你有一个NTFS格式的分区,你可以用Partition http://www.aliyun.com/zixun/aggregation/16764.html">Magic将其转换成FAT32格式(这一操作请您自己承担风险). 用法说明 创建一个挂载点(目录),你将通过这个挂载点访问windows分区.Ubuntu缺

Linux系统下如何挂载Windows分区和U盘

我的机子同时装了Windows和Linux操作系统,通常情况下Linux对Windows的分区格式是不支持的.而我们个人用户用的最多的往往还是Windows系统,在学习中免不了要在两个系统之间交换文件.幸好Linux系统提供了mount命令可用于挂载Windows下的分区.为此我们可通过此命令来在Linux下挂载Windows的分区来实现两个系统之间的文件交换.(提示,目前的Linux的系统好像对NTFS分区格式的支持不是太好,所以最好用FAT32的分区格式.本例以FAT32格式为例) 1.以r

Ubuntu系统手工挂卸载只读NTFS格式分区

例如 假设 /dev/hda1 是目前 Windows 所在的分区位置 (NTFS) 主机上要挂载的目录: /media/windows 要挂载 Windows 的http://www.aliyun.com/zixun/aggregation/10608.html">硬盘分区时sudo mkdir /media/windowssudo mount /dev/hda1 /media/windows/ -t ntfs -o utf8,umask=0222 要卸载 Windows 的硬盘分区时s

关于 Ubuntu 自动挂载 Windows 分区

把下面的保存为 /usr/sbin/autowinfssudo gedit /usr/sbin/autowinfs #!/bin/sh##autowinfs auto mount windows disks## Copyright (c) 2005 Jiahua Huang <jhuangjiahua@gmail.com>#License: GPLv2## /usr/bin/sutowinfs# 用来自动挂载机器上的 Windows 分区 , 并写入 /etc/fstab# 五 2月 18 1