![]() |
2010-10-08
, 10:34
|
|
Posts: 1,389 |
Thanked: 1,857 times |
Joined on Feb 2010
@ Israel
|
#2
|
The Following User Says Thank You to ZogG For This Useful Post: | ||
![]() |
2010-10-08
, 11:01
|
Posts: 145 |
Thanked: 304 times |
Joined on Jan 2010
@ Milton Keynes, UK
|
#3
|
![]() |
2010-10-08
, 18:34
|
Posts: 145 |
Thanked: 304 times |
Joined on Jan 2010
@ Milton Keynes, UK
|
#4
|
mount -o loop,offset=33280,umask=000 test.vdi /media/test
Mount: Mounting /dev/loop0/ on /media/test failed: Invalid Argument
mount -t fat -o loop,offset=33280,umask=000 test.vdi /media/test
Mount: Mounting /dev/loop0/ on /media/test failed: No Such Device
![]() |
2010-10-08
, 18:48
|
Posts: 317 |
Thanked: 787 times |
Joined on Oct 2009
@ Krakow, Poland
|
#5
|
The Following User Says Thank You to dwaradzyn For This Useful Post: | ||
![]() |
2010-10-08
, 18:51
|
Posts: 145 |
Thanked: 304 times |
Joined on Jan 2010
@ Milton Keynes, UK
|
#6
|
![]() |
2010-10-08
, 19:27
|
Posts: 145 |
Thanked: 304 times |
Joined on Jan 2010
@ Milton Keynes, UK
|
#7
|
The Following 3 Users Say Thank You to jamiefuller For This Useful Post: | ||
![]() |
2010-10-08
, 19:39
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#8
|
The Following User Says Thank You to woody14619 For This Useful Post: | ||
![]() |
2010-10-08
, 19:58
|
Posts: 145 |
Thanked: 304 times |
Joined on Jan 2010
@ Milton Keynes, UK
|
#9
|
![]() |
2010-10-09
, 04:49
|
Posts: 992 |
Thanked: 738 times |
Joined on Jun 2010
@ Low Earth Orbit
|
#10
|
The Following User Says Thank You to kureyon For This Useful Post: | ||
I have a VDI file which I would like to mount as a disk within maemo, however I am a total linux noob so not even sure if its possible.
I plan on giving it a try tonight when I get home from work but before I do I thought I'd run it passed some experts on here to see if its a fools-errand.
Mounting a VDI (virtualbox hdd image) file is possible in linux, as this fella managed http://forums.virtualbox.org/viewtop...asc&highlight= however do all of those commands even exist within the linux kernal on the N900? Will it be able to handle ntfs etc?
I have some limited experience using the mount command so I know that one is there, as I have truecrypt installed and use the mount command to mount containers.
Any feedback or suggestions would be good before I go blindly attempting it
Cheers
Jamie
---------------------------
solved!
the command to mount my vdi was this
as root (and assuming that u have created a mount point in /media)
losetup -o 33280 dev/loop0 ntfs.vdi
mount -o uid=29999 /dev/loop0 /media/ntfs
to unmount:
umount /media/ntfs
losetup -d /dev/loop0
thanks to all that helped!
Last edited by jamiefuller; 2010-10-09 at 17:22. Reason: solved problem