<?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>tutorial.ind.ws</title>
	<atom:link href="http://tutorial.ind.ws/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorial.ind.ws</link>
	<description>Just Share</description>
	<lastBuildDate>Tue, 29 Nov 2011 21:20:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Format the new hard drive in linux</title>
		<link>http://tutorial.ind.ws/2011/11/29/format-the-new-hard-drive-in-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=format-the-new-hard-drive-in-linux</link>
		<comments>http://tutorial.ind.ws/2011/11/29/format-the-new-hard-drive-in-linux/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 21:19:02 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[hard drive]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=85</guid>
		<description><![CDATA[The first step that should be done is when you install a new hard drive in linux is to check whether the new hard disk that you attach your linux detected by what is not, for that execute the following command: [root@dodi data]# fdisk -l &#124; grep "Disk" Disk /dev/hdb: 41.1 GB, 41110142976 bytes The [...]]]></description>
			<content:encoded><![CDATA[<p>The first step that should be done is when you install a new hard drive in linux is to check whether the new hard disk that you attach your linux detected by what is not, for that execute the following command:<br />
<code><br />
[root@dodi data]# fdisk -l | grep "Disk"<br />
Disk /dev/hdb: 41.1 GB, 41110142976 bytes<br />
</code><span id="more-85"></span><br />
The data above shows that your hard disk space is detected by the hard drivefrom the computer you who read by the system that is equal to 40 Gb more.</p>
<p>After that, format your hard drive:<br />
<code><br />
mkfs.ext3 /dev/hdb<br />
</code><br />
After the successful format then create a new path to the new hard drive<br />
<code><br />
mkdir /baru<br />
</code><br />
Then mount your hard drive<br />
<code><br />
mount /dev/hdb /baru<br />
</code><br />
Check whether your disk unreadable in the system<br />
<code><br />
df -h<br />
</code><br />
And who execute the following command to insert a new partition function for the insert into the file<br />
<code><br />
/etc/fstab<br />
echo "/dev/hdb /baru ext3 defaults 0 0" &gt;&gt; /etc/fstab<br />
</code><br />
After that, please reboot your server to test the new fstab settings on your server.</p>
<p>&nbsp;</p>
<p>source : http://blog.abdullahbaadilla.com</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=85&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/29/format-the-new-hard-drive-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing and stopping processes</title>
		<link>http://tutorial.ind.ws/2011/11/28/viewing-and-stopping-processes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=viewing-and-stopping-processes</link>
		<comments>http://tutorial.ind.ws/2011/11/28/viewing-and-stopping-processes/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 18:58:26 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[processes]]></category>
		<category><![CDATA[stopping]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=81</guid>
		<description><![CDATA[Every program that runs on your system, including the shell itself and any commands that you might have issued, creates a process. You can get a list of all running process on your system by using the ps command. For exam- ple, entering the ps command on my system gives the following output: ps -ax [...]]]></description>
			<content:encoded><![CDATA[<p>Every program that runs on your system, including the shell itself and any commands that you might have issued, creates a process. You can get a list of all running process on your system by using the ps command. For exam- ple, entering the ps command on my system gives the following output: <span id="more-81"></span><br />
<code><br />
ps -ax<br />
PID TTY   STAT  TIME COMMAND<br />
1 ?      S    0:04 init [5]<br />
2 ?      SW   0:01 [keventd]<br />
3 ?      SW   0:00 [kapmd]<br />
4 ?      SWN  0:00 [ksoftirqd/0]<br />
6 ?      SW   0:00 [bdflush]<br />
<output shortened><br />
23580 ?    S    1:38 /usr/lib/openoffice/<br />
program/soffice.bin private:factory/swriter<br />
23766 pts/1 R   0:00 ps ax<br />
</code></p>
<p>Sometimes processes don’t behave nicely and can stop responding or working as you expected. You can use the output of the ps command to find the process that is misbehaving and stop it. Notice in the preceding listing the column labeled PID: In this column is the Process ID number of the process. For example, take a look at the next-to-last PID, number 23580. If you follow the line beginning with 23580 across to the command column, you can see that this is the process started by OpenOffice. The command column always shows the command that started the process. If OpenOffice were not respond- ing, I could force it to stop running by using the kill command as follows:<br />
<code><br />
kill -9 23580<br />
</code><br />
The -9 in the command is referred to as a signal. In some cases, a running program can catch a signal and not act on the command. By using the -9, you are forcing the program to end because the -9 signal cannot be caught by a running program.</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=81&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/28/viewing-and-stopping-processes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking disk space on Linux</title>
		<link>http://tutorial.ind.ws/2011/11/28/checking-disk-space-on-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=checking-disk-space-on-linux</link>
		<comments>http://tutorial.ind.ws/2011/11/28/checking-disk-space-on-linux/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 18:55:12 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=78</guid>
		<description><![CDATA[You can use two commands to find out how much space you have used on your file system. First, using the df command shows how much space is used and still available on all devices that are mounted. On my system, this command shows the following output. In this example, I use the -h option [...]]]></description>
			<content:encoded><![CDATA[<p>You can use two commands to find out how much space you have used on your file system. First, using the df command shows how much space is used and still available on all devices that are mounted. On my system, this command shows the following output. In this example, I use the -h option to force the output to display the space in megabytes and gigabytes rather than the standard output of 1-kilobyte blocks.<span id="more-78"></span><br />
<code><br />
#df -h<br />
Filesystem            Size  Used Avail Use% Mounted on<br />
/dev/hdb5              27G  5.1G   21G  20% /<br />
/dev/hdb1             198M  6.3M  182M   4% /boot<br />
/dev/hdb2             9.7G  4.0G  5.3G  43% /home<br />
none                  125M     0  125M   0% /dev/shm<br />
/dev/hda2             5.9G  3.4G  2.2G  61% /mnt/drive2<br />
</code><br />
Second, to find out how much disk space is used by a directory and its subdi- rectories, you can use the du command. In the following listing, I again use the -h option to have the output displayed in megabytes and gigabytes rather than 1-kilobyte blocks.<br />
<code><br />
du -h /home/tutor/website<br />
80K     website/html/cgi-bin/fileman<br />
8.0K    website/html/cgi-bin/log_files<br />
8.0K    website/html/cgi-bin/my_db<br />
44K     website/html/cgi-bin/my_html<br />
28K     website/html/cgi-bin/system_db<br />
60K     website/html/cgi-bin/system_db_html<br />
344K    website/html/cgi-bin<br />
512K    website/html/colonial<br />
24K     website/html/.xvpics<br />
904K    website/html<br />
8.0K    website/.xvpics<br />
1.1M    website<br />
</code></p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=78&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/28/checking-disk-space-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mounting and unmounting drives on Linux</title>
		<link>http://tutorial.ind.ws/2011/11/25/mounting-and-unmounting-drives-on-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mounting-and-unmounting-drives-on-linux</link>
		<comments>http://tutorial.ind.ws/2011/11/25/mounting-and-unmounting-drives-on-linux/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 01:37:49 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Drives]]></category>
		<category><![CDATA[Mounting]]></category>
		<category><![CDATA[Unmounting]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=74</guid>
		<description><![CDATA[Before you can use any storage device in Enterprise Linux, the device must first be made a part of the file system. This process is mounting; to attach the drive, you use the mount command. The basic syntax of the mount com- mand is mount devicename mountpoint The devicename identifies the device that you want [...]]]></description>
			<content:encoded><![CDATA[<p>Before you can use any storage device in Enterprise Linux, the device must first be made a part of the file system. This process is mounting; to attach the drive, you use the mount command. The basic syntax of the mount com- mand is</p>
<p><code>mount devicename mountpoint</code></p>
<p>The devicename identifies the device that you want to mount. All files that identify a device are located in the /dev directory. Thus, the system CD-ROM drive is typically identified as /dev/cdrom, and the system floppy drive is usually /dev/fd0.</p>
<p>You usually must be logged in as the root user to mount and unmount drives. <span id="more-74"></span></p>
<p>Mount point identifies the directory location on the file system where the device will be accessible. The top-level directory, /mnt, is the typical mount point for other devices, which are listed as subdirectories of /mnt. For exam- ple, if you want to access files from your CD-ROM drive, first mount the drive by entering the following command:</p>
<p><code>mount /dev/cdrom /mnt/cdrom</code></p>
<p>The preceding command mounts the cdrom device onto the file system at the directory /mnt/cdrom. To access files from the CD-ROM, all you need to do is to change into the /mnt/cdrom directory.</p>
<p>Although you can mount a device to any directory, I recommend using an empty directory as the mount point. Mounting a device on a directory that contains files will make those files inaccessible while the device is mounted.</p>
<p>To unmount a device from your file system, you use the umount command. For example, if you no longer need to access the CD-ROM drive, you can unmount the device by entering the following command:</p>
<p><code>umount /mnt/cdrom</code></p>
<p>This command tells the system to remove the mount point that was created at /mnt/cdrom.</p>
<p>Before you can remove a CD from the CD-ROM drive, you must unmount the device.</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=74&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/25/mounting-and-unmounting-drives-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Searching for files On Linux</title>
		<link>http://tutorial.ind.ws/2011/11/25/searching-for-files-on-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=searching-for-files-on-linux</link>
		<comments>http://tutorial.ind.ws/2011/11/25/searching-for-files-on-linux/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 01:34:36 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[Searching]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=71</guid>
		<description><![CDATA[Sometimes you might look for a file in your file system but can’t remember where it is. Fortunately, the shell provides a command that you can use to help you find the file. Easy to remember, the command is find. For example, if you want to find the file testfile but don’t remember where it [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you might look for a file in your file system but can’t remember<br />
where it is. Fortunately, the shell provides a command that you can use to<br />
help you find the file. Easy to remember, the command is find. For example,<br />
if you want to find the file testfile but don’t remember where it is, enter<br />
this command:</p>
<p><code>find / -name testfile -print</code></p>
<p>The basic syntax for the find command is</p>
<p><code>find path options filename options</code><br />
<span id="more-71"></span><br />
The preceding command begins searching in the system root directory for<br />
a file named testfile and displays the results of the search to the system<br />
display.</p>
<p>The preceding command begins searching in the system root directory for<br />
a file named testfile and displays the results of the search to the system<br />
display.<br />
The find command is very powerful and useful for finding files. It is also a<br />
complex command that lets you specify a large number of options for finding<br />
many types of files. Be sure to use the command man find to see the com-<br />
plete list of options for this command.</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=71&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/25/searching-for-files-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Files and Directories in /proc</title>
		<link>http://tutorial.ind.ws/2011/11/23/some-files-and-directories-in-proc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=some-files-and-directories-in-proc</link>
		<comments>http://tutorial.ind.ws/2011/11/23/some-files-and-directories-in-proc/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:41:04 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[proc]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=57</guid>
		<description><![CDATA[You can navigate the /proc file system just as you’d work with any other directories and files in Linux. Use the more or cat commands to view the contents of a file. /proc/acpi Information about Advanced Configuration and Power Interface (ACPI) — an industry-standard interface for configuration and power management on laptops, desktops, and servers [...]]]></description>
			<content:encoded><![CDATA[<p>You can navigate the /proc file system just as you’d work with any other<br />
directories and files in Linux. Use the more or cat commands to view the<br />
contents of a file.</p>
<p><strong>/proc/acpi</strong><br />
Information about Advanced Configuration and Power Interface<br />
(ACPI) — an industry-standard interface for configuration and<br />
power management on laptops, desktops, and servers</p>
<p><strong>/proc/bus</strong><br />
Directory with bus-specific information for each bus type, such<br />
as PCI</p>
<p><strong>/proc/cmdline</strong><br />
The command line used to start the Linux kernel (for example,<br />
ro root=LABEL=/ rhgb)<br />
<span id="more-57"></span><strong>/proc/cpuinfo</strong><br />
Information about the CPU (the microprocessor)</p>
<p><strong>/proc/devices</strong><br />
Available block and character devices in your system</p>
<p><strong>/proc/dma</strong><br />
Information about DMA (direct memory access) channels that<br />
are used</p>
<p><strong>/proc/driver/rtc</strong><br />
Information about the PC’s real-time clock (RTC)</p>
<p><strong>/proc/filesystems</strong><br />
List of supported file systems</p>
<p><strong>/proc/ide</strong><br />
Directory containing information about IDE devices</p>
<p><strong>/proc/interrupts</strong><br />
Information about interrupt request (IRQ) numbers and how they<br />
are used</p>
<p><strong>/proc/ioports</strong><br />
Information about input/output (I/O) port addresses and how<br />
they are used</p>
<p><strong>/proc/kcore</strong><br />
Image of the physical memory</p>
<p><strong>/proc/kmsg</strong><br />
Kernel messages</p>
<p><strong>/proc/loadavg</strong><br />
Load average (average number of processes waiting to run in<br />
the last 1, 5, and 15 minutes)</p>
<p><strong>/proc/locks</strong><br />
Current kernel locks (used to ensure that multiple processes<br />
don’t write to a file at the same time)</p>
<p><strong>/proc/meminfo</strong><br />
Information about physical memory and swap-space usage</p>
<p><strong>/proc/misc</strong><br />
Miscellaneous information</p>
<p><strong>/proc/modules</strong><br />
List of loaded driver modules</p>
<p><strong>/proc/mounts</strong><br />
List of mounted file systems</p>
<p><strong>/proc/net</strong><br />
Directory with many subdirectories that contain information<br />
about networking</p>
<p><strong>/proc/partitions</strong><br />
List of partitions known to the Linux kernel</p>
<p><strong>/proc/pci</strong><br />
Information about PCI devices found on the system</p>
<p><strong>/proc/scsi</strong><br />
Directory with information about SCSI devices found on the<br />
system (present only if you have a SCSI device)</p>
<p><strong>/proc/stat</strong><br />
Overall statistics about the system</p>
<p><strong>/proc/swaps</strong><br />
Information about the swap space and how much is used</p>
<p><strong>/proc/sys</strong><br />
Directory with information about the system. You can change<br />
kernel parameters by writing to files in this directory. (Using this<br />
method to tune system performance requires expertise to do<br />
properly.)</p>
<p><strong>/proc/uptime</strong><br />
Information about how long the system has been up</p>
<p><strong>/proc/version</strong><br />
Kernel version number</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=57&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/23/some-files-and-directories-in-proc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking disk performance and disk usage</title>
		<link>http://tutorial.ind.ws/2011/11/23/checking-disk-performance-and-disk-usage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=checking-disk-performance-and-disk-usage</link>
		<comments>http://tutorial.ind.ws/2011/11/23/checking-disk-performance-and-disk-usage/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:28:59 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[disk]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=55</guid>
		<description><![CDATA[Linux comes with the /sbin/hdparm program that you can use to control IDE or ATAPI hard drives that are common on most PCs. One feature of the hdparm program is that you can use the -t option to determine the rate at which data is read from the disk into a buffer in memory. For [...]]]></description>
			<content:encoded><![CDATA[<p>Linux comes with the /sbin/hdparm program that you can use to control<br />
IDE or ATAPI hard drives that are common on most PCs. One feature of the<br />
hdparm program is that you can use the -t option to determine the rate at<br />
which data is read from the disk into a buffer in memory. For example, here’s<br />
the result of typing /sbin/hdparm -t /dev/hda on my system:<br />
<code><br />
/dev/hda:<br />
Timing buffered disk reads: 178 MB in 3.03 seconds = 58.81 MB/sec<br />
</code><br />
<span id="more-55"></span><br />
The command requires the IDE drive’s device name (/dev/hda for the first<br />
hard drive and /dev/hdb for the second hard drive) as an argument. If you<br />
have an IDE hard drive, you can try this command to see how fast data is<br />
read from your system’s disk drive.<br />
To display the space available in the currently mounted file systems, use the<br />
df command. If you want a more readable output from df, type the following<br />
command:</p>
<p><code>df -h</code></p>
<p>Here’s a typical output from this command:<br />
<code><br />
Filesystem Size Used Avail Use% Mounted on<br />
/dev/hda5 7.1G 3.9G 2.9G 59% /<br />
/dev/hda3 99M 18M 77M 19% /boot<br />
none 125M 0 125M 0% /dev/shm<br />
/dev/scd0 2.6G 2.6G 0 100%<br />
/media/cdrecorder<br />
</code></p>
<p>As this example shows, the -h option causes the df command to show the<br />
sizes in gigabytes (G) and megabytes (M).<br />
To check the disk space being used by a specific directory, use the du command<br />
— you can specify the -h option to view the output in kilobytes (K)<br />
and megabytes (M), as shown in the following example:<br />
<code><br />
du -h /var/log<br />
</code><br />
Here’s a typical output of that command:<br />
<code><br />
152K /var/log/cups<br />
4.0K /var/log/vbox<br />
4.0K /var/log/httpd<br />
508K /var/log/gdm<br />
4.0K /var/log/samba<br />
8.0K /var/log/mail<br />
4.0K /var/log/news/OLD<br />
8.0K /var/log/news<br />
4.0K /var/log/squid<br />
2.2M /var/log<br />
</code><br />
The du command displays the disk space used by each directory, and the<br />
last line shows the total disk space used by that directory. If you want to see<br />
only the total space used by a directory, use the -s option. For example,<br />
type du -sh /home to see the space used by the /home directory. The command<br />
produces an output that looks like this:<br />
<code><br />
89M /home<br />
</code></p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=55&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/23/checking-disk-performance-and-disk-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the uptime command</title>
		<link>http://tutorial.ind.ws/2011/11/23/using-the-uptime-command/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-the-uptime-command</link>
		<comments>http://tutorial.ind.ws/2011/11/23/using-the-uptime-command/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:25:17 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[uptime]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=53</guid>
		<description><![CDATA[You can use the uptime command to get a summary of the system’s state. Just type the command like this: uptime It displays output similar to the following: 15:03:21 up 32 days, 57 min, 3 users, load average: 0.13, 0.23, 0.27 This output shows the current time, how long the system has been up, the [...]]]></description>
			<content:encoded><![CDATA[<p>You can use the uptime command to get a summary of the system’s state.<br />
Just type the command like this:<br />
<code>uptime</code><br />
It displays output similar to the following:<br />
<code>15:03:21 up 32 days, 57 min, 3 users, load average: 0.13, 0.23, 0.27</code><br />
This output shows the current time, how long the system has been up, the<br />
number of users, and (finally) the three load averages — the average<br />
number of processes that were ready to run in the past 1, 5, and 15 minutes.<br />
Load averages greater than 1 imply that many processes are competing for<br />
CPU time simultaneously.<br />
The load averages give you an indication of how busy the system is.</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=53&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/23/using-the-uptime-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the su &#8211; command</title>
		<link>http://tutorial.ind.ws/2011/11/23/using-the-su-command/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-the-su-command</link>
		<comments>http://tutorial.ind.ws/2011/11/23/using-the-su-command/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:22:22 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=50</guid>
		<description><![CDATA[If you’re logged in as a normal user, how do you do any system administration chores? Well, you become root for the time being. If you’re working at a terminal window or console, type su - Then enter the root password in response to the prompt. From this point on, you’re root. Do whatever you [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re logged in as a normal user, how do you do any system administration<br />
chores? Well, you become root for the time being. If you’re working at<br />
a terminal window or console, type<br />
<code>su -</code><br />
Then enter the root password in response to the prompt. From this point<br />
on, you’re root. Do whatever you have to do. To return to your usual self,<br />
type<br />
<code>exit</code><br />
That’s it! It’s that easy</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=50&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/23/using-the-su-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wavelength and antennas</title>
		<link>http://tutorial.ind.ws/2011/11/23/wavelength-and-antennas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wavelength-and-antennas</link>
		<comments>http://tutorial.ind.ws/2011/11/23/wavelength-and-antennas/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 13:47:37 +0000</pubDate>
		<dc:creator>acul</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[antennas]]></category>
		<category><![CDATA[wavelength]]></category>

		<guid isPermaLink="false">http://tutorial.ind.ws/?p=32</guid>
		<description><![CDATA[A term related to frequency is wavelength. Radio waves travel at the speed of light. The term wavelength refers to how far the radio signal travels with each cycle. For example, because the speed of light is roughly 300,000,000 meters per second, the wavelength of a 1-Hz radio wave is about 300,000,000 meters. The wavelength [...]]]></description>
			<content:encoded><![CDATA[<p>A term related to frequency is wavelength. Radio waves travel at the speed of<br />
light. The term wavelength refers to how far the radio signal travels with<br />
each cycle. For example, because the speed of light is roughly 300,000,000<br />
meters per second, the wavelength of a 1-Hz radio wave is about 300,000,000<br />
meters. The wavelength of a 2-Hz signal is about 150,000,000 meters.<br />
As you can see, the wavelength decreases as the frequency increases. The<br />
wavelength of a typical AM radio station broadcasting at 580 KHz is about<br />
500 meters. For a TV station broadcasting at 100 MHz, it’s about 3 meters.<br />
For a wireless network broadcasting at 2.4 GHz, the wavelength is about<br />
12 centimeters.<span id="more-32"></span><br />
It turns out that the shorter the wavelength, the smaller the antenna needs<br />
to be in order to adequately receive the signal. As a result, higher frequency<br />
transmissions need smaller antennas. You may have noticed that AM radio<br />
stations usually have huge antennas mounted on top of tall towers, but cell<br />
phone transmitters are much smaller and their towers aren’t nearly as tall.<br />
That’s because cell phones operate on a higher frequency than do AM radio<br />
stations. So who decides what type of radio gets to use specific frequencies?<br />
That’s where spectrums and the FCC come in.</p>
<img src="http://tutorial.ind.ws/?ak_action=api_record_view&id=32&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://tutorial.ind.ws/2011/11/23/wavelength-and-antennas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.112 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2011-12-29 15:10:51 -->

