AndLinux: Difference between revisions

From miki
Jump to navigation Jump to search
(Mount partitions in AndLinux)
Line 1: Line 1:
==Mount==
===Mounting a <tt>.dvi</tt> drive file===
Say you have a file <tt>D:\andlinux\drives\base.vdi</tt>. To mount it in AndLinux, add to your '''<tt>settings.txt</tt>''':
cobd0=D:\andlinux\drives\base.vdi

===Mounting a physical drive/partition/cdrom/usb ===
Reference: [http://www.andlinux.org/forum/viewtopic.php?t=71], [http://colinux.wikia.com/wiki/Partitions]
To mount an existing drive or partition, add to your '''<tt>settings.txt</tt>''':
hda=\Device\Harddisk0\Partition0 # To mount the whole drive
hda2=\Device\Harddisk0\Partition2 # To mount a single partition (listed Partition 3 by diskpart.exe)
Be '''careful''' with the way Windows numbers the partition. Use '''<code>diskpart.exe</code>''' to get the number and then '''<font color="red">subtract 1 from displayed number</font>'''!

The above notation is actually the shorthand notation for:
codb3=\Device\Harddisk0\Partition2
hda2=:cobd3

One can also mount a floppy, cd, usb:
fd0=\Device\Floppy0
cdrom0=\Device\Cdrom0
sda1=\Device\Harddisk1\Partition1 # Assuming usb is the 2nd hard disk

In ''AndLinux'' the partition can be mounted as usual:
{{pl2|<source lang="bash" enclose="prevalid">mount -t ext3 /dev/hda2 /mnt/hda2</source>}}



==Troubleshooting==
==Troubleshooting==
===Startup delays===
===Startup delays===

Revision as of 12:05, 3 June 2010

Mount

Mounting a .dvi drive file

Say you have a file D:\andlinux\drives\base.vdi. To mount it in AndLinux, add to your settings.txt:

cobd0=D:\andlinux\drives\base.vdi

Mounting a physical drive/partition/cdrom/usb

Reference: [1], [2] To mount an existing drive or partition, add to your settings.txt:

hda=\Device\Harddisk0\Partition0               # To mount the whole drive
hda2=\Device\Harddisk0\Partition2              # To mount a single partition (listed Partition 3 by diskpart.exe)

Be careful with the way Windows numbers the partition. Use diskpart.exe to get the number and then subtract 1 from displayed number!

The above notation is actually the shorthand notation for:

codb3=\Device\Harddisk0\Partition2
hda2=:cobd3

One can also mount a floppy, cd, usb:

fd0=\Device\Floppy0 
cdrom0=\Device\Cdrom0 
sda1=\Device\Harddisk1\Partition1              # Assuming usb is the 2nd hard disk

In AndLinux the partition can be mounted as usual:

mount -t ext3 /dev/hda2 /mnt/hda2


Troubleshooting

Startup delays

  • Interaction with Anti-Virus software - AV software may interact with the startup of AndLinux, typically by maintaining a lock on the 4GB disk image file base.drv while it is scanned.
    • Solution: To prevent this, one can exclude the andlinux directory from the AV on-access scanner. In McAfee, this is done by opening the VirusScan consoledouble-ckick On-Access Scanner → then select All Processes → open the pane Detection and click the button Exclusions... → click Add... to add a new exclusion → Browse to AndLinux directory and select Also exclude subfolders.
  • Stalling when mounting / - You experience a huge delay during the startup process, and when launching the FLTK console, you observe that andlinux is stalling on the message below.
ReiserFS: cobd0: warning: sh-2021: reiserfs_fill_super: can not find reiserfs on cobd0
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
Modules already installed.
Closing /
kjournald starting.  Commit interval 5 seconds
  • Solution: The fix proposed in this post is to actually change the extension of the disk image file from .drv to something like .drive (ie. change ./Drives/base.drv to ./Drives/base.drive and ./Drives/swap.drv to ./Drives/swap.drive) and adapt the configuration files ./settings.txt accordingly.

Network issues

  • TAP Interfaces - Reference coLinux page. Some forum posts: [3], [4].
  • Message Network cable unplugged for TAP interface even when AndLinux started.
  • Open your settings file settings.txt, and check the configuration line for the tuntap interface
eth1=tuntap,"TAP-Colinux",00:11:22:33:44:55
  • Go to Network Connections window. Check that the connection for device named TAP-Win32 Adapter V8 (coLinux) is indeed called TAP-Colinux, as specified above. If not (for instance it is called Local Area Connection or Local Area Connection 2), then rename it!
  • Another solution (not tried) from [5]:
    • Control-PanelNetwork Connectionsright click on the TAP-Win32 connection → PropertiesConfigureAdvancedMedia Status = Always connected.