Difference between revisions of "Tutorials Linux opt on loopback"

From WebOS Internals
Jump to navigation Jump to search
(Added Start/Stop Script)
Line 36: Line 36:
  
 
=Procedure=
 
=Procedure=
 +
 +
==Creating Linux Virtual Filesystem==
  
 
Do '''NOT''' do this if you want to connect your Pre to your computer in USB Drive or MediaSync mode.
 
Do '''NOT''' do this if you want to connect your Pre to your computer in USB Drive or MediaSync mode.
Line 44: Line 46:
 
mkdir /media/internal/vfs
 
mkdir /media/internal/vfs
  
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum should be 256MB)
+
#  Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)
 
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k
 
dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k
  
Line 84: Line 86:
 
# remove files/directories from /var/opt
 
# remove files/directories from /var/opt
 
rm -r /var/opt
 
rm -r /var/opt
 +
</source>
 +
 +
==Start/Stop Script==
 +
 +
A work in progress. Needs to be bullet-proofed. Ideally should be wrapped around a WebOS GUI app. This script is a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes.
 +
 +
<source lang="bash">
 +
#!/bin/sh
 +
#
 +
# List of Optware applications to start/stop
 +
# in conjunction with mounting/unmounting VFS
 +
# Edit to suit environment
 +
APPS="optware-openssh optware-dropbear"
 +
 +
# Complete FileName of VFS to mount/unmount
 +
# An entry in /etc/fstab must exist filename
 +
LVFS="/media/internal/vfs/optware.img"
 +
 +
case $1 in
 +
  "on" )
 +
        echo '**** Mounting Linux VFS'
 +
        /bin/mount "$LVFS"
 +
        echo '**** Starting Applications'
 +
        for x in $APPS
 +
          do
 +
          if [ -f /etc/event.d/"$x" ]
 +
          then
 +
          /sbin/initctl start "$x"
 +
          fi
 +
        done
 +
        echo '**** Linux VFS Enabled'
 +
        ;;
 +
  "off" )
 +
        echo '**** Stopping Applications'
 +
        for x in $APPS
 +
          do
 +
          if [ -f /etc/event.d/"$x" ]
 +
          then
 +
          /sbin/initctl stop "$x"
 +
          fi
 +
        done
 +
        echo '**** Unmounting Linux VFS'
 +
        /bin/umount /opt
 +
        /sbin/losetup -d /dev/loop0
 +
        echo '**** Linux VFS Disabled'
 +
;;
 +
  * )
 +
        echo "$1 unknown argument.  Argument must be 'on' or 'off'"
 +
        ;;
 +
esac
 
</source>
 
</source>
  

Revision as of 10:27, 4 August 2009

Introduction

Background & Purpose

The Palm Pre's 8GB HD is configured with three partitions:

1) /dev/mmcblk0p1 defined as a Linux/PA-RISC boot partition is only 4MB
2) /dev/mmcblk0p2 defined as a Linux partition and is 32MB mounted as /boot
3) /dev/mmcblk0p3 defined as a Linux LVM partition is 7.62GB

The /dev/mmcblk0p3 partition is a Linux Volume Group that is sliced into six Logical Volumes:

/dev/store/root mounted on / (root) 456 MB
/dev/store/var mounted on /var 256MB
/dev/store/update mounts on /var/lib/update 56MB (not mounted)
/dev/store/log/ mounted on /var/log 40MB
/dev/store/media mounted /media/internal 6.69GB
/dev/store/swap linux swap 128MB

It has been observed that if /var or / (root) usage is greater than or equal to 90% than the FAILED_NOT_ENOUGH_INSTALL_SPACE error is generated. "Builtin" applications reside on the root filesystem in /usr/palm/applications. Downloaded apps and those installed with palm-install reside on the /var filesystem in /var/usr/palm/applications. Also for rooted Pre's the opt-ware linux-based apps are stored in /var/opt.

One fix for a rooted Pre is to create a virtual linux filesystem using a portion of the space allocated to /media/internal using a procedure similar to this one:

Linux Online - Using a file instead of a partition

