mount disk Image
[ 2011/07/19 15:14 | by selboo ]
如果你今天面对的是disk image而不是一般的partition image,当使用mount -o loop是将无法mount成功。这很容易理解,因为你必须知道disk image中partition的位置之后才能mount起來,怎么做呢?
需求: mount test.img 并更改第一个partition中的某个文件
我们先看看如果直接用mount -o loop会如何:
[code]lawrence@lawrence-x24:~/Desktop$ sudo mount -o loop test.img /mnt/test/
mount: you must specify the filesystem type
lawrence@lawrence-x24:~/Desktop$ sudo mount -o loop -t ext3 test.img /mnt/test/
mount: wrong fs type, bad opti[
需求: mount test.img 并更改第一个partition中的某个文件
我们先看看如果直接用mount -o loop会如何:
[code]lawrence@lawrence-x24:~/Desktop$ sudo mount -o loop test.img /mnt/test/
mount: you must specify the filesystem type
lawrence@lawrence-x24:~/Desktop$ sudo mount -o loop -t ext3 test.img /mnt/test/
mount: wrong fs type, bad opti[
在Linux中mount目录到另一个目录
[ 2008/12/15 22:17 | by selboo ]
from http://www.php-oa.com
有个比较破,但又不得不用的软件。它的目录都没法修改,但是空间又太少了。本来想用ls -n软链接一个目录到他原来的目录,但不能启动,报错
Too many levels of symbolic links for directory
软链接不行就硬链接吧。。。也不行。nnd
ln: `/data/files/': hard link not allowed for directory
没法子,只有出杀手锏了
mount --bind /data/files /files
有个比较破,但又不得不用的软件。它的目录都没法修改,但是空间又太少了。本来想用ls -n软链接一个目录到他原来的目录,但不能启动,报错
Too many levels of symbolic links for directory
软链接不行就硬链接吧。。。也不行。nnd
ln: `/data/files/': hard link not allowed for directory
没法子,只有出杀手锏了
mount --bind /data/files /files