|
2010-09-28
, 11:28
|
Posts: 96 |
Thanked: 105 times |
Joined on Aug 2006
@ Finland
|
#22
|
I think porting man, and puting up busybox's manpage, woudn't be a big deal, just no one really need it.
apt-get install man
The Following User Says Thank You to onion For This Useful Post: | ||
|
2010-09-28
, 11:41
|
Posts: 1,751 |
Thanked: 844 times |
Joined on Feb 2010
@ Sweden
|
#23
|
I think -name and glob patterns should be much easier to understand and remember for a beginner than grep and regular expressions.
|
2010-09-28
, 12:09
|
Posts: 286 |
Thanked: 259 times |
Joined on Jan 2006
@ Cambridge, England
|
#24
|
please, use
http://wiki.maemo.org/put_desired_page_name_here
|
2010-09-28
, 12:54
|
|
Posts: 511 |
Thanked: 128 times |
Joined on Aug 2010
@ Trinidad and Tobago
|
#25
|
|
2010-09-28
, 13:16
|
Posts: 1,048 |
Thanked: 1,127 times |
Joined on Jan 2010
@ Amsterdam
|
#26
|
The Following 3 Users Say Thank You to anthonie For This Useful Post: | ||
|
2010-09-28
, 13:46
|
Posts: 1,751 |
Thanked: 844 times |
Joined on Feb 2010
@ Sweden
|
#27
|
The Following User Says Thank You to AlMehdi For This Useful Post: | ||
|
2010-09-28
, 13:58
|
|
Posts: 511 |
Thanked: 128 times |
Joined on Aug 2010
@ Trinidad and Tobago
|
#28
|
|
2010-09-28
, 14:05
|
|
Posts: 122 |
Thanked: 22 times |
Joined on Jun 2010
@ China
|
#29
|
I'm thinking of letting someone else put up this wiki because I'm new at that also and I can't even put in a Title. So what I'll do is put together everything I want in the Wiki and who ever wants to help me out by posting it up. I'll PM it to you alright.
Don't think I'll need someone to initiate the process for me I think I got it under control now sorry guys
|
2010-09-28
, 14:08
|
|
Posts: 511 |
Thanked: 128 times |
Joined on Aug 2010
@ Trinidad and Tobago
|
#30
|
The Following User Says Thank You to RenaldoTT For This Useful Post: | ||
maemo-list-user-packages
Lists user installed packages. Tends to list also packages that have been uninstalled but have configuration file still in home directory.
Adding | to end of command gives user ability to pipe commands to one after another.
grep <searchterm> extracts only lines that have search term.
ps lists all processes that are currently running. So for e.g. to list processes that include word hildon in them you might run command:
ps | grep hildon
Test and experiment with this.
sort sorts inputted data by switches. Look here for more info. E.g we can list installed packages and sort them by 3rd item like this:
maemo-list-user-packages | sort -k 3
And we got nice list of installed packages that are sorted by the category.
> in the end of command gives you choice to output data to file. E.g
maemo-list-user-packages | sort -k 3 >list.txt
outputs listed packages in sorted order to filename list.txt in directory where you currently are.
df shows filesystem data and how much you got free space. Adding -h gives space in megabytes and command:
df -h | grep rootfs
Shows only info about rootfs space.
IMO one of the most important things about x terminal (busybox) is that you can always use tabulator to fill command/filename/directoryname. And also remember that filesystem is case sensitive.
Last edited by slender; 2010-09-28 at 13:13.