Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

IGEPv5 Ubuntu Distro

807 bytes added, 20:54, 18 March 2014
no edit summary
Normally the 0 is the boot device (from where you boot), if you use the microsd card for boot : /dev/mmcblk0 and the eMMC is the /dev/mmcblk1 but if you boot from the eMMC and insert the microsd card then the eMMC is /dev/mmcblk0 and the microsd card be /dev/mmcblk1 <br>
If you use the script for prepare the disk first be sure about which is your desired target due you can easily erase other disk.
 
= WORK WITH PACKAGES =
Maybe if you used ubuntu before you are familiar with the apt use, this is only an a introduction to apt use:<br>
If you wish install a new package you should use:
<pre>
$ apt-get install <package name>
$ apt-get install opens-server
</pre>
If you wish locate any package you can use:
<pre>
$ apt-cache search <name>
</pre>
it list the concordances with name, maybe it's useful use an alternative command:
<pre>$ apt-cache search <name> | grep "any string"
</pre>
If you wish remove any package you can use:
<pre>$ apt-get remove <package name>
</pre>
 
If you wish list the package content you can use:
<pre>
dpkg -L <package name>
</pre>
If you wish list the packages installed in your system you can use:
<pre>
dpkg -l
</pre>
or if you wish locate one;
<pre>
dpkg -l <name>
</pre>
= BUGS =