<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Frostb1te &#187; Operating Systems</title>
	<atom:link href="http://ospsp.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://ospsp.com</link>
	<description>A place to review and chat about iPhone apps!</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:14:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Guide to the Terminal and Linux Lingo</title>
		<link>http://ospsp.com/2010/02/guide-to-the-terminal-and-linux-lingo/</link>
		<comments>http://ospsp.com/2010/02/guide-to-the-terminal-and-linux-lingo/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 03:03:22 +0000</pubDate>
		<dc:creator>Allan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[#]]></category>
		<category><![CDATA[#guide]]></category>
		<category><![CDATA[#terminal]]></category>
		<category><![CDATA[#ubuntu]]></category>

		<guid isPermaLink="false">http://ospsp.com/?p=149</guid>
		<description><![CDATA[as seen on ubuntuforums o.O intro If you are like most new people, then you are scared of the terminal. this is ok, its normal. the reason we have the terminal is because it is much easier to help someone by telling them to copy and paste some text into the terminal than it is [...]]]></description>
			<content:encoded><![CDATA[<p>as seen on ubuntuforums o.O<br /><span style="font-weight: bold;"><br /></span></p>
<div style="text-align: center;"><span style="font-weight: bold;">intro</span></div>
<p>If you are like most new people, then you are scared of the terminal. this is ok, its normal. the reason we have the terminal is because it is much easier to help someone by telling them to copy and paste some text into the terminal than it is to say "ok first you click system, then preferences, then you click the one towards the top of the list that says blahblahblah".</p>
<p>common terminal commands and what they mean, and underneath a short description</p>
<div style="text-align: center;"><span style="font-weight: bold;">rm</span>=<span style="font-style: italic;"> remove</span></div>
<p>this is a potetially dangerous command, as you have probably seen in many forum members signatures, and if you read the announcement. if you haven't read the announcement I highly suggest you read it, it can be found via the link below<br /><a href="http://ubuntuforums.org/announcement.php?f=73">Announcement</a><br />also, please note that this command will delete things WITHOUT confirmation, therefore a small typo could end up deleting vital files, especially if you are root when you run the command</p>
<div style="text-align: center;"><span style="font-weight: bold;">sudo</span>= <span style="font-style: italic;">super user (root) do</span></div>
<p>while this command is essentially useful, when used with potentially malicious commands it can be very dangerous.  sudo allows commands to be executed as root, root in linux is basically what an administrator in windows is, however root can do ANYTHING, thus making sudo a command that must be used only if you can trust the person who told you the code, or you have used the same or a similar code before.  in most cases where you dont understand a command you should wait for another user to post the same thing verifying that the command is indeed safe.</p>
<div style="text-align: center;"><span style="font-weight: bold;">gksudo</span>= <span style="font-style: italic;">graphical super user (root) do</span></div>
<p>This command is basically the same as sudo, but rather than being meant for text it is meant for graphical user interfaces, or GUI's</p>
<div style="text-align: center;"><span style="font-weight: bold;">chmod +x</span>=<span style="font-style: italic;"> change mode + make executable</span></div>
<p>this command is used to make files you download from the internet executable, such as .run or .bin files</p>
<div style="text-align: center;"><span style="font-weight: bold;">aptitude</span>/<span style="font-weight: bold;">apt-get</span>=<span style="font-style: italic;">retrieve and use package(s)</span></div>
<p>a standard aptitude/apt-get command would be<br />sudo aptitude install PROGRAM NAME<br />in order for an aptitude code to work you must have sudo at the front, because programs are installed in a directory (location) that only root can write in.  aptitude/apt-get is used for mainly for installing and uninstalling programs.</p>
<div style="text-align: center;"><span style="font-weight: bold;">cd</span>= <span style="font-style: italic;">change directory</span></div>
<p>this one is pretty straightforward, the terminal executes commands from /home/USER when opened but can execute from other places using the cd command.<br />[code]cd ~/Desktop[/code] would change the terminal working directory to the user desktop with ~ being /home/USER<br />this command is commonly used for installing programs from the source code</p>
<div style="text-align: center;"><span style="font-weight: bold;">cp</span>=<span style="font-style: italic;"> copy file or directory</span></div>
<p>this command can be used to copy files or directories from one place on your computer to another. it will leave the original file or directory where it is and also make a new one somewhere else that is exactly the same<br />cp /home/USER/documents/file1.odt /home/USER/documents/something/file1.odt<br />that would copy the file file1.odt from documents to documents/something</p>
<div style="text-align: center;"><span style="font-weight: bold;">mv</span>= <span style="font-style: italic;">move</span></div>
<p>same as cp (above) but doesn't leave the file where it was originally</p>
<div style="text-align: center;"><span style="font-weight: bold;">find</span>=<span style="font-style: italic;"> find</span></div>
<p>this command will search for a file name in directories, sub directories etc of the parent directory you give it<br />find file /<br />would find anything named file in the parent directory / (entire computer)</p>
<div style="text-align: center;"><span style="font-weight: bold;">df -h</span>= <span style="font-style: italic;">hd space free&amp;used in human readable format</span></div>
<p>easy command to remember, tells you in an easy to understand way about your hard drives and storage</p>
<div style="text-align: center;"><span style="font-weight: bold;">ls</span>= <span style="font-style: italic;">/home/user directories</span></div>
<p>tells you the directories of /home/user except those that are hidden by starting with a "." or ending with "~"</p>
<div style="text-align: center;"><span style="font-weight: bold;">ls -a</span>= <span style="font-style: italic;">/home/user all directories</span></div>
<p>shows you your directories in /home/user including hidden folders</p>
<div style="text-align: center;"><span style="font-weight: bold;">program names</span></div>
<p>typing a program name in the terminal, such as firefox, will simply run the program from the terminal, if you close the terminal, you will also close the program.</p>
<div style="text-align: center;"><span style="font-weight: bold;">killall</span>= <span style="font-style: italic;">kill all</span></div>
<p>this command will stop the program it is addressing, for example the code:<br />killall firefox-bin<br />would kill all open firefox windows, including the downloads window, the addons window, and the web browser itself</p>
<div style="text-align: center;">~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~</div>
<p><div style="text-align: center;"><span style="font-weight: bold;">Common Ubuntu and Linux terminology, EXPLAINED</span></div>
<p>this part of my guide will explain some commonly use acronyms and short forms (abbreviations) of words.</p>
<div style="text-align: center;"><span style="font-weight: bold;">cmd</span> = <span style="font-style: italic;">tarball archive</span></div>
<p>a tarball archive is like a zip archive, same files just a less memory consuming version</p>
<div style="text-align: center;"><span style="font-weight: bold;">command line</span>= <span style="font-style: italic;">terminal</span></div>
<p>it can be found at applications>accessories>terminal<br />it is the text based version of most other things, from it you can install programs, run programs, uninstall programs, among many, many other thing</p>
<div style="text-align: center;"><span style="font-weight: bold;">window manager</span></div>
<p>by default this is metacity. basically this controls the top of the window, or the window bar, where the close maximize and minimize buttons are. it also controls the scrollbar, sometimes it will control text entry boxes, and text but sometimes it won't.</p>
<div style="text-align: center;"><span style="font-weight: bold;">compiz</span></div>
<p>compiz is a window manager. if you have heard of the cube, this is how it is done. in order to use compiz you are suppose to have a good graphics card like nvidia or ATI but I can run it pretty well with onboard graphics. i have pretty good onboard graphics though. some good videos of compiz in use can be found on youtube.</p>
<p><div style="text-align: center;"><span style="font-weight: bold;">emerald</span></div>
<p>window decorator. Makes the windows look pretty <img src='http://ospsp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
<div style="text-align: center;"><span style="font-weight: bold;">gfx</span></div>
<p>gfx simply is a shorter way to say graphics. im sure you already knew that, but im also sure there are a few people that didn't know.</p>
<div style="text-align: center;"><span style="font-weight: bold;">root</span>/<span style="font-weight: bold;">superuser</span></div>
<p>root, or superuser is basically an administrator, they can do anything on the computer.</p>
<div style="text-align: center;">~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~</div>
<p>if you want anything added post so below, or alternatively you can <mailto:"allan@ospsp.com">email me</mailto:"ubuntugam3r@gmail.com">.</p>
]]></content:encoded>
			<wfw:commentRss>http://ospsp.com/2010/02/guide-to-the-terminal-and-linux-lingo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