Then mount the virtual filesystem on /opt vs binding /var/opt to /opt. Then relocating the files/directories under /var/opt to the new virtual filesystem.

NOTE: The /dev/store/update is mounted when you run the Update process. It would seem that the updates are stored here (at least some of them) prior to installation.

Requirements

You must be root to perform this process. It is assumed that you followed the procedure to install opt-ware apps in /var/opt and linked /var/opt to /opt with the "mount -o bind /var/opt /opt" command and there is an equivalent entry in the /etc/fstab file.


Procedure

Creating Linux Virtual Filesystem

Do NOT do this if you want to connect your Pre to your computer in USB Drive or MediaSync mode.

The following commands will move all your optware to an ext3 1GB loopback image that resides on /media/internal. <source lang="bash">

  1. Create a directory on the USB drive portion to hold the virtual filesystem

mkdir /media/internal/vfs

  1. Create a 1GB file (adjust size (bs*count) as needed, the minimum size should be 256MB)

dd if=/dev/zero of=/media/internal/vfs/optware.img bs=1024 count=1024k

  1. Create linux ext3 filesystem

mkfs.ext3 -F /media/internal/vfs/optware.img

  1. Create a temporary mount point

mkdir /tmp/opt

  1. Mount newly created virtual filesystem

mount -o loop /media/internal/vfs/optware.img /tmp/opt

  1. Populate new virtual filesystem.
  2. Must be in the source directory.

cd /opt tar cvf - . | (cd /tmp/opt; tar xf -) cd /

  1. Unmount virtual filesystem

umount /tmp/opt

  1. Unbind /var/opt from /opt

umount /opt

  1. If no errors, mount virtual filesystem on /opt
  2. otherwise skip

mount -o loop /media/internal/vfs/optware.img /opt/

  1. Add the following line to /etc/fstab to automount (without the #).
  2. /media/internal/vfs/optware.img /opt/ ext3 loop,noatime 1 2
  3. Comment out the /var/opt entry, should be similar to next line
  4. /var/opt /opt bind defaults,bind 0 0
  5. reboot your phone, if error noted when attempting to unmount /opt

reboot

  1. If no errors noted with the opt-ware apps,
  2. remove files/directories from /var/opt

rm -r /var/opt </source>

Start/Stop Script

A work in progress. Needs to be bullet-proofed. Ideally should be wrapped around a WebOS GUI app. This script is a work-a-round to allow using the Palm Pre's USB Drive and Media Sync modes.

<source lang="bash">

  1. !/bin/sh
  2. List of Optware applications to start/stop
  3. in conjunction with mounting/unmounting VFS
  4. Edit to suit environment

APPS="optware-openssh optware-dropbear"

  1. Complete FileName of VFS to mount/unmount
  2. An entry in /etc/fstab must exist filename

LVFS="/media/internal/vfs/optware.img"

case $1 in

 "on" )
       echo '**** Mounting Linux VFS'
       /bin/mount "$LVFS"
       echo '**** Starting Applications'
       for x in $APPS
         do
         if [ -f /etc/event.d/"$x" ]
         then
         /sbin/initctl start "$x"
         fi
       done
       echo '**** Linux VFS Enabled'
       ;;
 "off" )
       echo '**** Stopping Applications'
       for x in $APPS
         do
         if [ -f /etc/event.d/"$x" ]
         then
         /sbin/initctl stop "$x"
         fi
       done
       echo '**** Unmounting Linux VFS'
       /bin/umount /opt
       /sbin/losetup -d /dev/loop0
       echo '**** Linux VFS Disabled'

;;

 * )
       echo "$1 unknown argument.  Argument must be 'on' or 'off'"
       ;;

esac </source>

Caveats

Currently this procedure will disable USB Drive and Media Sync modes.

To Do's

Create a method to safely unmount Virtual FileSystem when selecting USB Drive and Media Sync modes (under development).

Credits

PuffTheMagic - Initial process
NetWhiz      - USB Drive/Media Sync Warning
1lnxraider   - Expanded and modified tutorial