<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://maemo.octonezd.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=193.181.190.2</id>
	<title>Maemo Wiki Mirror - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://maemo.octonezd.me/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=193.181.190.2"/>
	<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php/Special:Contributions/193.181.190.2"/>
	<updated>2026-04-22T06:58:02Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://maemo.octonezd.me/index.php?title=X_Terminal_for_Beginners&amp;diff=43557</id>
		<title>X Terminal for Beginners</title>
		<link rel="alternate" type="text/html" href="https://maemo.octonezd.me/index.php?title=X_Terminal_for_Beginners&amp;diff=43557"/>
		<updated>2010-09-29T14:09:33Z</updated>

		<summary type="html">&lt;p&gt;193.181.190.2: /* X Terminal Commands Explained for Noobs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== X Terminal Commands Explained for Noobs ==&lt;br /&gt;
&lt;br /&gt;
Well this is what we have so far I used a couple links and tested commands myself, to see if they actually worked and were not dangerous just in case anyone was trying to mess with us Noobs. &lt;br /&gt;
&lt;br /&gt;
The list will increase as we go along learning together, and shall be separated with headings for easy use. Please no trolling, this is for constructive purposes.&lt;br /&gt;
&lt;br /&gt;
When placing up a new command that isn&#039;t already on the list, make sure to place it under the most appropriate heading and also place with it an explanation of what it does and a working example. &lt;br /&gt;
&lt;br /&gt;
Make reference to http://talk.maemo.org/showthread.php?t=63034 if you have any questions and http://wiki.maemo.org/Terminal and the books provided by anthonie here http://talk.maemo.org/showthread.php?t=63052 for more commands which you can use to help yourself or others. Thank you from T&amp;amp;T, West Indies&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Application Manager ===&lt;br /&gt;
&lt;br /&gt;
updates local metadata detailing what apps are available in the repsitories&lt;br /&gt;
 apt-get update &lt;br /&gt;
&lt;br /&gt;
upgrades any installed apps with newer versions (the -y is optional and just avoids it prompting you as to whether or not to proceed)&lt;br /&gt;
 apt-get upgrade -y &lt;br /&gt;
&lt;br /&gt;
will remove any dowmloaded package archives. Once the package is installed the dowmloaded file is no longer needed. The App Man does this automatically but if you&#039;re using &amp;quot;apt-get&amp;quot; you&#039;ll have to do it manually&lt;br /&gt;
 apt-get clean&lt;br /&gt;
&lt;br /&gt;
same as &amp;quot;apt-get clean&amp;quot; but only removes package archives which are obsolete (no longer in repsitories). Having run &amp;quot;apt-get clean it&#039;s pointless to run this command&lt;br /&gt;
 apt-get autoclean&lt;br /&gt;
&lt;br /&gt;
removes any packages which are no longer needed. These are applications/libraries which were automatically installed because of dependencies but are no longer required&lt;br /&gt;
 apt-get autoremove&lt;br /&gt;
&lt;br /&gt;
installs any missing dependencies (which should fix the broken packages issue I had)&lt;br /&gt;
 apt-get -f install&lt;br /&gt;
&lt;br /&gt;
=== Exploring Files/Searching ===&lt;br /&gt;
&lt;br /&gt;
ls = view inside a directory (e.g. &amp;quot;ls /home/user&amp;quot; allows you to see inside the &amp;quot;user&amp;quot; directory)&lt;br /&gt;
&lt;br /&gt;
ls -a = view all files, even the hidden ones (e.g. ls -a /home/user)&lt;br /&gt;
&lt;br /&gt;
ls -l = view it like a list (e.g. ls -l /home/user)&lt;br /&gt;
&lt;br /&gt;
ls -la = lists hidden files and directories&lt;br /&gt;
&lt;br /&gt;
[Ctrl] c = cancels any previously given command&lt;br /&gt;
NOTE: can also be used in DOS terminals&lt;br /&gt;
&lt;br /&gt;
cd = changes directory (e.g. cd MyDocs would send you into MyDocs so if you&#039;re unzipping something the sytem will look in MyDocs for the desired folder to be unzipped)&lt;br /&gt;
&lt;br /&gt;
pwd = tells you the directory you are in (pwd stands for &amp;quot;present working directory&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
find / | grep &amp;lt;place name of file/folder in question here&amp;gt; = finds all results for filed/folders with that name&lt;br /&gt;
&lt;br /&gt;
fing /home/ | grep &amp;lt;name of file/folder&amp;gt; = finds the folder/file in question in the home directory. you can easily change the guide the command if you know where the file you are looking for is. (e.g. find /home/user/MyDocs/ | grep &amp;lt;fild/folder name&amp;gt; which will find that file or folder for you in MyDocs and easy way to check if something is really where it&#039;s supposed to be if you don&#039;t have a file explorer such as Cute Explorer)&lt;br /&gt;
&lt;br /&gt;
ls -laS / = shows you your biggest folders/files in the different locations (e.g. ls -laS /home/user or ls -laS /home/user/opt will show you the biggest files in &amp;quot;user&amp;quot; and &amp;quot;opt&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
dpkg -l = shows you a list of all your programmes including those not visible in App Man&lt;br /&gt;
&lt;br /&gt;
[tab] key in X Terminal autocompletes words e.g. &amp;quot;rm -r /home/opt/themes/sun[tab] will finish the word as &amp;quot;sunset&amp;quot;. Double [tab] would give you all the files starting with &amp;quot;sun&amp;quot;. &amp;quot;rm -r /home/opt/[tab][tab] shows you what&#039;s in that &amp;quot;themes&amp;quot; folder&lt;br /&gt;
&lt;br /&gt;
Removing Files/Programmes [WARNING! BE VERY CAREFUL WHEN USING THESE COMMANDS]&lt;br /&gt;
&lt;br /&gt;
rm -r = removes all files or folders in a specific location (e.g. rm -r /home/user/opt will delete all files in &amp;quot;opt&amp;quot; so DON&#039;T RUN THIS COMMAND)&lt;br /&gt;
&lt;br /&gt;
rm = removes singular file/folder from a location (e.g. rm /home/user/opt/themes/sunset/file1 would delete &amp;quot;file1&amp;quot; in the &amp;quot;sunset&amp;quot; folder&lt;br /&gt;
&lt;br /&gt;
[[Category:Beginners]]&lt;/div&gt;</summary>
		<author><name>193.181.190.2</name></author>
	</entry>
</feed>