Difference between revisions of "Didj Common Commands"

From eLinux.org
Jump to: navigation, search
(Mounting Commands in Didj)
m (Manufacture's Partition)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This is a collection of useful commands to have when accessing your Didj from the command prompt. Its meant as a quick reference guide, for more complex procedures look in the [http://www.elinux.org/Didj#Tutorials.2FHow_To.27s Tutorials/How To's]section of the Didj Wiki main page.
+
This is a collection of useful commands to have when accessing your Didj from the command prompt. Its meant as a quick reference guide, for more complex procedures look in the [[Didj#Tutorials.2FHow_To.27s Tutorials|How To's]]section of the Didj Wiki main page.
  
 
== AppManager ==
 
== AppManager ==
  
''Shutdown or Start up AppManger''
+
==== Stop Start Restart ====
  
/etc/init.d/lightning (start | stop | restart)
+
/etc/init.d/lightning (start | stop | restart)
  
== USB ==
+
==== Permanently Prevent Starting ====
 +
First, make the root partition mountable.
  
'''mass_storage'''
+
In the /etc/rc.d folder, remove these files, or back them up to a different folder.
  
''enable/disable''
+
rm K50example
 +
rm S50example
 +
rm K51lightning
 +
rm S51lightning
  
usbctl -d mass_storage -a enable
 
  
usbctl -d mass_storage -a disable
+
== USB ==
  
''unlock''
+
==== USB File Storage ====
 +
The USB mass_storage driver on the stock Didj, requires a few commands be run after its been connected to a host PC, before it will mount like a normal USB drive.
  
usbctl -d mass_storage -a unlock
+
'' On Didj ''
  
Use enable and unlock to make USB drive accessible from host computer.
+
''' Mount on Host '''
  
== Mounting Commands in Didj ==
+
usbctl -d mass_storage -a enable
 +
usbctl -d mass_storage -a unlock
  
(note) NAND partitions can not be shared by USB host and device simultaneously.
+
''' Mount on Didj '''
Developers should use the usbctl command judiciously to avoid corrupting NAND.
 
  
 +
usbctl -d mass_storage -a disable
 +
usbctl -d mass_storage -a lock
  
''Mount the Manufacturers partition''
 
  
mount -t jffs2 $mfgdatamnt /mnt2/mfg
+
''' Normal Mount Command '''
  
 +
Mount the /Didj file system
 +
mount -t vfat -o async,noatime /dev/mtdblock9 /Didj
  
''Remount the Manufactures partition as RW''
 
  
mount -o remount,rw /mfgdata
+
== Make Root Partition Writable ==
  
 +
(note) NAND partitions can not be shared by USB host and device simultaneously.
 +
Developers should use the usbctl command judiciously to avoid corrupting NAND.
  
''Remount the root fs as R''W
+
'' On Didj ''
 +
mount -o remount, rw /
  
mount -o remount, rw /
+
== Manufacturer's Partition ==
  
-or-
+
''Mount Partition''
 +
mount -t jffs2 $mfgdatamnt /mnt2/mfgfg
  
mount /dev/root / -o remount,rw
+
'' Make Writable ''
 
+
mount -o remount,rw /mfgdata
Mount the /Didj file system
 
mount -t vfat -o async,noatime /dev/mtdblock9 /Didj
 
  
 
== Display Commands ==
 
== Display Commands ==
  
 
''Power off the screen''
 
''Power off the screen''
 +
 +
mlc-control /dev/mlc s enable off
 +
 +
  
mlc-control /dev/mlc s enable off
+
[[Category:Didj]]
 +
[[Category:LeapFrog Pollux Platform]]

Latest revision as of 02:09, 15 July 2011

This is a collection of useful commands to have when accessing your Didj from the command prompt. Its meant as a quick reference guide, for more complex procedures look in the How To'ssection of the Didj Wiki main page.

AppManager

Stop Start Restart

/etc/init.d/lightning (start | stop | restart)

Permanently Prevent Starting

First, make the root partition mountable.

In the /etc/rc.d folder, remove these files, or back them up to a different folder.

rm K50example
rm S50example
rm K51lightning
rm S51lightning


USB

USB File Storage

The USB mass_storage driver on the stock Didj, requires a few commands be run after its been connected to a host PC, before it will mount like a normal USB drive.

On Didj

Mount on Host

usbctl -d mass_storage -a enable
usbctl -d mass_storage -a unlock

Mount on Didj

usbctl -d mass_storage -a disable
usbctl -d mass_storage -a lock


Normal Mount Command

Mount the /Didj file system

mount -t vfat -o async,noatime /dev/mtdblock9 /Didj


Make Root Partition Writable

(note) NAND partitions can not be shared by USB host and device simultaneously. Developers should use the usbctl command judiciously to avoid corrupting NAND.

On Didj

mount -o remount, rw /

Manufacturer's Partition

Mount Partition

mount -t jffs2 $mfgdatamnt /mnt2/mfgfg

Make Writable

mount -o remount,rw /mfgdata

Display Commands

Power off the screen

mlc-control /dev/mlc s enable off