<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/1.5.1-alpha" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>iter</title>
	<link>http://iter.blogsome.com</link>
	<description>Technology,Programming,Gadget and My Project : Wellcome to my world --iter--</description>
	<pubDate>Fri, 21 Sep 2007 04:41:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>en</language>

		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/iterproject" type="application/rss+xml" /><item>
		<title>Common UNIX commands</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/l_4YIg5oTOI/</link>
		<comments>http://iter.blogsome.com/2007/09/21/common-unix-commands/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 04:33:22 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Tutorial</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/21/common-unix-commands/</guid>
		<description><![CDATA[	This article is very useful to me and i am very very happy found it on the internet. I believe that there is more article or tutorial in the internet talking about &#8220;Common UNIX commands&#8221;. This tutorial is not very complete but it enough for me as a Linux beginner user.For more complete information on [...]]]></description>
			<content:encoded><![CDATA[	<p>This article is very useful to me and i am very very happy found it on the internet. I believe that there is more article or tutorial in the internet talking about &#8220;Common UNIX commands&#8221;. This tutorial is not very complete but it enough for me as a Linux beginner user.For more complete information on most command, you can refer to the online manual by typing man [command] at the UNIX prompt. Some commands you can type<strong> [command] –help</strong> or <strong>[command] -?</strong></p>
	<p>Note, when I specify something in brackets like so: [filename] that is to indicate that you type in a filename or whatever. Do not include the brackets in your command.</p>
	<p><strong>Navigating UNIX:</strong></p>
	<p>/ (refers to the root directory on the server)<br />
./ (the current directory that you are in)<br />
../ (parent directory of your current directory)</p>
	<p><strong>pwd (shows what you current directory is - giving the full path)</strong></p>
	<p>ls (lists all the files in your current directory)<br />
ls -al (lists filenames + information)<br />
ls -alR (lists filenames + information in all subdirectories)<br />
ls -alR | more (lists filenames + information in all subdirectories,<br />
pausing when the screen become full)<br />
ls -alR > result.txt (lists filenames + information in all subdirectories,<br />
and ouputs the results to a file instead of the screen)<br />
ls *.html (lists all files ending with .html)<br />
ls -al /home/usr/bob/ (lists files + info for /home/usr/bob)</p>
	<p><strong>cd (changes you to a new directory)</strong><br />
cd images<br />
cd / (changes you to the root directory)<br />
cd /home/usr/images<br />
cd .. (this goes back one directory)</p>
	<p><strong>Moving, Copying and Deleting Files:</strong></p>
	<p>mv [old name] [new name] (move/rename a file)</p>
	<p>cp [filename] [new filename] (copy a file)</p>
	<p>rm [filename] (delete a file)<br />
rm * (delete all files in your current directory)<br />
rm *.html (delete all files ending in .html<br />
in your current directory)</p>
	<p><strong>Creating, Moving, Copying and Deleting Directories:</strong></p>
	<p>mkdir [directoryname] (creates a new directory)</p>
	<p>ls -d */ (lists all directories within current directory)</p>
	<p>cp -r [directoryname] [new directoryname] (copy a directory and all<br />
files/directories in it)</p>
	<p>rmdir [directoryname] (remove a directory if it is empty)<br />
rm -r [directoryname] (remove a directory and all files in it)</p>
	<p><strong>Searching Files and Directories</strong></p>
	<p>find / -name [filename] -print (search the whole server for a file)<br />
find . -name [filename] -print (search for a file starting with<br />
the current directory)<br />
find / -name [directoryname] - type d -print<br />
(search the whole server for a direcory)</p>
	<p>grep [text] [filename] (search for text within a file)</p>
	<p>sed s/[oldtext]/[newtext]/g [filename] (searches file and replaces all occurances of [oldtext] with [newtext]</p>
	<p><strong>Viewing and Editing Files:</strong></p>
	<p>tail [filename] - view the tail end of a file, useful for checking the error log<br />
when debugging a script</p>
	<p>vi [filename] - opens a file using the vi text editor. you are a true geek if you use vi, however it’s fairly easy to use. (refer to the vi primer in this support forum)</p>
	<p><strong>Installing Software &#038; Scripts</strong></p>
	<p>For downloaded ‘tar’ scripts, to un-tar and un-gz<br />
tar -xvf [archive.tar] - extracts files from the tar archive ‘archive.tar’<br />
tar -zxvf [archive.tar.gz] extracts files from the tar archive ‘archive.tar.gz’</p>
	<p><strong>Getting Server Information</strong></p>
	<p>which perl displays the path to perl</p>
	<p>For viewing disk space.<br />
du to view disk usage on server<br />
quota to view your disk usage on server</p>
	<p>whoami - displays your current username</p>
	<p>uptime - displays how long the server has been up and some performance statistics</p>
	<p>ps - displays running processes</p>
	<p>top - (may be only available to admins) similar to windows task manager</p>
	<p>kill -9 [process Id] - terminiates a running process (out of control CGI, etc). The process Id can be obtained using “ps”</p>
	<p><strong>File and Directory Permissions</strong></p>
	<p>There are three levels of file permission: read, write and execute. In<br />
addition, there are three groups to which you can assign permission,<br />
The file owner, the user group, and everyone. The command chmod followed<br />
by three numbers is used to change permissons. The first number is<br />
the permission for the owner, the second for the group and the third<br />
for everyone. Here are how the levels of permission translate:</p>
	<p>0 = — (no permission)<br />
1 = –x (execute only)<br />
2 = -w- (write only)<br />
3 = -wx (write and execute)<br />
4 = r– (read only)<br />
5 = r-x (read and execute)<br />
6 = rw- (read and write)<br />
7 = rwx (read, write and execute)</p>
	<p>I prefer that the group always have permission of 0. This prevents other<br />
users on the server from browsing files via Telnet and FTP. Here are the<br />
most common file permissions used:</p>
	<p>chmod 604 [filename] (minimum permission for www HTML file)<br />
chmod 705 [directoryname] (minimum permission for www directories)<br />
chmod 705 [filename] (minimum permission for www scripts &#038; programs)<br />
chmod 606 [filename] (permission for datafiles used by www scripts)<br />
chmod 703 [directoryname] (write-only permission for public FTP uploading)</p>
	<p>Note that some systems use AFS filesystem and chmod does not behave as expected.You can sometimes identify AFS if the path that you are using begins like so /afs/path/to/files/ If your system uses AFS, then the following commands are used instead of chmod.</p>
	<p>fs setacl [directory] [group] [access] (set file permissions)<br />
fs listacl [directory] (list file permissions)</p>
	<p>example:</p>
	<p>fs setacl . httpd rliw (set read, lookup, insert, write to http for current dir)</p>
	<p><strong>Scheduling Tasks</strong></p>
	<p>You can schedule tasks to run automatically by using the UNIX cron command.<br />
To use this, you create a text file with cron instructions, then process<br />
this file. cron instructions are basically UNIX commands with extra info<br />
about the time that they will run.</p>
	<p>One important thing to note is that it is best to use full paths when<br />
creating your cron file. As an example, create a file called mycronfile<br />
and in it place one line:</p>
	<p>0 1 * * * cp /usr/www/file.txt /usr/www/backup.txt</p>
	<p>now at the command line, type the following:</p>
	<p>crontab mycronfile</p>
	<p>You have just scheduled an automated task! This task will run at the time<br />
specified until you decide you want to cancel it.<br />
There are six fields in this file. The first five represent the time that<br />
the job will run. The sixth field is a UNIX command that will run at the<br />
specified time. The above example will run every night at 1AM, at which<br />
time it will copy a file.</p>
	<p><strong>Here is how the fields break down:</strong></p>
	<p>Field 1 | Field 2 | Field 3 | Field 4 | Field 5<br />
Minutes | Hours | Day of Month | Month | Day of Week<br />
(0-59) | (0-23) | (1-31) | (1-12) | (0-6)</p>
	<p>You can enter a number in the field, a range of numbers, or an * to indicate all.<br />
Here are a few more examples. These examples use the ls command, which would be<br />
pretty useless. Note the time that it runs, though.</p>
	<p>0 1 * * 1-5 ls (this would run every Monday-Friday at 1am)<br />
0 1 * * 1,3,5 ls (this would run every Monday, Wednesday and Friday at 1am)<br />
10 2 1 * * ls (this would run at 2:10am on the first of every month)<br />
0 1 1 1 * ls (this would run at 1am on January 1 every year)</p>
	<p>If you have a more complicated command that you want to run, it is sometimes<br />
helpful to create a shell script and have that script run. You specify the<br />
shell script as you would any UNIX command. For example:</p>
	<p>0 1 * * * /usr/www/myscript</p>
	<p><strong>There are some other crontab switches that are useful:</strong></p>
	<p>crontab -l (lists your currently scheduled tasks)<br />
crontab -r (delete all currently scheduled tasks)<br />
crontab -e (directly edit your scheduled tasks)</p>
	<p>Credits<br />
——–</p>
	<p>Originally created by J. Hinkle<br />
Additional content provided by Dave Wojo<br />
Copy &#038; Paste by Iter.blogsome </p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/l_4YIg5oTOI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/21/common-unix-commands/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/21/common-unix-commands/</feedburner:origLink></item>
		<item>
		<title>Ubuntu USB-Serial port install procedure</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/JYhx_K_KpMw/</link>
		<comments>http://iter.blogsome.com/2007/09/19/ubuntu-usb-serial-port-install-procedure/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 07:54:43 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/19/ubuntu-usb-serial-port-install-procedure/</guid>
		<description><![CDATA[	Finally I had found this great tutorial how to install USB-Serial port after working on it for a month. Thanks GOD   
	here is the tutorial Ubuntu USB-Serial port install procedure. 
	If you are using the usb -> RS232 adapter, the serial drivers may need to be installed for the device to work properly. [...]]]></description>
			<content:encoded><![CDATA[	<p>Finally I had found this great tutorial how to install USB-Serial port after working on it for a month. Thanks GOD <img src='http://iter.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
	<p>here is the tutorial Ubuntu USB-Serial port install procedure. </p>
	<blockquote><p>If you are using the usb -> RS232 adapter, the serial drivers may need to be installed for the device to work properly. After plugging in the device, first check the hardware messages to see the device was detected:</p>
	<p>dmesg</p>
	<p>Torward the end of the messages, you should see this:</p>
	<p>usb 1-1: new full speed USB device using uhci_and address 2<br />
usb 1-1: configuration #1 chosen from 1 choice</p>
	<p>Now, we need to figure out the device vendor number and product number to tell the usbserial driver. For this we can use lsusb. The easiest way to find the information is to first unplug the device, then run lsusb:</p>
	<p>lsusb</p>
	<p>You will see a summary list of your USB devices on the system, I only have one:</p>
	<p>Bus 001 Device 001: ID 0000:0000</p>
	<p>Now, plug the device back in, and run lsusb again:</p>
	<p>lsusb</p>
	<p>Which returns the summary list again, but now showing the new USB device:</p>
	<p>Bus 001 Device 002: ID 4348:5523<br />
Bus 001 Device 001: ID 0000:0000</p>
	<p>Now, we can load up the driver for this device:</p>
	<p>sudo modprobe usbserial vendor=0x4348 product=0x5523</p>
	<p>Finally, check dmesg again to ensure it loaded properly.</p>
	<p>dmesg</p>
	<p>Near the end, you should see something like:</p>
	<p>usbserial_generic 1-1:1.0: generic converter detected<br />
usb 1-1: generic converter now attached to ttyUSB0<br />
usbcore: registered new interface driver usbserial_generic</p>
	<p>Congratulations, your link is up - in this example, the device can be used on /dev/ttyUSB0. As much fun as you had doing this, there is some chance you want to do this automatically in the future. Just add this line:</p>
	<p>usbserial vendor=0x4348 product=0x5523</p>
	<p>to /etc/modules with the vendor and product numbers you found. Now, you should have no problem using this device like a normal serial port.
</p></blockquote>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/JYhx_K_KpMw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/19/ubuntu-usb-serial-port-install-procedure/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/19/ubuntu-usb-serial-port-install-procedure/</feedburner:origLink></item>
		<item>
		<title>USB Penguin Mouse</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/CYBsd_Dp29s/</link>
		<comments>http://iter.blogsome.com/2007/09/18/usb-penguin-mouse/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 09:10:02 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Gadget</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/18/usb-penguin-mouse/</guid>
		<description><![CDATA[	
 This little penguin USB mouse cute right? It comes in blue, pink and black for only $15 each. Catch on at Crunch Gear
Image:gadgets.3yen.com
]]></description>
			<content:encoded><![CDATA[	<p><center><img src="http://gadgets.3yen.com/wp-content/images/penguin-mouse.jpg"/></center><br />
 This little penguin USB mouse cute right? It comes in blue, pink and black for only $15 each. Catch on at <a href="http://crunchgear.com/2007/09/07/the-usb-penguin-mouse-makes-you-hollaback/">Crunch Gear</a><br />
Image:<a href="http://gadgets.3yen.com/">gadgets.3yen.com</a></p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/CYBsd_Dp29s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/18/usb-penguin-mouse/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/18/usb-penguin-mouse/</feedburner:origLink></item>
		<item>
		<title>USB to Serial Adapter</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/9CK_T1T6KCE/</link>
		<comments>http://iter.blogsome.com/2007/09/18/usb-to-serial-adapter/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 08:08:06 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/18/usb-to-serial-adapter/</guid>
		<description><![CDATA[	
I still working how to use usb to rs232 converter in my laptop. I been trying installing Mandrake, Mandriva and Ubuntu just to make this converter works. Huh.. it not easy, until now.. i still got nothing. I&#8217;m always face a dead end wau while working in this usb to rs232 converter. Here is the [...]]]></description>
			<content:encoded><![CDATA[	<p><center><img src="http://images10.newegg.com/NeweggImage/ProductImageCompressAll200/12-149-115-02.jpg"/></center><br />
I still working how to use usb to rs232 converter in my laptop. I been trying installing Mandrake, Mandriva and Ubuntu just to make this converter works. Huh.. it not easy, until now.. i still got nothing. I&#8217;m always face a dead end wau while working in this usb to rs232 converter. Here is the artical that i had found in the internet and wanna share it to my blog reader. It also becom my references.  For your information, i just copy and paste this article from <a href="http://taosecurity.blogspot.com">http://taosecurity.blogspot.com</a>, so if you have any trouble, please do not ask me because it not my article. <img src='http://iter.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
	<blockquote><p>My new laptop doesn&#8217;t have a serial port. This is one of the great tragedies of modern laptops in my opinion. At least for situations where I want to connect to the serial port on a server or system with a serial port, I can use a USB to serial adapter like this adapter I bought at NewEgg. I tested it just now by connecting to the serial port on my old FreeBSD laptop.</p>
	<p>First I enabled the serial port in /etc/ttys</p>
	<p>#ttyd0   &#8220;/usr/libexec/getty std.9600&#8243;   dialup  off secure<br />
ttyd0   &#8220;/usr/libexec/getty std.9600&#8243;   dialup  on secure</p>
	<p>Then I restarted init to activate it.</p>
	<p># kill -HUP 1</p>
	<p>On my Ubuntu laptop I attached the USB to serial adapter to a null modem and a gender changer, then connected it to the FreeBSD laptop serial port.</p>
	<p>I installed cu(1) on Ubuntu</p>
	<p># apt-get install cu</p>
	<p>then checked dmesg output to ensure I had a device to which I could connect.</p>
	<p>[17213831.716000] usb 1-1: new full speed USB device using uhci_hcd and address 2<br />
[17213831.876000] usb 1-1: configuration #1 chosen from 1 choice<br />
[17213831.984000] usbcore: registered new driver usbserial<br />
[17213831.984000] drivers/usb/serial/usb-serial.c: USB Serial support registered for generic<br />
[17213831.984000] usbcore: registered new driver usbserial_generic<br />
[17213831.984000] drivers/usb/serial/usb-serial.c: USB Serial Driver core<br />
[17213831.988000] drivers/usb/serial/usb-serial.c: USB Serial support registered for pl2303<br />
[17213831.992000] pl2303 1-1:1.0: pl2303 converter detected<br />
[17213831.992000] usb 1-1: pl2303 converter now attached to ttyUSB0<br />
[17213831.992000] usbcore: registered new driver pl2303<br />
[17213831.992000] drivers/usb/serial/pl2303.c: Prolific PL2303 USB to serial adaptor driver</p>
	<p>Now that I saw /dev/ttyUSB0 was enabled, I connected to it.</p>
	<p>richard@neely:~$ cu -l /dev/ttyUSB0<br />
Connected.</p>
	<p>FreeBSD/i386 (orr.taosecurity.com) (ttyd0)</p>
	<p>login: richard<br />
Password:<br />
Last login: Fri Mar 16 11:57:49 on ttyv1<br />
Copyright (c) 1992-2006 The FreeBSD Project.<br />
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994<br />
        The Regents of the University of California. All rights reserved.</p>
	<p>FreeBSD 6.1-SECURITY (GENERIC) #0: Wed Feb 14 15:33:28 UTC 2007</p>
	<p>Welcome to FreeBSD!</p>
	<p>That&#8217;s it. If I needed to set a different speed I&#8217;d use the -s switch. For example, if 9600 above was 19200 in /etc/ttys, I&#8217;d use syntax like</p>
	<p>richard@neely:~$ cu -l /dev/ttyUSB0 -s 19200</p>
	<p>Now I know I can rely on this USB to serial adapter when I visit servers in the data center.</p></blockquote>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/9CK_T1T6KCE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/18/usb-to-serial-adapter/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/18/usb-to-serial-adapter/</feedburner:origLink></item>
		<item>
		<title>Add new users and Backup of a compact flash card on TS7200</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/EQ-OrhROGwc/</link>
		<comments>http://iter.blogsome.com/2007/09/17/add-new-users-and-backup-of-a-compact-flash-card-on-ts7200/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 04:54:10 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/17/add-new-users-and-backup-of-a-compact-flash-card-on-ts7200/</guid>
		<description><![CDATA[	
1.There is only root and guest user at the default setting, even though user can add new users.
	#adduser username
Enter new password: (type your user password)
Re-enter new password: (type your user password)
	
2. Backup of a compact flash card is done by imaging it, often referred to as ‘ghosting’. To restore ghosted images of the compact flash [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://www.glyphlab.com/stock_icons/img/4108.gif"/><br />
1.There is only root and guest user at the default setting, even though user can add new users.</p>
	<p><em>#adduser username<br />
Enter new password: (type your user password)<br />
Re-enter new password: (type your user password)</em></p>
	<p><img src="http://www.itassist.co.za/data-backup-icon.jpg"/><br />
2. Backup of a compact flash card is done by imaging it, often referred to as ‘ghosting’. To restore ghosted images of the compact flash card to a saved stated is done with the dd command.  ‘dd’ is a standard Linux tool installed on most desktop distributions. </p>
	<p><strong>To backup the CF card, followed command is used:</strong><br />
<em>dd if=/dev/sda of=my_backup_file<br />
<strong>‘if’ is the input file, and ‘of’ is the output file.</strong></em></p>
	<p><strong>To restore the CF card, the compact flash disk is specified as the output:</strong><br />
<em>dd if=my_backup_file of=/dev/sda</em></p>
	<p>*Purpose of doing this is to make a backup for the karnel. If something happened and the board OS corrupted, then user can use this image to restore the ts7200 OS.</p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/EQ-OrhROGwc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/17/add-new-users-and-backup-of-a-compact-flash-card-on-ts7200/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/17/add-new-users-and-backup-of-a-compact-flash-card-on-ts7200/</feedburner:origLink></item>
		<item>
		<title>Octave</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/vKY_KlkOZWo/</link>
		<comments>http://iter.blogsome.com/2007/09/14/octave/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 05:27:46 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/14/octave/</guid>
		<description><![CDATA[	
	it is a great for mac and linux user.. there is an application such as matlab.. it free &#8230; it give me a big smile..
	 GNU Octave is a high-level language, primarily intended for numerical computations. It is similar to the commerial product MATLAB. It gives you an command line environment where you can do [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://homepage.mac.com/persquare/octaveAT.jpg" width="400" height="400"/></p>
	<p>it is a great for mac and linux user.. there is an application such as matlab.. it free &#8230; it give me a big smile..</p>
	<p> GNU Octave is a high-level language, primarily intended for numerical computations. It is similar to the commerial product MATLAB. It gives you an command line environment where you can do calculation, solve equations, manipulate matrices and plot graphs. A list of commands can be put into a file and executed as an interpreted scripting language.</p>
	<p>A simple example of a Octave session<br />
octave:1> a = 2 * 3<br />
a = 6<br />
octave:2> b = [ 1 2 3 4]<br />
b =</p>
	<p>  1  2  3  4</p>
	<p>octave:3> c = a * b<br />
c =</p>
	<p>   6  12  18  24</p>
	<p>octave:4> exit</p>
	<p>source:<a href="https://help.ubuntu.com/community/Octave">ubuntu</a></p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/vKY_KlkOZWo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/14/octave/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/14/octave/</feedburner:origLink></item>
		<item>
		<title>TS7200 connection setting</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/uiDALneU8uI/</link>
		<comments>http://iter.blogsome.com/2007/09/14/ts7200-connection-setting/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 03:38:55 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/14/ts7200-connection-setting/</guid>
		<description><![CDATA[	Getting started
Just plug the wire to serial port on your PC and COM 1 for the SBC. Open terminal and switch to as root.
	$ su root 
	$ sudo su (for ubuntu user)
	Minicom is a text-based, serial communications program designed for Linux and distributed under the Free Software Foundation GNU Public License.  
	1.	By default, minicom [...]]]></description>
			<content:encoded><![CDATA[	<p>Getting started<br />
Just plug the wire to serial port on your PC and COM 1 for the SBC. Open terminal and switch to as root.</p>
	<p>$ su root </p>
	<p>$ sudo su (for ubuntu user)</p>
	<p>Minicom is a text-based, serial communications program designed for Linux and distributed under the Free Software Foundation GNU Public License.  </p>
	<p>1.	By default, minicom is not installed in Ubuntu, so user need to install it first.<br />
sudo apt-get install minicom<br />
2.	Find the name of your Serial Port<br />
dmesg | grep tty<br />
In the output look for something like &#8220;tty&#8221;. The output in my case is like this:<br />
$ dmesg | grep tty<br />
[ 17.341823] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A<br />
[ 17.342454] 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A<br />
This means the device correspond to serial port is ttyS0.<br />
3.	Configure minicom<br />
sudo minicom -s<br />
o	Use the keyboard keys to select the menu item Serial port setup.<br />
o	Enter A to change the Serial Device to /dev/ttyS0, and then enter E to change the line speed to 115200 8N1<br />
o	Using arrow keys, select Save setup as dfl<br />
4.	Select Exit from Minicom.<br />
5.	Next time, from the terminal user only need to run sudo minicom in order to access the TS7200 SBC. </p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/uiDALneU8uI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/14/ts7200-connection-setting/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/14/ts7200-connection-setting/</feedburner:origLink></item>
		<item>
		<title>ArkMicro Serial-to-USB converter using the ark3116 chipset</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/WxLS3wINtHI/</link>
		<comments>http://iter.blogsome.com/2007/09/09/arkmicro-serial-to-usb-converter-using-the-ark3116-chipset/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 09:17:33 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/09/arkmicro-serial-to-usb-converter-using-the-ark3116-chipset/</guid>
		<description><![CDATA[	I had found this tutorial here. I was very happy at the beginning but it seem not useful at the end. I had try step by step the command but still get an error.
root@cceng:~# sudo modprobe usbserial; sudo insmod ark3116
here is the error i get:
insmod: can&#8217;t read &#8216;ark3116&#8242;: Is a directory
em.. i was really hope [...]]]></description>
			<content:encoded><![CDATA[	<p>I had found this tutorial <a href="http://opensource.databrokers.net/ubuntu/ark3116/readme.html">here</a>. I was very happy at the beginning but it seem not useful at the end. I had try step by step the command but still get an error.<br />
<em>root@cceng:~# sudo modprobe usbserial; sudo insmod ark3116</em><br />
here is the error i get:<br />
<em>insmod: can&#8217;t read &#8216;ark3116&#8242;: Is a directory</em><br />
em.. i was really hope to make this usb to rs232 converter work well.. need more time to explore and learn. If any of your guys had found the solution please share the knowledge.. ok&#8230; <img src='http://iter.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
	<p>I was using Ubuntu 7.04   </p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/WxLS3wINtHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/09/arkmicro-serial-to-usb-converter-using-the-ark3116-chipset/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/09/arkmicro-serial-to-usb-converter-using-the-ark3116-chipset/</feedburner:origLink></item>
		<item>
		<title>Configuring a USB to Serial Converter</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/l1Sj7u8JukE/</link>
		<comments>http://iter.blogsome.com/2007/09/07/configuring-a-usb-to-serial-converter/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 11:18:49 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/07/configuring-a-usb-to-serial-converter/</guid>
		<description><![CDATA[	
Most of the newest laptop now didn&#8217;t have traditional RS232 serial ports. The alternative function is using a USB to Serial Port Converter. Yeh.. we got a solution here&#8230; but dun get it to easy because it not an easy as your think. You need to find the right software or driver to make sure [...]]]></description>
			<content:encoded><![CDATA[	<p><center><img src="http://www.cropscan.com/BelkinUSBSerialConverter.jpg" width="200" height="200"/></center><br />
Most of the newest laptop now didn&#8217;t have traditional RS232 serial ports. The alternative function is using a USB to Serial Port Converter. Yeh.. we got a solution here&#8230; but dun get it to easy because it not an easy as your think. You need to find the right software or driver to make sure the  converter run perfect. For me i use this converter to communicate with the ARM TS7200 SBC. We got an option here, we can use either Windows and Linux to  communicate with the board. <a href="http://www.cropscan.com/SerialUSB.html">Here</a> is the best website i had found but i dun know where to download the software for free.  <img src='http://iter.blogsome.com/wp-images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
	<p>For windows we can use Telix and in Linus as usually use minicom. Actually this two is same things because it communicate using serial communication. Minicom is a clone of the MS-DOS Telix communication program. It emulates ANSI and VT102 terminals, has a dialing directory and auto zmodem download. You can go <a href="http://packages.ubuntu.com/edgy/comm/minicom">here</a> for more information. </p>
	<p>My problem now is i cannot use the USB to Serial Port Converter. I already install the application from the CD given but still cannot use it. When i open up my HyperTerminal ( Start > All Programs >Accessories>Communication>HyperTerminal)  it show the connection using COM3 but I need COM1 to connect the ARM TS7200 SBC. I also had read some great tutorial on how we can use this USB to Serial Port Converter <a href="http://avr.auctionant.de/ark3116_linux_driver/">here</a>. Honestly I did not success install the USB and hopefully I can find another great tips to overcome my problem. <img src='http://iter.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Your suggestion and idea are most welcome.  </p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/l1Sj7u8JukE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/07/configuring-a-usb-to-serial-converter/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/07/configuring-a-usb-to-serial-converter/</feedburner:origLink></item>
		<item>
		<title>ARM Single Board Computer - TS 7200</title>
		<link>http://feedproxy.google.com/~r/iterproject/~3/m5B0j3Y2JVc/</link>
		<comments>http://iter.blogsome.com/2007/09/07/arm-single-board-computer-ts-7200/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 05:45:34 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>My Project</category>
		<guid isPermaLink="false">http://iter.blogsome.com/2007/09/07/arm-single-board-computer-ts-7200/</guid>
		<description><![CDATA[	
The TS7200, offered by Technologic Systems, is a StrongARM-based single-board computer. It is, to use a colloquialism, built like a brick outhouse. All the components are soldered on. There are no heatsinks-you can run this board in a closed box with no ventilation. It has a serial port and Ethernet port built on, requiring no [...]]]></description>
			<content:encoded><![CDATA[	<p><center><img src='/images/8177f6.png' alt='' /></center><br />
The TS7200, offered by Technologic Systems, is a StrongARM-based single-board computer. It is, to use a colloquialism, built like a brick outhouse. All the components are soldered on. There are no heatsinks-you can run this board in a closed box with no ventilation. It has a serial port and Ethernet port built on, requiring no external dongles or modules for these connections. It runs on 5 VDC, and requires only .375A, or roughly 2W to operate. In short, this board meets all our requirements. Figure above is the picture of this product. </p>
	<p>I have a project to done using this ARM SBC ts7200. The title of this project is EMBEDDED LINUX INSECT DATA COLLECTOR.  Actually i didn&#8217;t like the title a bit and it suppose to be INSECT   RECOGNITION USING TS7200 because my task is to build up a tools to recognize the insect. It a bit difficult for me to start doing this project because i am very new in Linux so i really welcome any idea from the readers what should i do. My achievement for now is i can communicate with the ts7200 board using minicom. In future i would like to interface the board with LCD and Keypad. As i said before i am new in Linux, so i need your suggestion where can i fine a tutorial to work on LCD and Kedpad. I do have a little bit on C programming <img src='http://iter.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . After finish this stage, i want to interface the board with webcam. Huh&#8230; it kinda difficult for me&#8230; so I am looking some great guidance and tutorial from you all. TQ <img src='http://iter.blogsome.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</p>
<img src="http://feeds.feedburner.com/~r/iterproject/~4/m5B0j3Y2JVc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iter.blogsome.com/2007/09/07/arm-single-board-computer-ts-7200/feed/</wfw:commentRss>
	<feedburner:origLink>http://iter.blogsome.com/2007/09/07/arm-single-board-computer-ts-7200/</feedburner:origLink></item>
	</channel>
</rss>
