<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.3" -->
<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/"
	>

<channel>
	<title>Technotes for Sankar &#038; Kanmani</title>
	<link>http://technotes.aarthis.com</link>
	<description>Technical reference ....</description>
	<pubDate>Mon, 31 Dec 2007 03:43:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>
	<language>en</language>
			<item>
		<title>Solaris cool command line notes</title>
		<link>http://technotes.aarthis.com/?p=37</link>
		<comments>http://technotes.aarthis.com/?p=37#comments</comments>
		<pubDate>Mon, 31 Dec 2007 03:43:32 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=37</guid>
		<description><![CDATA[16. cat -v -t -e [file]
/* Show non-printing characters */ 2006-06-20
17. dumpadm -d swap
/* Configure swap device as dump device */ 2005-02-16
18. ld -l /* Check if you have a particular library */ 2005-03-30
19. truss -f -p /* Using multiple windows, this can be used to trace setuid/setgid programs */ 2005-03-22
20. truss executable
/* Trace doing [...]]]></description>
			<content:encoded><![CDATA[<p>16. cat -v -t -e [file]<br />
/* Show non-printing characters */ 2006-06-20<br />
17. dumpadm -d swap<br />
/* Configure swap device as dump device */ 2005-02-16<br />
18. ld -l /* Check if you have a particular library */ 2005-03-30<br />
19. truss -f -p /* Using multiple windows, this can be used to trace setuid/setgid programs */ 2005-03-22<br />
20. truss executable<br />
/* Trace doing of given command ( useful debugging ) */ 2005-03-22<br />
Back to topDisk Commands<br />
21. /bin/mount -F hsfs -o ro /dev/sr0 /cdrom<br />
/* Mount an ISO 9660 CDROM */ 2005-03-22<br />
22. /usr/bin/iostat -E<br />
/* Command to display drives statistics */ 2005-03-22<br />
23. du -ad /var | sort -nr<br />
/* Report the the disk used in /var in reverse order */ 2005-03-22<br />
24. du -k .<br />
/* Report disk usage in Kilobytes */ 2005-03-22<br />
25. du -sk * | sort -nr | head<br />
/* Shows the top ten largest files/directories */ 2005-01-19<br />
26. du -sk *|sort -k1,1n<br />
/* Reports total disk space used in Kilobytes in present directory */ 2005-03-22<br />
27. du -sk .<br />
/* Report total disk usage in Kilobytes */ 2005-03-22<br />
28. fdformat -d -U<br />
/* Format diskette */ 2005-03-22<br />
29. newfs -Nv /dev/rdsk/c0t0d0s1<br />
/* To view the superfblocks available */ 2005-03-22<br />
30. One-liner to copy a partition table<br />
/* prtvtoc /dev/dsk/c1t2d0s2 | fmthard -s - /dev/rdsk/c1t3d0s2 */ 2007-05-30<br />
31. prtvtoc /dev/rdsk/c0t0d0s2<br />
/* Disk geometry and partitioning info */ 2005-03-22<br />
32. prtvtoc /dev/rdsk/c0t0d0s2 | fmthard -s - /dev/rdsk/c0t1d0s2<br />
/* Copy partition table from one disk to another */ 2005-12-16<br />
33. quot -af<br />
/* How much space is used by users in kilobytes */ 2005-03-22<br />
34. volrmmount -i floppy<br />
/* Mount a floppy or other media easily by its nickname. */ 2005-08-03<br />
Back to top</p>
<p>Driver Parameters<br />
35. ndd /dev/ip ip_forwarding<br />
/* Show the ip_forwarding variable in the kernel */ 2005-03-22<br />
36. ndd /dev/ip ip_forwarding 1<br />
/* Set the ip_forwarding variable in the kernel */ 2005-03-22<br />
37. ndd /dev/ip \?<br />
/* Show all IP variables set in the kernel */ 2005-03-22<br />
Back to top</p>
<p>File Manipulation<br />
38. dos2unix | -ascii<br />
/* Converts DOS file formats to Unix */ 2005-03-22<br />
39. fold -w 180<br />
/* To break lines to have maximum char */ 2005-07-26<br />
40. split [-linecount] [file]<br />
/* Split files into pieces */ 2005-03-22<br />
41. [vi] : %s/existing/new/g<br />
/* Search and Replace text in vi */ 2005-03-22<br />
42. [vi] :set list<br />
/* Show non-printing characters in vi */ 2006-04-10<br />
43. [vi] :set nu<br />
/* Set line numbers in vi */ 2005-03-22<br />
44. [vi] :set ts=[num]<br />
/* Set tab stops in vi */ 2005-03-22<br />
Back to top</p>
<p>File System<br />
45. /sbin/uadmin x x<br />
/* Syncs File Systems and Reboots systems fast */ 2005-03-22<br />
46. awk ‘ END {print NR}’ file_name<br />
/* Display the Number of lines in a file */ 2005-08-03<br />
47. cat /dev/null > filename<br />
/* Zero’s out the file without breaking pipe */ 2005-03-22<br />
48. dd if=/dev/rdsk/… of=/dev/rdsk/… bs=4096<br />
/* Make a mirror image of your boot disk */ 2005-03-22<br />
49. df -k | grep dg| awk ‘{print $6}’ |xargs -n 1 umount<br />
/* Unmount all file systems in disk group dg */ 2005-03-22<br />
50. fsck -F ufs -o b=97472 /dev/rdsk/c0t0d0s0<br />
/* Check and repair a UFS filesystem on c0t0d0s0, using an alternate superblock */ 2005-03-22<br />
51. fsck -F ufs -y /dev/rdsk/c0t0d0s0<br />
/* Check a UFS filesystem on c0t0d0s0, repair any problems without prompting. */ 2005-03-22<br />
52. fsck -F ufs /dev/rdsk/c0t0d0s0<br />
/* Check a UFS filesystem on c0t0d0s0 */ 2005-03-22<br />
53. gzip -d -c tarball.tgz | (cd /[dir];tar xf - ) &#038;<br />
/* Unpacking tarballs to diff location */ 2005-03-22<br />
54. gzip -dc file1.tar.gz | tar xf -<br />
/* Unpack .tar.gz files in place */ 2005-03-22<br />
55. ln [-fhns]<br />
/* Creating hard links and soft links */ 2005-03-22<br />
56. ls -al | awk ‘$3 == “oracle” || $3 == “root” {print $9}’<br />
/* List all file names by testing owner */ 2005-08-03<br />
57. ls -l | sort +4n<br />
/* List files by size */ 2005-08-09<br />
58. ls -la | awk ‘{ print $5,” “,$9 }’ | sort -rn<br />
/* File sizes of current directory */ 2005-03-22<br />
59. ls -lR | awk ‘{total +=$5};END {print “Total size: ” total/1024/1024 “MB” }’<br />
/* Recursive directory size calculations in MB */ 2005-08-03<br />
60. mkisofs -l -L -r -o [image-name].iso [directory]<br />
/* Create an ISO image of a directory */ 2006-03-06<br />
61. mount -F ufs -o rw,remount /<br />
/* Used to remount root to make it writeable */ 2005-03-22<br />
62. mount -o remount,logging /spare<br />
/* Re-mount the ro file system rw and turn on ufs logging */ 2005-03-22<br />
63. mount DOS fdisk partition from Solaris<br />
/* mount -f pcfs /dev/dsk/c0d0p1 /export/dos */ 2005-03-22<br />
64. mv [filename]{,.new_suffix}<br />
/* Renaming file */ 2006-06-20<br />
65. pax -rw . /newdir<br />
/* Efficient alternative for copying directories */ 2005-03-22<br />
66. prtvtoc /dev/rdsk/c0t0d0s2 | fmthard -s - /dev/rdsk/c0t1d0s2<br />
/* Cloning Partitiontables */ 2005-03-22<br />
67. rpm -q –queryformat ‘%{INSTALLPREFIX}\n’ [packagename]<br />
/* [Linux] Locate binaries */ 2005-08-16<br />
68. tar cf - . | (cd /newdir ; tar xf -)<br />
/* Recursively copy files and their permissions */ 2005-03-22<br />
69. tar cvf filename.tar<br />
/* Create a tape (tar) archive */ 2005-03-22<br />
70. tar xvf filename.tar<br />
/* Extract a tape (tar) archive */ 2005-03-22<br />
71. X=$(wc -l < filename); echo $X<br />
/* Count number of lines in a file into a variable (ksh) */ 2005-02-06<br />
72. zcat /* Extract the patch_file that is a compressed tar file */ 2005-03-22<br />
73. zcat [cpio file] | cpio -itmv<br />
/* Show the contents of a compressed cpio */ 2005-08-17<br />
Back to top</p>
<p>File Transfer<br />
74. find . -depth | cpio -pdmv /path/tobe/copied/to<br />
/* Fast alternative to cp -pr */ 2005-03-22<br />
75. find . -follow | cpio -pdumL /path/tobe/copied/to<br />
/* Copy with symbolic links to be followed */ 2006-02-16<br />
76. get filename.suffix |"tar xf -"<br />
/* Undocumented Feature of FTP */ 2005-03-22<br />
77. Move any file(s) without actually touching them<br />
/* ssh cd /some/directory \&#038;\&#038; tar cf - | ssh cd /some/direstory \&#038;\&#038; tar xvf - */ 2005-12-01<br />
78. put "| tar cf - ." filename.tar<br />
/* Undocumented Feature of FTP */ 2005-03-22<br />
79. sendport<br />
/* FTP command for transferring large numbers of files within the same control session */ 2005-03-22<br />
Back to top</p>
<p>General<br />
80. /bin/printf '%d\n' '0x‘<br />
/* Converts hexadecimal number to decimal. */ 2005-03-30<br />
81. /usr/bin/catman -w<br />
/* Create windex databases for man page directories */ 2005-03-22<br />
82. echo ‘obase=16;255′ | bc<br />
/* Simple way to convert decimal to hex */ 2007-01-31<br />
83. FQ_FILENAME=; echo ${FQ_FILENAME%/*}<br />
/* Extract directory from fully-qualified file name. */ 2005-03-22<br />
84. mailx -H -u<br />
/* List out mail headers for specified user */ 2005-03-22<br />
85. ps -ef | grep -i $@<br />
/* Access common commands quicker */ 2006-02-16<br />
86. set filec<br />
/* Set file-completion for csh */ 2005-03-22<br />
87. uuencode [filename] [filename] | mailx -s “Subject” [user to mail]<br />
/* Send files as attachments */ 2005-03-22<br />
88. xauth -f /home/${LOGNAME} extract - ${DISPLAY} | xauth merge -<br />
/* Allow root to xdisplay after su */ 2006-09-12<br />
Back to top</p>
<p>Hardware<br />
89. cfgadm<br />
/* Verify reconfigurable hardware resources */ 2005-03-22<br />
90. m64config -depth 8|24<br />
/* Sets the screen depth of your M64 graphics accelerator */ 2005-03-22<br />
91. m64config -prconf<br />
/* Print M64 hardware configuration */ 2005-03-22<br />
92. m64config -res ‘video_mode’<br />
/* Change the resolution of your M64 graphics accelerator */ 2005-03-22<br />
93. prtpicl -v | grep sync-speed<br />
/* Discover SCSI sync speed */ 2005-04-26<br />
Back to top</p>
<p>Kernel<br />
94. /usr/sbin/modinfo<br />
/* Display kernel module information */ 2005-03-22<br />
95. /usr/sbin/modload<br />
/* Load a kernel module */ 2005-03-22<br />
96. /usr/sbin/modunload -i<br />
/* Unload a kernel module */ 2005-03-22<br />
97. /usr/sbin/sysdef<br />
/* Show system kernal tunable details */ 2005-03-22<br />
98. nm -x /dev/ksyms | grep OBJ | more<br />
/* Tuneable kernel parameters */ 2005-03-22<br />
Back to top</p>
<p>Memory<br />
99. pagesize -a<br />
/* Available page sizes for Solaris 9 */ 2005-06-08<br />
100. prtconf | grep Mem<br />
/* Display Memory Size of the local machine. */ 2005-03-22<br />
Back to top</p>
<p>Network Information<br />
101. arp -a<br />
/* Ethernet address arp table */ 2005-03-22<br />
102. arp -d myhost<br />
/* Delete an ethernet address arp table entry */ 2005-03-22<br />
103. lsof -iTCP@10.20.2.9<br />
/* Display open files for internet address */ 2006-04-03<br />
104. named-xfer -z qantas.com.au -f /tmp/allip<br />
/* Get All IP Addresses On A DNS Server */ 2007-02-21<br />
105. ndd /dev/arp arp_cache_report<br />
/* Prints ARP table in cache with IP and MAC address */ 2005-03-22<br />
106. netstat -a | grep EST | wc -l<br />
/* Displays number active established connections to the localhost */ 2005-03-22<br />
107. netstat -a | more<br />
/* Show the state of all the sockets on a machine */ 2005-03-22<br />
108. netstat -i<br />
/* Show the state of the interfaces used for TCP/IP traffice */ 2005-03-22<br />
109. netstat -k hme0<br />
/* Undocumented netstat command */ 2005-03-22<br />
110. netstat -np<br />
/* Similar to arp -a without name resolution */ 2005-03-22<br />
111. netstat -r<br />
/* Show the state of the network routing table for TCP/IP traffic */ 2005-03-22<br />
112. netstat -rn<br />
/* Displays routing information but bypasses hostname lookup. */ 2005-03-22<br />
113. snoop -S -ta [machine]<br />
/* Snoop for network packets and get size and time stamp entries. */ 2005-11-04<br />
114. traceroute<br />
/* Follow the route to the ipaddress */ 2005-03-22<br />
Back to top</p>
<p>Network Tuning<br />
115. /sbin/ifconfig hme0:1 inet 10.210.xx.xxx netmask 255.255.0.0 broadcast 10.210.xxx.xxx<br />
/* Virtual Interfaces */ 2005-03-22<br />
116. /sbin/ifconfig hme0:1 up<br />
/* Bring virtual interface up */ 2005-03-22<br />
117. /usr/sbin/ndd -set /dev/hme adv_100fdx_cap 1<br />
/* Nailling to 100Mbps */ 2005-03-22<br />
118. ifconfig eth0 10.1.1.1 netmask 255.255.255.255<br />
/* Add an Interface */ 2005-03-22<br />
119. ifconfig eth0 mtu 1500<br />
/* Change MTU of interface */ 2005-03-22<br />
120. ndd -set /dev/ip ip_addrs_per_if 1-8192<br />
/* To set more than 256 virtual ip addresses. */ 2005-03-22<br />
121. ndd -set /dev/tcp tcp_recv_hiwat 65535<br />
/* Increase TCP-receivebuffers on Sol2.5.1 systems with 100BaseTx */ 2005-03-22<br />
122. ndd -set /dev/tcp tcp_xmit_hiwat 65535<br />
/* Increase TCP-transmitbuffers on Sol2.5.1 systems with 100BaseTx */ 2005-03-22<br />
Back to top</p>
<p>Processes<br />
123. /usr/proc/bin/ptree /* Print the parent/child process ‘tree’ of a process */ 2005-03-22<br />
124. /usr/proc/bin/pwdx /* Print the working directory of a process */ 2005-03-22<br />
125. /usr/ucb/ps -aux | more<br />
/* Displays CPU % usage for each process in ascending order */ 2005-03-22<br />
126. /usr/ucb/ps -auxww | grep /* Gives the full listing of the process (long listing) */ 2005-03-22<br />
127. coreadm -i core.%f.%p<br />
/* Append program name and process id to core file names */ 2007-04-11<br />
128. fuser -uc /var<br />
/* Processes that are running from /var */ 2005-03-22<br />
129. ipcs<br />
/* Report inter-process communication facilities status */ 2005-03-28<br />
130. kill -HUP `ps -ef | grep [p]roccess | awk ‘{print $2}’`<br />
/* HUP any related process in one step */ 2005-03-22<br />
131. lsof -i TCP:25<br />
/* Mapping port with process */ 2006-02-22<br />
132. pfiles /* Shows processes’ current open files */ 2005-03-22<br />
133. pkill -n<br />
/* Kill a process by name */ 2005-03-22<br />
134. prstat -a<br />
/* An alternative for top command */ 2005-03-22<br />
135. ps -edf -o pcpu,pid,user,args<br />
/* Nicely formatted ‘ps’ */ 2006-03-06<br />
136. ps -ef | grep -i | awk ‘{ print $2 }’<br />
/* Creates list of running PID by */ 2005-03-22<br />
137. ps -ef | grep -i | awk ‘{ print $2 }’<br />
/* Creates list of running PID by */ 2005-03-22<br />
138. ps -ef | grep | grep -v grep | cut -c 10-15 | xargs kill -9<br />
/* Find and kill all instances of a given process */ 2005-12-01<br />
139. ps -ef | more<br />
/* Show all processes running */ 2005-03-22<br />
140. ps -ef|grep -v “0:00″|more<br />
/* Gives you a list of any process with CPU time more than 0:00 */ 2005-03-22<br />
141. ps -eo pid,args<br />
/* List processes in simplified format */ 2005-03-22<br />
142. ps -fu oracle|grep pmon<br />
/* See which instances of Oracle are running */ 2005-03-22<br />
143. top -b 1<br />
/* Returns the process utilizing the most cpu and quits */ 2005-03-22<br />
Back to top</p>
<p>Resource Management<br />
144. /usr/bin/ldd [filename]<br />
/* List the dynamic dependencies of executable files */ 2005-03-22<br />
145. /usr/proc/bin/pmap pid<br />
/* Report address space map a process occupies */ 2005-03-22<br />
Back to top</p>
<p>Route Configuration<br />
146. route add net 128.50.0.0 128.50.1.6 1<br />
/* Add a route to the routing table */ 2005-03-22<br />
147. route change 128.50.0.0 128.50.1.5<br />
/* Changes the destination address for a route */ 2005-03-22<br />
148. route delete net 128.50.0.0 128.50.1.6<br />
/* Delete a route from the routing table */ 2005-03-22<br />
149. route flush<br />
/* Flush the routing table, which will remove all entries */ 2005-03-22<br />
150. route get [hostname]<br />
/* Which interface will be used to contact hostname */ 2005-03-22<br />
151. route monitor<br />
/* Monitor routing table lookup misses and changes */ 2005-03-22<br />
Back to top</p>
<p>Searching Items<br />
152. egrep “patterna|patternb”<br />
/* Search for multiple patterns within the same file */ 2005-03-22<br />
153. find -name “” -exec rm -rf {} \;<br />
/* Recursively finds files by name and automatically removes them */ 2005-03-22<br />
154. find . -type f -print | xargs grep -i [PATTERN]<br />
/* Recursive grep on files */ 2005-03-22<br />
155. find . ! -mtime - | /usr/bin/xargs rm -rf<br />
/* Finds and removes files older than specified */ 2005-03-22<br />
156. find . -exec egrep -li “str” {} \;<br />
/* Find a string in files starting cwd */ 2005-03-22<br />
157. find . -mtime -1 -type f<br />
/* Find recently modified files */ 2005-03-22<br />
158. find . -type f -exec grep “” {} \; -print<br />
/* Find files (and content) containing within directory tree */ 2005-03-22<br />
159. find . -type f -exec grep -l “” {} \;<br />
/* Find files (and content) containing within directory tree */ 2005-03-22<br />
160. find ./ \! -type f -exec ls -l {} \;|grep -v ‘^[l|p|s|-]’|grep -v ‘total’ | wc -l<br />
/* Find number of directories under the current directory */ 2005-02-06<br />
161. find / -fstype nfs -prune -o fstype autofs -prune -o -name filename -print<br />
/* find without traversing NFS mounted file systems */ 2005-03-22<br />
162. find / -mtime <# of days><br />
/* Find files modified during the past # of days */ 2005-03-22<br />
163. find / -perm -2 -a ! -type l<br />
/* Find files writable by ‘others’ */ 2005-04-12<br />
164. find / -type f |xargs ls -s | sort -rn |more<br />
/* List files taking up the most system space */ 2005-07-26<br />
165. find / -user<br />
/* Find all files owned by */ 2005-03-22<br />
166. find / | grep [file mask]<br />
/* Fast way to search for files */ 2005-03-22<br />
167. find /proc/*/fd -links 0 -type f -size +2000 -ls<br />
/* Find large files moved or deleted and held open by a process */ 2005-03-22<br />
168. grep /var/sadm/install/contents| awk ‘{ print $1 ‘ ‘ $10 }’<br />
/* Find which package contains a particular file */ 2005-02-06<br />
169. ls -lR | grep<br />
/* Fast alternative to find. */ 2005-03-22<br />
170. pkgchk -l -p /absolute/path/todir<br />
/* Which package does this file belong to? */ 2007-02-21<br />
Back to top</p>
<p>Security<br />
171. crypt abc &#038;&#038; rm abc.cr<br />
/* Decrypting a file that has been encrypted */ 2005-12-01<br />
172. crypt abc.cr &#038;&#038; rm abc<br />
/* File encryption with crypt */ 2005-12-01<br />
173. echo ‘Please go away’ > /etc/nologin<br />
/* Stops users logging in */ 2005-03-22<br />
174. find / -perm -0777 -type d -ls<br />
/* Find all your writable directories */ 2005-03-22<br />
175. find / -type f -perm -2000 -print<br />
/* Find all SGID files */ 2005-03-22<br />
176. find / -type f -perm -4000 -print<br />
/* find all SUID files */ 2005-03-22<br />
177. getpwenc [encryption scheme] password<br />
/* Genrate passwords for LDAP Using ‘getpwenc’ Utility */ 2007-06-05<br />
178. trap ‘exit 0′ 1 2 3 9 15<br />
/* Trap specific signals and exit */ 2005-02-06<br />
179. vi -x [filename]<br />
/* Encrypt a file with vi editor */ 2006-04-19<br />
Back to top</p>
<p>Setting Term Options<br />
180. stty erase ^?<br />
/* Set the delete key to delete a character */ 2005-03-22<br />
181. stty erase ^H<br />
/* Set the backspace to delete a character */ 2005-03-22<br />
182. stty sane<br />
/* Reset terminal after viewing a binary file. */ 2005-03-22<br />
183. tput rmacs<br />
/* Reset to standard char set */ 2005-03-22<br />
Back to top</p>
<p>Snoop<br />
184. snoop -d pcelx0<br />
/* Watch all the packets on a device */ 2005-03-22<br />
185. snoop -i /tmp/mylog -o /tmp/newlog host1<br />
/* Filter out all the host1 packets and write them to a new logfile */ 2005-03-22<br />
186. snoop -i /tmp/mylog -v -p101<br />
/* Show verbose info on packet number 101 in the logfile */ 2005-03-22<br />
187. snoop -i /tmp/mylog host1 host2<br />
/* View packets from a logfile between hosts1 and host2 */ 2005-03-22<br />
188. snoop -o /tmp/mylog pcelx0<br />
/* Save all the packets from a device to a logfile */ 2005-03-22<br />
189. snoop -s 120<br />
/* Return the first 120 bytes in the packet header */ 2005-03-22<br />
190. snoop -v arp<br />
/* Capture arp broadcasts on your network */ 2005-03-22<br />
191. snoop port [port-number]<br />
/* Monitor particular port for traffic */ 2006-04-10<br />
Back to top</p>
<p>Swap Files<br />
192. mkfile -nv 10m /export/disk1/myswap<br />
/* Makes an empty 10 Megabyte swapfile in /export/disk */ 2005-03-22<br />
193. mkfile -v 10m /export/disk1/myswap<br />
/* Makes a 10 Megabyte swapfile in /export/disk */ 2005-03-22<br />
Back to top</p>
<p>Swap Space<br />
194. swap -a /export/disk1/swapfile<br />
/* Add a swap file */ 2005-03-22<br />
195. swap -d /dev/dsk/c0t0d0s4<br />
/* Delete a swap device */ 2005-03-22<br />
196. swap -l<br />
/* List the current swap devices */ 2005-03-22<br />
197. swap -s<br />
/* List the amount of swap space available */ 2005-03-22<br />
Back to top</p>
<p>System Configuration<br />
198. /usr/sbin/eeprom auto-boot? false<br />
/* Changes eeprom autoboot? setting without going to Ok prompt */ 2005-03-22<br />
199. /usr/sbin/eeprom diag-switch? true<br />
/* Set the system to perform diagnostics on the next reboot. */ 2005-03-22<br />
200. /usr/sbin/eeprom local-mac-address?=true<br />
/* Multiple Port Network Card Setting */ 2005-03-22<br />
201. /usr/sbin/grpck<br />
/* Check /etc/group file syntax */ 2005-03-22<br />
202. /usr/sbin/pwck<br />
/* Check /etc/passwd file syntax */ 2005-03-22<br />
203. /usr/sbin/sys-unconfig<br />
/* Clear host specific network configuration information */ 2005-03-22<br />
204. /usr/sbin/useradd<br />
/* Add a new user to the system */ 2005-10-13<br />
205. drvconfig ; disks<br />
/* Adding hot-plug disks to system */ 2005-03-22<br />
Back to top</p>
<p>System Information/Monitoring<br />
206. /bin/echo “0t${stamp}>Y\n /* Convert UNIX timestamp to something human-readable */ 2005-03-22<br />
207. /usr/sbin/eeprom<br />
/* Show eeprom parameters */ 2005-03-22<br />
208. /usr/sbin/prtconf -vp<br />
/* Show system configuration details */ 2005-03-22<br />
209. coreadm -e log<br />
/* Report global core */ 2005-03-22<br />
210. grep &#8220;\-root&#8221; /var/adm/sulog | grep -v \+ | tail -25<br />
/* List most recent attempts to switch to superuser account. */ 2005-03-22<br />
211. isainfo -bv<br />
/* Quickly checkout if machine is in 32 or 64 bit mode */ 2005-03-22<br />
212. last<br />
/* Tells who was or still is on the system */ 2005-03-22<br />
213. logger -i<br />
/* Log the process ID */ 2005-03-22<br />
214. prtconf -pv | grep banner-name |awk -F\&#8217; &#8216; { print $2 } &#8216; | head -1<br />
/* Show actual model name of machine */ 2005-03-22<br />
215. prtdiag -v<br />
/* System Diagnostics */ 2007-02-21<br />
216. prtpicl -v | grep wwn<br />
/* A command to find persistent binding of storage */ 2006-06-20<br />
217. psradm -f [processor id]<br />
/* Take processor offline */ 2005-03-22<br />
218. psrinfo | wc -l<br />
/* Display number of processors */ 2005-03-22<br />
219. sar -u<br />
/* Report CPU Utilization */ 2005-03-22<br />
220. sar [ -aA ] [ -o filename ] t [ n ]<br />
/* Provides cumulative reports about system activity. */ 2005-03-22<br />
221. telnet 13 | grep ‘:’<br />
/* Get the time on remote Unix machine */ 2005-01-10<br />
222. uname -a<br />
/* Displays system information */ 2005-03-22<br />
223. uname -X<br />
/* Displays system information */ 2005-08-03<br />
224. vmstat 10<br />
/* Displays summary of what the system is doing every 10 seconds */ 2005-03-22<br />
225. who -b<br />
/* Displays the date of the last system reboot. */ 2005-03-22<br />
226. ypcat hosts | sort -n -t. +0 -1 +1 -2 +2 -3 +3 -4<br />
/* Take the input of “ypcat hosts” or “cat /etc/inet/hosts” and sort by IP. */ 2005-03-22
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=37</wfw:commentRSS>
		</item>
		<item>
		<title>VNC</title>
		<link>http://technotes.aarthis.com/?p=36</link>
		<comments>http://technotes.aarthis.com/?p=36#comments</comments>
		<pubDate>Tue, 13 Nov 2007 02:00:47 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=36</guid>
		<description><![CDATA[





                                                
Home &#124; Store &#124; Articles &#124; Downloads &#124; E-Mail &#124; About &#124; Testimonials &#124; Contact &#124; Labs 
Monday, November 12, 2007








































































































 


 






Mailing List
E-mail:    






By Joining the mailing list you will be notified of site updates.





_______________
Show Your Support For
This Site By Donating:
      
 
_______________











Server Time:
8:55 PM
This Server Runs:
Red Hat Enterprise Linux 4
Kernel 2.6.9-42.0.2.EL #1
Apache 1.3.36 (Unix)
PHP 4.4.2
Perl 5.8.5
cPanel [...]]]></description>
			<content:encoded><![CDATA[<p><!-- header //--><a href="http://www.skullbox.net/index2.php"><img src="http://technotes.aarthis.com/banner4.jpg" border="0" /></a></p>
<table class="headernavigation" cellspacing="0" cellpadding="0" width="100%">
<tr class="ssl_headernavigation">
<td class="headernavigation" align="center">
<table cellspacing="2" cellpadding="2" width="100%" border="0">
<tr>
<td valign="top">                                                </td>
<td class="topnav" valign="top" align="center"><a class="headernavigation" href="http://technotes.aarthis.com/index2.php">Home</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/store.php">Store</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/articles.php">Articles</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/downloads.php">Downloads</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/mail.php">E-Mail</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/about.php">About</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/testimonials.php">Testimonials</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/contact.php">Contact</a> <font color="#999999">|</font> <a class="headernavigation" href="http://technotes.aarthis.com/labs.php">Labs</a> <font color="#999999" /></td>
<td align="right"><strong>Monday, November 12, 2007</strong></td>
</tr>
</table>
</td>
</tr>
</table>
<table class="content" cellspacing="0" cellpadding="0" width="100%" border="0">
<tr>
<td class="left_column" style="width: 136px" valign="top">
<table class="left_column" cellspacing="0" cellpadding="0" width="136" border="0">
<tr>
<td>
<table class="leftNavTable" cellspacing="0" cellpadding="0" width="161" bgcolor="#3f57a5" border="0">
<tr>
<td>
<img height="18" src="http://technotes.aarthis.com/ims/articles.gif" width="161" border="0" /></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/navheaderhr.gif" width="161" border="0" /></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/servers.php"><img height="18" src="http://technotes.aarthis.com/ims/servers.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/linux.php"><img height="18" src="http://technotes.aarthis.com/ims/serverl.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/windows.php"><img height="18" src="http://technotes.aarthis.com/ims/serverw.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/networking.php"><img height="18" src="http://technotes.aarthis.com/ims/networking.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/networkingb.php"><img height="18" src="http://technotes.aarthis.com/ims/networkingb.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/networkingi.php"><img height="18" src="http://technotes.aarthis.com/ims/networkingi.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/networkinga.php"><img height="18" src="http://technotes.aarthis.com/ims/networkinga.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/sechack.php"><img height="18" src="http://technotes.aarthis.com/ims/sechack.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/software.php"><img height="18" src="http://technotes.aarthis.com/ims/software.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/misc.php"><img height="18" src="http://technotes.aarthis.com/ims/misc.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/faq.php"><img height="18" src="http://technotes.aarthis.com/ims/faq.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/sources.php"><img height="18" src="http://technotes.aarthis.com/ims/works.jpg" width="161" border="0" /></a></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/howto.gif" width="161" border="0" /></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/navheaderhr.gif" width="161" border="0" /></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/linuxht.gif" width="161" border="0" /></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/networkmanagement.php"><img height="18" src="http://technotes.aarthis.com/ims/networkmanage.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/servermanagement.php"><img height="18" src="http://technotes.aarthis.com/ims/servermanage.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/installrhel3.php"><img height="18" src="http://technotes.aarthis.com/ims/installrhel3.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/webmin.php"><img height="18" src="http://technotes.aarthis.com/ims/webmin.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/newsda.php"><img height="18" src="http://technotes.aarthis.com/ims/newsda.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/squid.php"><img height="18" src="http://technotes.aarthis.com/ims/squid.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/vncserver.php"><img height="18" src="http://technotes.aarthis.com/ims/vnc.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/smoothwall.php"><img height="18" src="http://technotes.aarthis.com/ims/smoothwall.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/clarkconnect.php"><img height="18" src="http://technotes.aarthis.com/ims/clarkconnect.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/sechack.jpg" width="161" border="0" /></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/rkhunter.php"><img height="18" src="http://technotes.aarthis.com/ims/rootkits.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/spoofeddos.php"><img height="18" src="http://technotes.aarthis.com/ims/spoof.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td style="height: 1px" bgcolor="#999999"><img height="1" src="http://technotes.aarthis.com/spacer.gif" width="1" /></td>
</tr>
<tr>
<td align="center"> </td>
</tr>
<tr>
<td align="center"> </td>
</tr>
<tr>
<td align="center">
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tr>
<td class="priceDescription"><center><br />
Mailing List</p>
<form id="category_sub" name="category_sub" action="http://www.skullbox.net/mailout/subscribe.php?cid=20" method="post">E-mail: <input id="email" maxlength="100" name="email" type="text" /> <input id="category" type="hidden" name="category" value="20" /> <input type="submit" name="Submit" value="Subscribe!" /> </form>
<p></center></td>
</tr>
<tr>
<td>
<table cellspacing="0" cellpadding="8" width="100%" border="0">
<tr>
<td align="center">By Joining the mailing list you will be notified of site updates.</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center"><strong>_______________</strong></p>
<p>Show Your Support For<br />
This Site By Donating:<br />
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="business" value="billing@orlandotechworks.com" /> <input type="hidden" name="item_name" value="Orlandotechworks.com" /> <input type="hidden" name="item_number" value="20400" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="currency_code" value="USD" /> <input type="hidden" name="tax" value="0" /></p>
<p><input type="image" alt="Make payments with PayPal - it's fast, free and secure!" src="http://www.skullbox.net/paypal.gif" name="submit" /> </form>
<p><strong>_______________</strong></td>
</tr>
<tr>
<td>
<table cellspacing="0" cellpadding="8" width="100%" border="0">
<tr>
<td class="priceDescription" align="center"><!--old server status--></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center"><strong>Server Time:<br />
</strong>8:55 PM<br />
<strong>This Server Runs:</strong><br />
Red Hat Enterprise Linux 4<br />
Kernel 2.6.9-42.0.2.EL #1<br />
Apache 1.3.36 (Unix)<br />
PHP 4.4.2<br />
Perl 5.8.5<br />
cPanel 10.8.2-STABLE 120</td>
</tr>
<tr>
<td align="center"><strong>_______________</strong></p>
<p><a href="http://www.redhat.com/software/rhel/" target="_blank"><img height="31" src="http://technotes.aarthis.com/linuxpower.gif" width="88" border="0" /></a></p>
<p><a href="http://www.lunarpages.com/?id=skullbox" target="_blank"><img height="102" src="http://technotes.aarthis.com/award_02.gif" width="160" border="0" /></a><br />
<a href="http://www.september-11th.us/September-11th-Tribute.html" target="_blank"><img height="263" src="http://technotes.aarthis.com/WTC_Flag.jpg" width="161" border="0" /> </a></p>
<p><script type="text/javascript"><!-- google_ad_client = "pub-1147749160714474"; google_ad_width = 110; google_ad_height = 32; google_ad_format = "110x32_as_rimg"; google_cpa_choice = "CAAQ2ZCazgEaCCvPXrFfpg_0KPmNxXQ"; //--></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/cpa/ads?client=ca-pub-1147749160714474&#038;cpa_choice=CAAQ2ZCazgEaCCvPXrFfpg_0KPmNxXQ&#038;oe=windows-1252&#038;dt=1194918905677&#038;lmt=1194918905&#038;format=110x32_as_rimg&#038;output=html&#038;correlator=1194918905661&#038;url=http%3A%2F%2Fwww.skullbox.net%2Fvncserver.php&#038;region=_google_cpa_region_&#038;ref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fhl%3Den%26q%3Dvncserver%2Bhow%2Bto%2Bstart%2Bkde%2B%2B%26btnG%3DSearch&#038;cc=458&#038;ga_vid=1214429825.1194918906&#038;ga_sid=1194918906&#038;ga_hid=1678890656&#038;flash=9&#038;u_h=960&#038;u_w=1280&#038;u_ah=932&#038;u_aw=1280&#038;u_cd=32&#038;u_tz=-300&#038;u_his=5&#038;u_java=true" frameborder="0" width="110" scrolling="no" height="32" /></p>
<p><script type="text/javascript"><!-- google_ad_client = "pub-1147749160714474"; google_ad_width = 125; google_ad_height = 125; google_ad_format = "125x125_as_rimg"; google_cpa_choice = "CAAQ-YOy0QEaCBJ_cFqMCYHjKK2293M"; //--></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/cpa/ads?client=ca-pub-1147749160714474&#038;cpa_choice=CAAQ-YOy0QEaCBJ_cFqMCYHjKK2293M&#038;oe=windows-1252&#038;dt=1194918905755&#038;lmt=1194918905&#038;prev_fmts=110x32_as_rimg&#038;format=125x125_as_rimg&#038;output=html&#038;correlator=1194918905739&#038;url=http%3A%2F%2Fwww.skullbox.net%2Fvncserver.php&#038;region=_google_cpa_region_&#038;ref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fhl%3Den%26q%3Dvncserver%2Bhow%2Bto%2Bstart%2Bkde%2B%2B%26btnG%3DSearch&#038;cc=458&#038;ga_vid=1214429825.1194918906&#038;ga_sid=1194918906&#038;ga_hid=1678890656&#038;flash=9&#038;u_h=960&#038;u_w=1280&#038;u_ah=932&#038;u_aw=1280&#038;u_cd=32&#038;u_tz=-300&#038;u_his=5&#038;u_java=true" frameborder="0" width="125" scrolling="no" height="125" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td style="width: 100%" valign="top"><!--main content table from top of search--></p>
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tr>
<td bgcolor="#999999"><!-- SiteSearch Google --><br />
<form action="http://www.google.com/custom" method="get" target="_top"><input type="hidden" name="domains" value="skullbox.net" /> <input maxlength="255" size="31" name="q" type="text" /> <input type="submit" name="sa" value="Search" /> <input style="visibility: hidden" type="radio" name="sitesearch" value="skullbox.net" /> <input type="hidden" name="client" value="pub-1147749160714474" /> <input type="hidden" name="forid" value="1" /> <input type="hidden" name="channel" value="4726571835" /> <input type="hidden" name="ie" value="ISO-8859-1" /> <input type="hidden" name="oe" value="ISO-8859-1" /> <input type="hidden" name="cof" value="GALT:#008000;GL:1;DIV:#336699;VLC:663399;AH:center;BGC:FFFFFF;LBGC:336699;ALC:0000FF;LC:0000FF;T:000000;GFNT:0000FF;GIMP:0000FF;FORID:1" /> <input type="hidden" name="hl" value="en" /> </form>
<p><!-- SiteSearch Google --></p>
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" border="0">
<tr align="left" bgcolor="#ffffff">
<td style="height: 52px" valign="top" colspan="3">
<table style="height: 52px" cellspacing="0" cellpadding="5" width="100%">
<tr>
<td><!--first heading--><br />
<strong>Audience:</strong> <a href="http://technotes.aarthis.com/levels.php">Self Learners - System Admins</a><br />
<strong>Last Updated:</strong> 5/19/2005 12:46:25 AM<br />
<strong>Original Creation Date:</strong> 3/27/2005 6:44:17 AM<br />
<em>**All times are EST**</em> <!--end first heading--></td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="width: 100%; height: 294px" valign="top" bgcolor="#ffffff">
<table cellspacing="0" cellpadding="5" width="100%" border="0">
<tr>
<td style="height: 5px" colspan="2"><img height="1" src="http://technotes.aarthis.com/static_images/spacer.gif" width="1" /> <!--start content here--></p>
<p><center><script type="text/javascript"><!-- google_ad_client = "pub-1147749160714474"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_channel =""; google_color_border = "000000"; google_color_bg = "F0F0F0"; google_color_link = "0000FF"; google_color_url = "008000"; google_color_text = "000000"; //--></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-1147749160714474&#038;dt=1194918905818&#038;lmt=1194918905&#038;format=468x60_as&#038;output=html&#038;correlator=1194918905818&#038;url=http%3A%2F%2Fwww.skullbox.net%2Fvncserver.php&#038;color_bg=F0F0F0&#038;color_text=000000&#038;color_link=0000FF&#038;color_url=008000&#038;color_border=000000&#038;ref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fhl%3Den%26q%3Dvncserver%2Bhow%2Bto%2Bstart%2Bkde%2B%2B%26btnG%3DSearch&#038;cc=458&#038;ga_vid=1214429825.1194918906&#038;ga_sid=1194918906&#038;ga_hid=1678890656&#038;flash=9&#038;u_h=960&#038;u_w=1280&#038;u_ah=932&#038;u_aw=1280&#038;u_cd=32&#038;u_tz=-300&#038;u_his=5&#038;u_java=true" frameborder="0" width="468" scrolling="no" height="60" /></center></p>
<p><center></p>
<h3><font face="sans-serif">HOWTO - Linux VNCserver</font></h3>
<p><strong>By <a href="http://technotes.aarthis.com/erikrodriguez.php">Erik Rodriguez</a></strong></p>
<p></center>This article is a HOWTO for running VNCserver on Linux. These examples are specific to <a href="http://technotes.aarthis.com/rhel.php">Red Hat Enterprise Linux</a>, but should work on any type of Linux system.</p>
<hr /><br />
<h4><em>What is VNCserver?</em></h4>
<p>VNC stands for Virtual Network Computing. It was originally developed by AT&#038;T as a way to administer machines without using the console. If you have used <a href="http://technotes.aarthis.com/rdp.php">Windows Terminal Services (RDP)</a>, VNC will seem very familiar.</p>
<h4><em>Why use VNCserver?</em></h4>
<p>In Linux, everything can be done from a <a href="http://technotes.aarthis.com/linuxshell.php">shell</a>. However, there may be a time when you need to access the machine as if you were at the console.</p>
<h4><em>Getting Started</em></h4>
<p>You will need several things to get started:</p>
<ul>
<li>root privledges</li>
<li>VNC client software (tightVNC, you can download it <a href="http://technotes.aarthis.com/sd/vncclient.exe">here</a>.)</li>
<li>A good password!</li>
</ul>
<p>As I mentioned above, this example is done with RHEL, which comes standard with VNCserver installed. To start the vncserver simply invoke the following commands:</p>
<pre>[root@roswell etc]# service vncserver start Starting VNC server:                                       [  OK  ] [root@roswell etc]#  [root@roswell etc]# vncpasswd Password:  Verify:  [root@roswell etc]# [root@roswell etc]# vncserver  New 'roswell:1 (root)' desktop is roswell:1  Starting applications specified in /root/.vnc/xstartup Log file is /root/.vnc/roswell:1.log  [root@roswell etc]#</pre>
<p><center><script type="text/javascript"><!-- google_ad_client = "pub-1147749160714474"; google_ad_width = 300; google_ad_height = 250; google_ad_format = "300x250_as"; google_cpa_choice = "CAEQ_Kid_AIaCJc2Q-Pqtw68KKj1y6wB"; //--> </script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/cpa/ads?client=ca-pub-1147749160714474&#038;cpa_choice=CAEQ_Kid_AIaCJc2Q-Pqtw68KKj1y6wB&#038;oe=windows-1252&#038;dt=1194918905880&#038;lmt=1194918905&#038;prev_fmts=110x32_as_rimg%2C125x125_as_rimg&#038;format=300x250_as&#038;output=html&#038;correlator=1194918905880&#038;url=http%3A%2F%2Fwww.skullbox.net%2Fvncserver.php&#038;region=_google_cpa_region_&#038;ref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fhl%3Den%26q%3Dvncserver%2Bhow%2Bto%2Bstart%2Bkde%2B%2B%26btnG%3DSearch&#038;cc=458&#038;ga_vid=1214429825.1194918906&#038;ga_sid=1194918906&#038;ga_hid=1678890656&#038;flash=9&#038;u_h=960&#038;u_w=1280&#038;u_ah=932&#038;u_aw=1280&#038;u_cd=32&#038;u_tz=-300&#038;u_his=5&#038;u_java=true" frameborder="0" width="300" scrolling="no" height="250" /></center></p>
<p>So what did we do there? First, we started the vncserver service. It may or may not have already been running on your system. Next we set a password to access the VNC desktop. When you set the password, you will not see any characters on the screen, and you must enter the password twice. You will only need to do this the very first time you run vncserver. The password will be saved in the Linux filesystem, and you can change it at any time by invoking the <em>vncpasswd</em> command again. Last, to activate the VNC desktop, we simply invoked the <em>vncserver</em> command. Notice the output; the desktop is named &#8220;roswell:1&#8243; which can also be replaced via the machines IP address.</p>
<h4><em>Connecting</em></h4>
<p>Assuming you already installed <a href="http://technotes.aarthis.com/sd/vncclient.exe">TightVNC</a> or another VNC client, enter the desktop name:</p>
<p><center><img height="121" src="http://technotes.aarthis.com/vnclocal.gif" width="371" border="2" /> </center></p>
<p>You can replace the server name with an IP address if you are logging in from outside your LAN. Remember, if you are using <a href="http://technotes.aarthis.com/nat.php">NAT</a> port 5900 must be forwarded to your VNCserver.</p>
<p><center><img height="121" src="http://technotes.aarthis.com/vncip.gif" width="371" border="2" /> </center></p>
<p>Upon successful connection, you will be prompted for a password. You will then see a terminal screen that will allow you to execute commands:</p>
<p><center><img src="http://technotes.aarthis.com/vncdesktop.gif" border="2" /> </center></p>
<h4><em>VNCserver in Runlevel 5 (KDE or Gnome)</em></h4>
<p>If you are new to linux, running VNC server with a terminal isn&#8217;t going to do you much good. You might want to have a menu-driven GUI like Windows. No problem. Follow these steps:</p>
<p>First, we are going to assume that VNCserver is running under the root user, as shown with the example above. For this example, I will be editing my VNCserver to enter Gnome. You can specify a KDE desktop if you have KDE installed on your server. Make sure you are in the root directory.</p>
<pre>[root@roswell ~]# ls -a .                                   cacti-0.8.6c.tar.gz  .gnome2_private     .lftp                  queue.dat          temp ..                                  client.cfg           .gnupg              machinedependent.dat  .recently-used      Templates .config                             FAHlog-Prev.txt      .gstreamer-0.8      .metacity             .rhn-applet.cache  .themes .cshrc                              FAHlog.txt           .gtkrc              .mozilla              .rhn-applet.conf   .thumbnails .bash_history                       Desktop              .fonts.cache-1      .gtkrc-1.2-gnome2     .rnd               .Trash .bash_logout                        .dmrc                .gconf              .ICEauthority         .mysql_history      scripts .bash_profile                       .eggcups             .gconfd             .icons                .nautilus          .sh_history .viminfo                            .bashrc              .bashdevl           .esd_auth             .gnome              php-4.11 .ssh                                .vnc                  cacti-0.8.6c       .gnome2                install.log [root@roswell ~]# cd .vnc [root@roswell .vnc]# ls passwd         roswell:1.pid  roswell:2.pid  roswell:3.pid  roswell:4.pid  roswell:5.pid             roswell.area51.lan:1.pid roswell:1.log  roswell:2.log  roswell:3.log  roswell:4.log  roswell:5.log  roswell.area51.lan:1.log  roswell.area51.lan:2.log xstartup [root@roswell .vnc]# vi xstartup</pre>
<p><font color="#800000">Using vi (vim) to edit the xstartup file, make sure your file matches this one:</font></p>
<pre>#!/bin/sh  # Uncomment the following two lines for normal desktop:  unset SESSION_MANAGER  exec /etc/X11/xinit/xinitrc  [ -x /etc/vnc/xstartup ] &#038;&#038; exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] &#038;&#038; xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic &#038; xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &#038; startx &#038;</pre>
<p>Notice that the last line is &#8220;startx &#038;&#8221; as this command will launch Gnome upon login via VNCserver. If you are using a KDE desktop, the line &#8220;startkde &#038;&#8221; should replace the last line.</p>
<p>Logging in, you will be presented with a Gnome or KDE desktop.</p>
<p><center><img height="383" src="http://technotes.aarthis.com/vncgnome.gif" width="500" border="2" /> </center></p>
<p>Shown above is a Gnome desktop on <a href="http://technotes.aarthis.com/rhel.php">Red Hat Enterprise Linux 4</a>.</p>
<h4><em>Comments, Questions, Problems?</em></h4>
<p>Use the form below to send the author your thoughts. Your e-mail address is optional, but required if you would like a response.</p>
<p><center></p>
<table cellspacing="2" cellpadding="2" border="3">
<tr>
<td style="width: 400px" align="center" bgcolor="#3f57a5">
<form action="http://skullbox.net/cgi-sys/FormMail.cgi" method="post"><input type="hidden" name="recipient" value="webmaster@skullbox.net" /><br />
<strong><font color="#ffffff">Your Name:</font></strong>   <input class="form" name="your_name" type="text" /><br />
<strong><font color="#ffffff">E-Mail:</font></strong>          <input class="form" name="email" type="text" /></p>
<p><strong><font color="#ffffff">Comments:</font></strong>  </p>
<p><strong><font color="#800000"><a href="http://www.skullbox.net/contact.php" target="_blank">See the list</a> of things I won&#8217;t respond to&#8230;</font></strong></p>
<p><textarea class="textarea" style="overflow: hidden; width: 237px; height: 140px" name="Legal_Description" rows="35" cols="35" /><br />
<input type="hidden" name="redirect" value="http://www.skullbox.net/thankyou.php" /> <input type="hidden" name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT" /><br />
<input type="submit" name="button" value="Send" /> </form>
</td>
</tr>
</table>
<p></center></p>
<p><center><script type="text/javascript"><!-- google_ad_client = "pub-1147749160714474"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_channel =""; google_color_border = "000000"; google_color_bg = "F0F0F0"; google_color_link = "0000FF"; google_color_url = "008000"; google_color_text = "000000"; //--></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-1147749160714474&#038;dt=1194918905989&#038;lmt=1194918905&#038;prev_fmts=468x60_as&#038;format=468x60_as&#038;output=html&#038;correlator=1194918905974&#038;url=http%3A%2F%2Fwww.skullbox.net%2Fvncserver.php&#038;color_bg=F0F0F0&#038;color_text=000000&#038;color_link=0000FF&#038;color_url=008000&#038;color_border=000000&#038;ref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fhl%3Den%26q%3Dvncserver%2Bhow%2Bto%2Bstart%2Bkde%2B%2B%26btnG%3DSearch&#038;cc=458&#038;ga_vid=1214429825.1194918906&#038;ga_sid=1194918906&#038;ga_hid=1678890656&#038;flash=9&#038;u_h=960&#038;u_w=1280&#038;u_ah=932&#038;u_aw=1280&#038;u_cd=32&#038;u_tz=-300&#038;u_his=5&#038;u_java=true" frameborder="0" width="468" scrolling="no" height="60" /></center></p>
<p><!--end content--></td>
</tr>
</table>
<p><!--added right table--></td>
<td style="width: 161px" valign="top" align="right">
<table class="rightnavtable" cellspacing="0" cellpadding="0" width="161" bgcolor="#999999" border="0">
<tr>
<td>
<img height="18" src="http://technotes.aarthis.com/ims/toparticles.jpg" width="161" border="0" /></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/navheaderhr2.jpg" width="161" border="0" /></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/netbux.php"><img height="18" src="http://technotes.aarthis.com/ims/netbux.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/sonet.php"><img height="18" src="http://technotes.aarthis.com/ims/sonet.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/xpmce.php"><img height="18" src="http://technotes.aarthis.com/ims/xpmce.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/cluster.php"><img height="18" src="http://technotes.aarthis.com/ims/servercluster.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/servercase.php"><img height="18" src="http://technotes.aarthis.com/ims/servercase.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/rhn.php"><img height="18" src="http://technotes.aarthis.com/ims/rhn.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/ioscheat.php"><img height="18" src="http://technotes.aarthis.com/ims/ioscheat.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/subnetcalculator.php"><img height="18" src="http://technotes.aarthis.com/ims/subnet.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/torrent.php"><img height="18" src="http://technotes.aarthis.com/ims/torrent.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/dslam.php"><img height="18" src="http://technotes.aarthis.com/ims/dslam.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/tcpudp.php"><img height="18" src="http://technotes.aarthis.com/ims/tcpudp.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/telnethack.php"><img height="18" src="http://technotes.aarthis.com/ims/telnethacking.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/gfi.php"><img height="18" src="http://technotes.aarthis.com/ims/gfi.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/linksys.php"><img height="18" src="http://technotes.aarthis.com/ims/linksys.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/xbox.php"><img height="18" src="http://technotes.aarthis.com/ims/xbox.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><a href="http://technotes.aarthis.com/cisco.php"><img height="18" src="http://technotes.aarthis.com/ims/ios.gif" width="161" border="0" /></a></td>
</tr>
<tr>
<td><img height="18" src="http://technotes.aarthis.com/ims/navheaderhr2.jpg" width="161" border="0" /></td>
</tr>
<tr>
<td class="priceDescription" align="center"><!--video</p>
<p><IMG SRC="./ims/electric.jpg" ALT="" WIDTH="150" HEIGHT="192" BORDER="2"><br />
<A HREF="http://www.skullbox.net/electric.mpg">Watch This Video!</A></p>
<p><IMG SRC="./ims/itrash.jpg" ALT="" WIDTH="150" HEIGHT="190" BORDER="2"><br />
<A HREF="http://www.skullbox.net/itrash.wmv">Smash the G4!</A> &#8211;><br />
<center><a href="https://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=otech" target="_blank"><img style="border: medium none" alt="Host Gator Banner" src="http://www.hostgator.com/banners/125X300.gif" /></a> </center></p>
<p><a class="AlexaSiteStatsWidget" href="http://www.alexa.com/data/details/main?url=http://www.skullbox.net"><img height="65" alt="Alexa Certified Site Stats for www.skullbox.net" src="http://xsltcache.alexa.com/site_stats/gif/t/a/d3d3LnNrdWxsYm94Lm5ldA==/s.gif" width="120" border="0" /></a><script language="JavaScript" src="http://xslt.alexa.com/site_stats/js/t/a?url=www.skullbox.net" type="text/javascript"></script> <!--new table for extra includes--></p>
<table cellspacing="2" cellpadding="2" align="center" border="0">
<tr>
<td valign="top" align="center"><!--insert extra include here--></td>
</tr>
</table>
<p><!--end 2nd inside includes table--></td>
</tr>
<tr>
<td style="height: 1px" bgcolor="#999999"><img height="1" src="http://technotes.aarthis.com/spacer.gif" width="1" /></td>
</tr>
<tr>
<td align="center"> </td>
</tr>
<tr>
<td align="center"><center><script type="text/javascript"><!-- google_ad_client = "pub-1147749160714474"; google_ad_width = 160; google_ad_height = 600; google_ad_format = "160x600_as"; google_ad_type = "text_image"; google_ad_channel =""; google_color_border = "CCCCCC"; google_color_bg = "FFFFFF"; google_color_link = "000000"; google_color_url = "666666"; google_color_text = "333333"; //--></script><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><iframe name="google_ads_frame" marginwidth="0" marginheight="0" src="http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-1147749160714474&#038;dt=1194918906505&#038;lmt=1194918906&#038;prev_fmts=468x60_as%2C468x60_as&#038;format=160x600_as&#038;output=html&#038;correlator=1194918906505&#038;url=http%3A%2F%2Fwww.skullbox.net%2Fvncserver.php&#038;color_bg=FFFFFF&#038;color_text=333333&#038;color_link=000000&#038;color_url=666666&#038;color_border=CCCCCC&#038;ad_type=text_image&#038;ref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fhl%3Den%26q%3Dvncserver%2Bhow%2Bto%2Bstart%2Bkde%2B%2B%26btnG%3DSearch&#038;cc=458&#038;ga_vid=1214429825.1194918906&#038;ga_sid=1194918906&#038;ga_hid=1678890656&#038;flash=9&#038;u_h=960&#038;u_w=1280&#038;u_ah=932&#038;u_aw=1280&#038;u_cd=32&#038;u_tz=-300&#038;u_his=5&#038;u_java=true" frameborder="0" width="160" scrolling="no" height="600" /></center><!--keep lower and upper TD tags--></td>
</tr>
</table>
</td>
</tr>
</table>
<p><!-- End Content --></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
<td class="smallText" align="center"><a href="http://creativecommons.org/licenses/by-nc-sa/2.0/" target="_blank"><font size="-3">Copyright</font></a> © 2002-2007 Skullbox.Net All Rights Reserved.<br />
A division of <font size="-3"><a href="http://www.orlandotechworks.com/" target="_blank">Orlando Tech Works, LLC</a></font><br />
By using this site you agree to its <a href="http://technotes.aarthis.com/tac.php"><font size="-3">Terms and Conditions</font></a>.<br />
Contact the <font size="-3"><script language="javascript">    <!--    var contact = "Webmaster"    var email = "webmaster"    var emailHost = "skullbox.net"    document.write("<a href=" + "mail" + "to:" + email + "@" + emailHost+ ">&#8221; + contact + &#8220;</a>&#8220;)    //&#8211;>  </script><a href="mailto:webmaster@skullbox.net">Webmaster</a></font>.</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=36</wfw:commentRSS>
<enclosure url='http://www.skullbox.net/electric.mpg' length='1596588' type='video/mpeg'/>
		</item>
		<item>
		<title>Polarizing filter -tips from moose</title>
		<link>http://technotes.aarthis.com/?p=35</link>
		<comments>http://technotes.aarthis.com/?p=35#comments</comments>
		<pubDate>Wed, 19 Sep 2007 23:41:12 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=35</guid>
		<description><![CDATA[
TIP: The last thing I want when using a polarizer is a &#8220;dark blue&#8221; sky. Why? Not only do I not want the stigma of folks looking at my image and saying to themselves, &#8220;he used a polarizer&#8221; but I don&#8217;t want the viewer to even notice a polarizer is in use. So to avoid [...]]]></description>
			<content:encoded><![CDATA[<p><strong></p>
<p class="answer"><strong>TIP: </strong>The last thing I want when using a polarizer is a &#8220;dark blue&#8221; sky. Why? Not only do I not want the stigma of folks looking at my image and saying to themselves, &#8220;he used a polarizer&#8221; but I don&#8217;t want the viewer to even notice a polarizer is in use. So to avoid this, when I shoot with a polarizer, I dial in +1/3 (conventional) or +1/2 (digital) exposure compensation. This prevents the polarizer &#8220;dark&#8221; look from coming into my image while capturing the &#8220;saturated&#8221; look properly using a polarizer brings to color photography.</p>
<p>Using a polarizer correctly takes talent just like using any other tool in photography! All you have to do is rotate the filter, right? That is correct, but when you&#8217;re rotating the polarizer you need to look through the viewfinder and look for the blue to disappear (this means you don&#8217;t use the polarizer unless you have a bright blue sky overhead). You don&#8217;t look at the sky, but you look at the ground. You rotate the polarizer looking at dirt if possible until the ground appears a nice, warm, rich chocolate moose brown (get it, chocolate moose, Moose&#8217;s technique?). Normally, the ground will have a cold, bluish, dead brown color when not viewing through a polarizer properly rotated. You want that ground warmed up to that rich chocolate moose brown because then you know you&#8217;ve removed the blue from the scene.</p>
<p class="answer"><strong>TIP: </strong>I can&#8217;t encourage you enough to take before and after photos when working with any new tool or technique in photography. Using a polarizer is a great example! Take an image polarized and not polarized so you cannot only see for yourself the effect, but you can learn what works and doesn&#8217;t work for YOUR photography!</p>
<p>What if the ground is not your subject, does this technique work? Polarizing light is another one of those physic things photography is so wrapped around. Technically, only objects approximately 90 degrees to the film plane are effected by a polarizer, that&#8217;s the full effect of the polarizer (and if the sky is in the photo, it turns dark blue at 90 degrees from the sun). In practice, you can see the effect of a polarizer even though the object might not be a true 90 degrees. That&#8217;s why you rotate the polarizer and look. I recommend first looking at the ground because dirt is pretty much dirt and a lot easier for folks to understand the polarizing effect than looking at a critter or tree bark. That&#8217;s because polarizers are not a cure all, but just another tool.</p>
<p>They don&#8217;t always help! If you&#8217;re shooting in overcast light for example, a polarizer will do nothing for you. If you&#8217;re shooting a backlit subject, the polarizer will do nothing for you. Shooting a backlit subject means you&#8217;re shooting with the lens pointed towards the sun and at that angle, the physics are all against you.</p>
<p>In the same vain, polarizers are not just for photographing scenics! I use a polarizer quite often when photographing critters, especially big game. The incredible impact a properly used polarizer can make on an animals pelt is mind boggling! But this is a time when you have to think through the pros and cons of using that polarizer.</p>
<p>Polarizers have one major drawback! Polarizers suck up two stops of light. Their very nature excludes two stops of light from reaching the film. When shooting in low light situations or when you need lots of DoF so you&#8217;re at a slow shutter speed, you might not be able to afford the loss of two stops. As a very general rule of thumb (which I&#8217;m the first to break), I try to never photograph any action with a shutter speed less than 1/30. A good example of this is Grizzly Bears eating grass (a common thing). When grizzly bears or any other critter is chewing their jaw mussels affect the eye and at slower shutter speeds, the eye might be out of focus when a critter is chewing. This is a time I don&#8217;t want to be below 1/30 and won&#8217;t attach a polarizer. I don&#8217;t want to sacrifice sharpness for better color.</p>
<p class="answer"><strong>TIP: </strong>If you shoot digital, you can &#8220;neutralize&#8221; the two stop loss of the polarizer by simply cranking up the ISO by two stops. If you&#8217;re already at a low ISO, this isn&#8217;t a problem but if you&#8217;re shooting at a higher ISO like 800 to start with, this might not work for you.</p>
<p>So what&#8217;s with this Moose Filter? As one emailer asked, the Moose Filter does not put antlers on a cow moose. The Moose filter is the combination of an 81a filter and a circular polarizer in one mount. The reason is simple for this combination. You&#8217;ve read how I always use an 81a filter. You&#8217;ve read how useful a polarizer can be. The combination of the two filters is lethal!</p>
<p>When shooting with ultra wides though, you cannot stack a polarizer on a 81a because the two stacked filters are seen by the film causing vignetting. Vignetting is the darkening of the corners of a photo. This is not desired. By having an 81a filter combined into one filter mount with a polarizer, you don&#8217;t have vignetting. So you can have the benefits of the two filters when using your ultra wides. When I attach the Moose filter, I do remove the 81a filter already attached to the lens. This is because the combining of two 81a filters produces an effect that&#8217;s not really desired. The result is an over warming of the image.</p>
<p>The Moose Filter is available in all the typical sizes and yes, you can buy it from us direct. The prices are: 52mm $59, 62mm $69, 67mm $75, 72mm $85, 77mm $99 and 82mm $119 (+$5.95 S&#038;H, sales tax where applicable). You can <a href="http://www.moose395.net/Merchant2/merchant.mv?Screen=CTGY&#038;Category_Code=CG" target="_blank">order it direct from us</a>! <span class="smallertext">Please note: Moose Filters are currently on back-order. </span></p>
<p>NOTE: When using the Moose Filter or other polarizers, you generally don&#8217;t stack filters because this causes vignetting. Many ask if they should remove their skylight filter when using the Moose Filter, or if I remove the <a href="http://technotes.aarthis.com/81a.html">81a filters</a> on my lenses when using the Moose Filter. The answer seems obvious to us since the Moose Filter is two filters in one to avoid stacking and vignetting. The answer is YES, remove filters when attaching a polarizer such as the Moose Filter.</p>
<p><!-- #BeginLibraryItem "/Library/Top of Page.lbi" --></strong>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=35</wfw:commentRSS>
		</item>
		<item>
		<title>photography references</title>
		<link>http://technotes.aarthis.com/?p=34</link>
		<comments>http://technotes.aarthis.com/?p=34#comments</comments>
		<pubDate>Sun, 12 Aug 2007 21:47:16 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Sankar's Technotes</category>
	<category>Photography related</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=34</guid>
		<description><![CDATA[While not a “course” per se, Luminous Landscape has a number of very good tutorials, techniques, understanding series, and essays. I highly recommend that you take a look at this site, http://luminous-landscape.com/. Thom Hogan also has some interesting articles, http://www.bythom.com/nikon.htm.
Some other online sites you can checkout are,
Short Courses, http://www.shortcourses.com/
Cambridge In Color – tutorials, http://www.cambridgeincolour.com/tutorials.htm
Digital Photography [...]]]></description>
			<content:encoded><![CDATA[<p>While not a “course” per se, Luminous Landscape has a number of very good tutorials, techniques, understanding series, and essays. I highly recommend that you take a look at this site, http://luminous-landscape.com/. Thom Hogan also has some interesting articles, http://www.bythom.com/nikon.htm.<br />
Some other online sites you can checkout are,<br />
Short Courses, http://www.shortcourses.com/<br />
Cambridge In Color – tutorials, http://www.cambridgeincolour.com/tutorials.htm<br />
Digital Photography FAQ, http://www.cs.duke.edu/~parr/photography/faq.html.</p>
<p>&#8211;<br />
Brooks</p>
<p>http://photo-seminars.com/Campus.htm
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=34</wfw:commentRSS>
		</item>
		<item>
		<title>D200 and SB-800 Wedding Shooting Settings</title>
		<link>http://technotes.aarthis.com/?p=33</link>
		<comments>http://technotes.aarthis.com/?p=33#comments</comments>
		<pubDate>Thu, 19 Jul 2007 03:32:23 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Photography related</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=33</guid>
		<description><![CDATA[D200 and SB-800 Wedding Shooting Settings
Common notes:
1. I Shoot in JPEG , Large / fine for all the formals and church pics.
At reception I change to medium / fine.
I keep to fine because it is the least compression ratio of 1:4
2. I use the D200 body and SB-800,
3. I keep the diffusion dome on all [...]]]></description>
			<content:encoded><![CDATA[<p>D200 and SB-800 Wedding Shooting Settings</p>
<p>Common notes:<br />
1. I Shoot in JPEG , Large / fine for all the formals and church pics.<br />
At reception I change to medium / fine.<br />
I keep to fine because it is the least compression ratio of 1:4<br />
2. I use the D200 body and SB-800,</p>
<p class="justify">3. I keep the diffusion dome on all the times when indoors. I remove the diffusion dome outdoors when farther than 7 feet.</p>
<p>4. Outdoors I keep flash head straight at subject.<br />
5. Indoors I rotate the head up 1 click<br />
6. I am using a Fotogenetic curve EV3 v.1 , adding + 1/3 exposure</p>
<p class="justify">Try these settings. I find them very accurate, easy to use, and give repeatable excellent quality exposures and white balance.</p>
<p>Scenario A. Outdoors with fill flash:<br />
1. Matrix metering on camera</p>
<p class="justify">Shutter priority. Set shutter speed to 1/250 sec. This is the sync speed of the D200.</p>
<p>2. ISO beginning at 100 or 200, 250 if darker day<br />
3. SB-800 on TTL BL. Exposure comp at 0 to begin with<br />
         <br />
4. White balance : “Flash” , 0 comp (No, I’m not crazy)</p>
<p>Scenario B. Indoors with flash</p>
<p>1. Change SB-800 to TTL<br />
2 . Manual metering on camera. I use 1/80 or 1/100 second at<br />
       f6.3<br />
       I usually use ISO of 400 indoors<br />
 3. Don’t use too large an aperture. You want to nail focus<br />
      during dancing and such.</p>
<p>4. SB-800 Exposure comp at 0 to begin with (see note below).<br />
5. White balance: Flash, +1 comp (very accurate white balance, try<br />
     it)</p>
<p class="justify">The SB-800 is adjusting its flash output by light reflecting back at the camera.</p>
<p> With neutral subjects (clothing) leave flash exposure comp at 0.<br />
 Brighter subject (bride) adjust up + 1/3 or + 2/3.</p>
<p class="justify"> Darker subject (couple wearing black for example) adjust down – 1/3 or – 2/3</p>
<p class="justify">You don’t want to overexpose with a flash shot. Learn to evaluate what the subjects are wearing and adjust up or down. If you learn this “zone” system of flash comp you can always get a very well exposed shot, very good consistency from picture to picture.</p>
<p>Examples:<br />
 Picture of just wedding cake + 2/3<br />
 Picture of just bride + 2/3<br />
 Picture if bride and brides maids wearing light colour dresses, + 1/3<br />
 Picture of groom (dark suit) alone, - 1/3<br />
 Picture groom and his guys in black tuxes, - 2/3<br />
 Picture of bride and mom (wearing dark dress) “0”<br />
 Picture of bride and mom (wearing light dress) + 1/3 to + 2/3</p>
<p class="justify"> Picture of bride and groom cutting white cake + 2/3 with white table cloth</p>
<p> Picture of dancing couple wearing black - 2/3</p>
<p>           Sam Stern</p>
<p>           <a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.samjsternphotography.com/" target="_blank">http://www.samjsternphotography.com</a></p>
<p>&#8211;<br />
Sam<br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.samjsternphotography.com/" target="_blank">http://www.samjsternphotography.com</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=33</wfw:commentRSS>
		</item>
		<item>
		<title>Both these lenses have excellent sharpness between 100-250mm and 6.3 - 11</title>
		<link>http://technotes.aarthis.com/?p=32</link>
		<comments>http://technotes.aarthis.com/?p=32#comments</comments>
		<pubDate>Fri, 15 Jun 2007 00:34:46 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=32</guid>
		<description><![CDATA[I have both 70-300 ED and this new one. I got the VR model mainly for the better focus speed. The 70-300 sometime is irritatingly slow to obtain focus.
Both these lenses have excellent sharpness between 100-250mm and 6.3 - 11. I have sold many pictures taken with my 70-300 ED.
]]></description>
			<content:encoded><![CDATA[<p class="justify">I have both 70-300 ED and this new one. I got the VR model mainly for the better focus speed. The 70-300 sometime is irritatingly slow to obtain focus.</p>
<p class="justify">Both these lenses have excellent sharpness between 100-250mm and 6.3 - 11. I have sold many pictures taken with my 70-300 ED.</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=32</wfw:commentRSS>
		</item>
		<item>
		<title>http://www.tamba2.org.uk/wordpress/restore/</title>
		<link>http://technotes.aarthis.com/?p=31</link>
		<comments>http://technotes.aarthis.com/?p=31#comments</comments>
		<pubDate>Tue, 27 Mar 2007 17:11:41 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=31</guid>
		<description><![CDATA[
T U T O R I A L     S E R I E S
Restore your database

WordPress 2.x.x uses a cache file. You MUST delete the cache or this will not appear to have worked.
Delete everything in the /wp-content/cache directory before you upload the new files and before you do the following restore.

Where are you restoring [...]]]></description>
			<content:encoded><![CDATA[<div class="logo">
<h1 class="series">T U T O R I A L     S E R I E S</h1>
<h2 class="title">Restore your database</h2>
</div>
<div class="section3">WordPress 2.x.x uses a cache file. You <strong>MUST</strong> delete the cache or this will not appear to have worked.<br />
Delete everything in the <em>/wp-content/cache</em> directory before you upload the new files and before you do the following restore.</div>
<div class="section2">
<h2 align="center">Where are you restoring to ?</h2>
<p>Restoring could involve changing the backup file you have. To guard against damage, make a copy of it on your computer now.</p>
<p>If you have moved to a new host and you have a new database, do Step <a href="#one">ONE</a></p>
<p>If you are restoring into the same database, do Step <a href="#two">TWO</a></div>
<div class="section">
<p id="one"><strong>Step ONE</strong></p>
<p>All you need to do is create the database, nothing else. Remember that your <em>wp-config.php</em> file must have all the correct details in too or when you try your blog you will get an error. Go to Step THREE.</div>
<div class="section2">
<p id="two"><strong>Step TWO</strong></p>
<p>Restoring into your existing database means that you must first delete everything in there. PLEASE be sure that this really is a necessary step, and check that you really do have a full backup of your WordPress tables.<br />
There is no &#8216;undo&#8217; function !!<br />
You need to DROP all WordPress tables in your database to make room for the restore.</p>
<p align="center"><img alt="restore image" src="http://www.tamba2.org.uk/wordpress/restore/restore1.png" /></p>
<p>You will then see</p>
<p align="center"><img alt="restore image" src="http://www.tamba2.org.uk/wordpress/restore/restore2.png" /></p>
<p>Click Yes IF YOU ARE SURE.<br />
Your database is now empty. Go to Step THREE</div>
<div class="section">
<p id="three"><strong>Step THREE</strong></p>
<p>The actual import.</p>
<p>Click the name of your database, then the SQL tab</p>
<p align="center"><img alt="restore image" src="http://www.tamba2.org.uk/wordpress/restore/restore3.png" /></p>
</div>
<div class="section2">There are 2 ways to get your data in:</p>
<p align="center"><img alt="restore image" src="http://www.tamba2.org.uk/wordpress/restore/restore4.png" /></p>
<p><strong>A</strong> - You can open the .sql file and paste the contents into the window <strong>OR</strong><br />
<strong>B</strong> - You can use that button to locate the file on your computer and upload it.<br />
<strong>READ THIS !</strong> If your .sql file is less than about 3meg in size, you will probably be fine with either method.<br />
If your .sql file is larger, you can try the upload but you may get timeout errors. This is NOT the fault of WordPress - it is a host setting. If you have your own server you can change the settings. If you cannot alter that, and you get timeouts, you will have to do the following;</p>
<ol>
<li>Open the .sql file in a text editor. Do NOT use a word-processor, or Dreamweaver or GoLive unless you REALLY know what you are doing - on a Windows machine WordPad is okay.</li>
<li>You will see something similar to this at the top:<br />
<blockquote><p>&#8211; phpMyAdmin SQL Dump<br />
&#8211; version 2.6.1-pl2<br />
&#8211; http://www.phpmyadmin.net<br />
&#8211;<br />
&#8211; Host: localhost<br />
&#8211; Generation Time: Jun 24, 2005 at 05:14 PM<br />
&#8211; Server version: 4.0.24<br />
&#8211; PHP Version: 4.3.11<br />
&#8211;<br />
&#8211; Database: `tamba2_data`<br />
&#8211;<br />
CREATE DATABASE `tamba2_data`;<br />
USE tamba2_data;</p>
<p>&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p></blockquote>
<p>Ignore all that. You do not need it.</li>
<li>Everything else in that file needs copying and pasting into the SQL window. You highlight some text, copy it, paste it into the SQL window, click Go and after the Success message, you do it again with the next chunk of text.</li>
<li>It can take a while, and you need to be careful that you miss no lines out.</li>
</ol>
<p align="center"><img alt="restore image" src="http://www.tamba2.org.uk/wordpress/restore/restore5.png" /></p>
</div>
<div class="section">If after moving everything you get a blank page when looking at your blog, check your themes. A faulty theme file will cause this blank page. Try changing themes or uploading a new theme then changing to it.</p>
<p>If this does not help, check that all the WordPress files are present and are the correct size. Download a new set of WordPress files if needed and use your ftp client to do this.</div>
<div class="section2">From experience, there are a number of things which can mess things up when restoring and while nothing is fatal to your data it&#8217;s very complicated to describe here.<br />
If you run into trouble, make a post to the <a href="http://wordpress.org/support/">Support Forums</a>. If you email me directly for help with this, I will NOT assist unless I have full access to complete the import - it is too long and complex to do any other way, including by IM.</div>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=31</wfw:commentRSS>
		</item>
		<item>
		<title>RS232 Cables, Wiring and Pinouts</title>
		<link>http://technotes.aarthis.com/?p=30</link>
		<comments>http://technotes.aarthis.com/?p=30#comments</comments>
		<pubDate>Tue, 20 Mar 2007 23:31:24 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=30</guid>
		<description><![CDATA[RS232 Cables, Wiring and Pinouts
RS232 Wiring Stuff
http://www.zytrax.com/tech/layer_1/cables/tech_rs232.htm#db9
RS232 standards are defined by EIA/TIA (Electronic Industries Alliance /Telecommunications Industry Association). RS232 defines both the physical and electrical characteristics of the interface. RS232 is practically identical to ITU V.24 (signal description and names) and V.28 (electrical). RS232 is an Active LOW voltage driven interface and operates at +12V [...]]]></description>
			<content:encoded><![CDATA[<h1>RS232 Cables, Wiring and Pinouts</h1>
<h2>RS232 Wiring Stuff</h2>
<p><a href="http://www.zytrax.com/tech/layer_1/cables/tech_rs232.htm#db9">http://www.zytrax.com/tech/layer_1/cables/tech_rs232.htm#db9</a></p>
<p>RS232 standards are defined by EIA/TIA (Electronic Industries Alliance /Telecommunications Industry Association). RS232 defines both the physical and electrical characteristics of the interface. RS232 is practically identical to ITU V.24 (signal description and names) and V.28 (electrical). RS232 is an Active LOW voltage driven interface and operates at +12V to -12V where:</p>
<blockquote><p>Signal = 0 (LOW) > +3.0V</p>
<p>Signal = 1 (HIGH) < -3.0V</p></blockquote>
<p><strong>Notes:</strong></p>
<ol>
<li>Signal voltages in the range >-3.0V to +3.0V is regarded as the &#8216;dead area&#8217; and allows for absorption of noise. For more <a class="t-db" href="http://technotes.aarthis.com/heavy.htm">on the use of signals and other heavy stuff</a>.</li>
<li>The power level on RS232 pins is defined by TIA in terms of short circuit protection to be 100mA. Most RS232 drivers will provide lower short circuit protection (especially for laptops). A max of 50mA PER PIN may be available but the data sheet for the specific interface/chip should be consulted before commiting to externally powered designs.</li>
<li>We received an email recently pointing out some issues with NULL modem cables. The pinouts shown below will gnerally work. However there are many permutations of signal sets that can be used by either end of a connection and they may not be SYMMETRIC. One end may expect something (a signal) that the other end cannot generate. This typically happens with CTS/RTS (and perhaps DCD) and DTR/DSR. If you suspect this is the case then unfortunately you need to UNDERSTAND the interface and may have to SPOOF certain signals. Our <a class="t-db" href="http://technotes.aarthis.com/heavy.htm">signal primer</a> page may help you. Finally if you are having serious problems, splash out on a light box or some other device that will show you which signals are being activated.</li>
<li>Watch the terms DTE (Data Terminal Equipment - a terminal or PC) and DCE (Data communications Equipment - for example, a modem) the meaning and use of certain pins may differ. All the diagrams below define the interface from the DTE perspective. An RS232 interface has a female and male connector, the male connector has the bits sticking out!!</li>
<li>The terms Data Carrier Detect (DCD) and Received Line Signal Detect (RLSD) are one and the same. We use DCD throughout &#8216;cos we think it&#8217;s more common.</li>
<li>Like most folks we use the term DB9 which is widely - but erroneously - used to describe a 9-pin serial connector. We got an email pointing out the error of our ways. So, if you want to amaze your friends over the dinner table you can <a class="t-db" href="#dbx">read more here and use the technically correct terms in the future</a>. While we get away with it most of the time (with common or garden PCs), sometimes it is essential to know EXACTLY what connector type you are talking about.</li>
<li>RS-232-E is normally defined to be used with a DB25 connector, but does have a 26 pin (a much smaller connector) alternate . We suggest that if you come across one of these that you do the decent thing - use an expletive. Alternatively, with your luck, you could consider buying a lottery ticket.</li>
<li>We have received a number of emails recently asking how to wire DB9&#8217;s using cat5(e) cable. We guess there is a lot of LAN cable lying around these days so folks naturally want to use it. We have added a <a class="t-db" href="#null-cat5">null modem only section</a> to cover this wiring. There is absolutely no standard to cover this form of wiring. This section is simply offered as one of many possible ways to do it.</li>
</ol>
<h4><a name="contents"></a>Contents</h4>
<blockquote><p><a class="t-db" href="#db25">RS232 on DB25 Pinout (RS-232C)</a></p>
<p><a class="t-db" href="#db9">RS232 on DB9 Pinout (EIA/TIA - 574)</a></p>
<p><a class="t-db" href="#rj45">RS232 on RJ45 (RS-232D EIA/TIA-561)</a></p>
<p><a class="t-db" href="#null_db25">RS232 DB25 NULL Modem Pinout</a></p>
<p><a class="t-db" href="#null_db9">RS232 DB9 NULL Modem Pinout</a></p>
<p><a class="t-db" href="#null-cat5">RS232 DB9 NULL Modem Pinout using Cat5(e)</a></p>
<p><a class="t-db" href="#db9_db25">RS232 DB9 to DB25 Pinout</a></p>
<p><a class="t-db" href="#null_db9_db25">RS232 DB9 to DB25 NULL Modem Pinout</a></p>
<p><a class="t-db" href="#rs530">EIA/TIA RS-530-A (DB25 using RS-422, 423 and 485)</a></p>
<p><a class="t-db" href="#v35">V.35 on a DB25</a></p>
<p><a class="t-db" href="#dbx">DBx - Designations for D type sub-miniature connectors</a></p>
<p><a class="t-db" href="#t1">T1/E1 Pinout (RJ-48C)</a></p></blockquote>
<h2><a name="db25"></a>RS232 on DB25 (RS-232C)</h2>
<p><a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a></p>
<p><strong>Note:</strong> This is NOT the same as the DB25 <a class="t-db" href="http://technotes.aarthis.com/pc/printer.htm">Parallel port on a PC</a>.</p>
<table class="p-m-s" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-n" valign="top">
<td style="width: 50px"><strong>Pin No.</strong></td>
<td style="width: 80px"><strong>Name</strong></td>
<td>Notes/Description</td>
<td style="width: 50px"><strong>Pin No.</strong></td>
<td style="width: 80px"><strong>Name</strong></td>
<td>Notes/Description</td>
</tr>
<tr>
<td>1</td>
<td>-</td>
<td>Protective/shielded ground</td>
<td>14</td>
<td>STD</td>
<td>Secondary Transmit Data</td>
</tr>
<tr>
<td>2</td>
<td>TD</td>
<td>Transmit Data (a.k.a TxD, Tx)</td>
<td>15</td>
<td>DB</td>
<td>Transmit Clock (a.k.a TCLK, TxCLK)</td>
</tr>
<tr>
<td>3</td>
<td>RD</td>
<td>Receive Data (a.k.a RxD, Rx)</td>
<td>16</td>
<td>SRD</td>
<td>Secondary Receive Data</td>
</tr>
<tr>
<td>4</td>
<td>RTS</td>
<td>Request To Send</td>
<td>17</td>
<td>DD</td>
<td>Receive Clock (a.k.a. RCLK)</td>
</tr>
<tr>
<td>5</td>
<td>CTS</td>
<td>Clear To Send</td>
<td>18</td>
<td>LL</td>
<td>Local Loopback</td>
</tr>
<tr>
<td>6</td>
<td>DSR</td>
<td>Data Set Ready</td>
<td>19</td>
<td>SRTS</td>
<td>Secondary Request to Send</td>
</tr>
<tr>
<td>7</td>
<td>SGND</td>
<td>Signal Ground</td>
<td>20</td>
<td>DTR</td>
<td>Data Terminal Ready</td>
</tr>
<tr>
<td>8</td>
<td>CD</td>
<td>Carrier Detect (a.k.a DCD)</td>
<td>21</td>
<td>RL/SQ</td>
<td>Signal Quality Detector/Remote loopback</td>
</tr>
<tr>
<td>9</td>
<td>-</td>
<td>Reserved for data set testing</td>
<td>22</td>
<td>RI</td>
<td>Ring Indicator (DCE raises when incoming call detected used for auto answer applications)</td>
</tr>
<tr>
<td>10</td>
<td>-</td>
<td>Reserved for data set testing</td>
<td>23</td>
<td>CH/CI</td>
<td>Signal Rate selector</td>
</tr>
<tr>
<td>11</td>
<td>-</td>
<td>Unassigned</td>
<td>24</td>
<td>DA</td>
<td>Auxiliary Clock (a.k.a. ACLK)</td>
</tr>
<tr>
<td>12</td>
<td>SDCD</td>
<td>Secondary Carrier Detect</td>
<td>25</td>
<td>-</td>
<td>Unassigned</td>
</tr>
<tr>
<td>13</td>
<td>SCTS</td>
<td>Secondary Clear to send</td>
<td>-</td>
<td>-</td>
<td>-</td>
</tr>
</table>
<p><strong>NOTE:</strong> Leave all pins not specified above unconnected.</p>
<p align="center"><img alt="db25" src="http://technotes.aarthis.com/images/rs232_db25.gif" border="0" /></p>
<p align="center"><strong>view - looking into male connector</strong></p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="db9"></a>RS232 on DB9 (EIA/TIA 574)</h2>
<p><a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a></p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 50px"><strong>Pin No.</strong></td>
<td style="width: 80px"><strong>Name</strong></td>
<td><strong>Notes/Description</strong></td>
</tr>
<tr>
<td>1</td>
<td>DCD</td>
<td>Data Carrier Detect</td>
</tr>
<tr>
<td>2</td>
<td>RD</td>
<td>Receive Data (a.k.a RxD, Rx)</td>
</tr>
<tr>
<td>3</td>
<td>TD</td>
<td>Transmit Data (a.k.a TxD, Tx)</td>
</tr>
<tr>
<td>4</td>
<td>DTR</td>
<td>Data Terminal Ready</td>
</tr>
<tr>
<td>5</td>
<td>SGND</td>
<td>Ground</td>
</tr>
<tr>
<td>6</td>
<td>DSR</td>
<td>Data Set Ready</td>
</tr>
<tr>
<td>7</td>
<td>RTS</td>
<td>Request To Send</td>
</tr>
<tr>
<td>8</td>
<td>CTS</td>
<td>Clear To Send</td>
</tr>
<tr>
<td>9</td>
<td>RI</td>
<td>Ring Indicator</td>
</tr>
</table>
<p align="center"><img alt="db9" src="http://technotes.aarthis.com/images/rs232_db9.gif" border="0" /></p>
<p align="center"><strong>View - looking into male connector</strong></p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="rj45"></a>RS232 on RJ45 (RS-232D)</h2>
<p>More properly EIA/TIA - 561. Use when connecting to or from a serial port with a 8 position Modular Jack (RJ45). If you are cross-connecting from a DB9 or a DB25 use the signal names to cross connect the appropriate connections.</p>
<p><a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a></p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 50px"><strong>Pin No.</strong></td>
<td style="width: 80px"><strong>Name</strong></td>
<td><strong>Notes/Description</strong></td>
</tr>
<tr>
<td>1</td>
<td>DSR/RI</td>
<td>Data set Ready/ring indicator</td>
</tr>
<tr>
<td>2</td>
<td>DCD</td>
<td>Data Carrier Detect</td>
</tr>
<tr>
<td>3</td>
<td>DTR</td>
<td>Data Terminal Ready</td>
</tr>
<tr>
<td>4</td>
<td>SGND</td>
<td>Signal Ground</td>
</tr>
<tr>
<td>5</td>
<td>RD</td>
<td>Receive Data</td>
</tr>
<tr>
<td>6</td>
<td>TD</td>
<td>Transmit Data</td>
</tr>
<tr>
<td>7</td>
<td>CTS</td>
<td>Clear to Send</td>
</tr>
<tr>
<td>8</td>
<td>RTS</td>
<td>Request to Send</td>
</tr>
</table>
<p><strong>Note:</strong> Pin 1 is a multi-function pin sharing with DSR (Data Set Ready) and RI (Ring Indicator). This means it is impossible to differentiate between a incoming ring signal and when the modem has finally connected and synched up. With local (null modem connections) or if the modem is run in auto-answer mode this is not normally a problem. If used with a modem and the DTE (the computer end) wants to control the connection the problem is more real. DSR would normally indicate the &#8216;connected and synched-up&#8217; state following DTR from the DTE. DCD will indicate that a carrier has been received but does not indicate synchronization of both ends. In most cases however CTS (Clear To Send) in response to RTS (Request To Send) will not normally be returned until an end-to-end connection is available.</p>
<p align="center"><img alt="RJ45" src="http://technotes.aarthis.com/images/rj45_top_front.gif" border="0" /></p>
<p align="center"><strong>RJ45 Male Connector Pin Numbering</strong></p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="null_db25"></a>RS232 DB25 NULL Modem Pinout</h2>
<p>Use when connecting two systems (e.g. PCs) via their DB25 interfaces without a modem (i.e. back-to-back). See the full signal names in the <a class="t-db" href="#db25">DB25</a> sections.</p>
<p>If this pinout does not work for you then you could try our <a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a> because you may need to SPOOF connections.</p>
<p><strong>Note:</strong> This DB25 is NOT the same as the DB25 Parallel port on a PC which is <a class="t-db" href="http://technotes.aarthis.com/pc/printer.htm">defined here</a>.</p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 50px"><strong>DB25</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
<td style="width: 50px"><strong>DB25</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
</tr>
<tr>
<td>3</td>
<td>RD</td>
<td>2</td>
<td>TD</td>
</tr>
<tr>
<td>2</td>
<td>TD</td>
<td>3</td>
<td>RD</td>
</tr>
<tr>
<td>20</td>
<td>DTR</td>
<td>6,8</td>
<td>DSR, DCD</td>
</tr>
<tr>
<td>6,8</td>
<td>DSR, DCD</td>
<td>20</td>
<td>DTR</td>
</tr>
<tr>
<td>4</td>
<td>RTS</td>
<td>5</td>
<td>CTS</td>
</tr>
<tr>
<td>5</td>
<td>CTS</td>
<td>4</td>
<td>RTS</td>
</tr>
<tr>
<td>7</td>
<td>SGND</td>
<td>7</td>
<td>SGND</td>
</tr>
<tr>
<td>22</td>
<td>RI</td>
<td>22</td>
<td>RI</td>
</tr>
</table>
<p align="center"><img alt="db25" src="http://technotes.aarthis.com/images/rs232_db25.gif" border="0" /></p>
<p align="center">View - looking into male connector</p>
<p><strong>NOTE:</strong></p>
<ol>
<li>Leave all pins not specified above unconnected.</li>
<li>We have received email suggesting that the above pinout looks like DTR from one side is driving into DSR/DCD on the other side - not normally a healthy situation. The emails miss the point that since both ends are DTEs NEITHER should be attempting to drive the DSR/DCD signals. They are essentialy RX only signals on both sides.</li>
</ol>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="null_db9"></a>RS232 DB9 NULL Modem Pinout</h2>
<p>Use when connecting two systems (e.g. PCs) via their DB9 interfaces without a modem (i.e. back-to-back). See the full signal names in the <a class="t-db" href="#db9">DB9</a> section.</p>
<p>If this pinout does not work for you then you could try our <a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a> because you may need to SPOOF connections.</p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 50px"><strong>DB9</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
<td style="width: 50px"><strong>DB9</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
</tr>
<tr>
<td>2</td>
<td>RD</td>
<td>3</td>
<td>TD</td>
</tr>
<tr>
<td>3</td>
<td>TD</td>
<td>2</td>
<td>RD</td>
</tr>
<tr>
<td>4</td>
<td>DTR</td>
<td>6,1</td>
<td>DSR, DCD</td>
</tr>
<tr>
<td>6,1</td>
<td>DSR, DCD</td>
<td>4</td>
<td>DTR</td>
</tr>
<tr>
<td>7</td>
<td>RTS</td>
<td>8</td>
<td>CTS</td>
</tr>
<tr>
<td>8</td>
<td>CTS</td>
<td>7</td>
<td>RTS</td>
</tr>
<tr>
<td>5</td>
<td>SGND</td>
<td>5</td>
<td>SGND</td>
</tr>
<tr>
<td>9</td>
<td>RI</td>
<td>9</td>
<td>RI</td>
</tr>
</table>
<p align="center"><img alt="db9" src="http://technotes.aarthis.com/images/rs232_db9.gif" border="0" /></p>
<p align="center"><strong>View - looking into male connector</strong></p>
<p><strong>NOTE:</strong></p>
<ol>
<li>We have received email suggesting that the above pinout looks like DTR from one side is driving into DSR/DCD on the other side - not normally a healthy situation. The emails miss the point that since both ends are DTEs NEITHER should be attempting to drive the DSR/DCD signals. They are essentialy RX only signals on both sides.</li>
</ol>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="null-cat5"></a>RS232 DB9 NULL Modem Pinout on CAT5</h2>
<p>This is in response to a number of recent emails asking how to wire both ends of a DB9 connection using cat5(e) cable. This must not be confused with <a class="t-db" href="#rj45">DB9 to RJ45 (RS232D)</a>. We have shown a null modem (back-to-back PCs) only configuration. And if you want to use cat5(e) with a real modem (a DB25 connector)? Our advice - don&#8217;t.</p>
<p><strong>Warning:</strong>. There is, as far as we know, no standard to cover the use of cat5(e) (8 conductor) wiring when used with two DB9 connectors. Any such wiring scheme is therefore non-standard - that includes the wiring scheme below. Specifically this means that both ends of the cable must be wired in the same way and that no assumptions can be made about how the other end is wired. You will have to manually inspect both ends of the connection. Damage can result from mis-matched wiring.</p>
<p>A DB9 clearly has 9 connections and a cat5(e) cable has 8 conductors. <a class="t-db" href="http://technotes.aarthis.com/rj45">RS232D</a> has chosen to use Pin 1 as a multi-function pin (DSR/RI) to provide maximum flexibility with modems - in particular it allows for DCD which is a meaningful signal from a modem but not we suggest from a peer PC. We have chosen to use a minor variation on the normal DB9 Null modem pinout above - specifically we have allowed for RI which could be used from a peer PC to commence a transmission sequence. The actual colors are unimportant but the suggested configuration is one way to provide the shortest use of the adjacent (twisted) pairs.</p>
<p>If this pinout does not work for you then you could try our <a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a> because you may need to SPOOF connections.</p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td colspan="3">PC1 Peer</td>
<td colspan="3">PC2 Peer</td>
</tr>
<tr>
<td>2</td>
<td>RD</td>
<td>Brown</td>
<td>3</td>
<td>TD</td>
<td>Blue</td>
</tr>
<tr>
<td>3</td>
<td>TD</td>
<td>Blue</td>
<td>2</td>
<td>RD</td>
<td>Brown</td>
</tr>
<tr>
<td>4</td>
<td>DTR</td>
<td>Green</td>
<td>6,1</td>
<td>DSR, DCD</td>
<td>Brown-white</td>
</tr>
<tr>
<td>6,1</td>
<td>DSR, DCD</td>
<td>Brown-white</td>
<td>4</td>
<td>DTR</td>
<td>Green</td>
</tr>
<tr>
<td>7</td>
<td>RTS</td>
<td>Blue-white</td>
<td>8</td>
<td>CTS</td>
<td>Green-white</td>
</tr>
<tr>
<td>8</td>
<td>CTS</td>
<td>Green-white</td>
<td>7</td>
<td>RTS</td>
<td>Blue-white</td>
</tr>
<tr>
<td>5</td>
<td>SGND</td>
<td>Orange</td>
<td>5</td>
<td>SGND</td>
<td>Orange</td>
</tr>
<tr>
<td>9</td>
<td>RI</td>
<td>Orange-white</td>
<td>9</td>
<td>RI</td>
<td>Orange-white</td>
</tr>
</table>
<p align="center"><img alt="db9" src="http://technotes.aarthis.com/images/rs232_db9.gif" border="0" /></p>
<p align="center"><strong>View - looking into male connector</strong></p>
<p><strong>NOTE:</strong></p>
<ol>
<li>We have received email suggesting that the above pinout looks like DTR from one side is driving into DSR/DCD on the other side - not normally a healthy situation. The emails miss the point that since both ends are DTEs NEITHER should be attempting to drive the DSR/DCD signals. They are essentialy RX only signals on both sides.</li>
</ol>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="db9_db25"></a>RS232 DB9 to DB25 Pinout</h2>
<p>Use when connecting a DB9 (e.g. a PC) to a DB25 (e.g. a modem) interface. See the full signal names in the <a class="t-db" href="#db9">DB9</a> and <a class="t-db" href="#db25">DB25</a> section.</p>
<p><a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a></p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 50px"><strong>DB9</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
<td style="width: 50px"><strong>DB25</strong></td>
</tr>
<tr>
<td>1</td>
<td>DCD</td>
<td>8</td>
</tr>
<tr>
<td>2</td>
<td>RD</td>
<td>3</td>
</tr>
<tr>
<td>3</td>
<td>TD</td>
<td>2</td>
</tr>
<tr>
<td>4</td>
<td>DTR</td>
<td>20</td>
</tr>
<tr>
<td>5</td>
<td>SGND</td>
<td>7</td>
</tr>
<tr>
<td>6</td>
<td>DSR</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>RTS</td>
<td>4</td>
</tr>
<tr>
<td>8</td>
<td>CTS</td>
<td>5</td>
</tr>
<tr>
<td>9</td>
<td>RI</td>
<td>22</td>
</tr>
</table>
<p align="center"><img alt="db9" src="http://technotes.aarthis.com/images/rs232_db9.gif" border="0" /></p>
<p align="center"><strong>View - looking into male connector</strong></p>
<p align="center"><img alt="db25" src="http://technotes.aarthis.com/images/rs232_db25.gif" border="0" /></p>
<p align="center">View - looking into male connector</p>
<p><strong>NOTE:</strong> Leave all pins not specified above unconnected.</p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="null_db9_db25"></a>RS232 DB9 to DB25 NULL Modem Pinout</h2>
<p>Use when connecting two systems (e.g. PCs) when one has a DB9 interface and the other a DB25 interface without a modem (i.e. back-to-back). See the full signal names in the <a class="t-db" href="#db9">DB9</a> and <a class="t-db" href="#db25">DB25</a> sections.</p>
<p><a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a></p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 50px"><strong>DB9</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
<td style="width: 50px"><strong>DB25</strong></td>
<td style="width: 80px"><strong>Signal</strong></td>
</tr>
<tr>
<td>2</td>
<td>RD</td>
<td>2</td>
<td>TD</td>
</tr>
<tr>
<td>3</td>
<td>TD</td>
<td>3</td>
<td>RD</td>
</tr>
<tr>
<td>4</td>
<td>DTR</td>
<td>6,8</td>
<td>DSR, DCD</td>
</tr>
<tr>
<td>6,1</td>
<td>DSR, DCD</td>
<td>20</td>
<td>DTR</td>
</tr>
<tr>
<td>7</td>
<td>RTS</td>
<td>5</td>
<td>CTS</td>
</tr>
<tr>
<td>8</td>
<td>CTS</td>
<td>4</td>
<td>RTS</td>
</tr>
<tr>
<td>5</td>
<td>SGND</td>
<td>7</td>
<td>SGND</td>
</tr>
<tr>
<td>9</td>
<td>RI</td>
<td>22</td>
<td>RI</td>
</tr>
</table>
<p align="center"><img alt="db9" src="http://technotes.aarthis.com/images/rs232_db9.gif" border="0" /></p>
<p align="center"><strong>View - looking into male connector</strong></p>
<p align="center"><img alt="db25" src="http://technotes.aarthis.com/images/rs232_db25.gif" border="0" /></p>
<p align="center">View - looking into male connector</p>
<p><strong>NOTE:</strong> Leave all pins not specified above unconnected.</p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="rs530"></a>EIA/TIA RS-530-A (DB25)</h2>
<p>RS 530-A defines the pinout when using either <a class="t-db" href="http://technotes.aarthis.com/heavy.htm#balanced">balanced</a> RS-422 (and RS-485) or <a class="t-db" href="http://technotes.aarthis.com/heavy.htm#balanced">unbalanced</a> RS-423 electrical interfaces using a DB25 connector. By using a DB25 connector RS-530 is now frequently used to replace many older standards which defined hideously huge connectors such <a class="t-db" href="#v35">V.35.</a> (used a whopping 35 pin connector) and RS-449 (used a pretty serious 37 pin connector).</p>
<h2><a name="v35"></a>V.35 on DB25 (RS-530-A)</h2>
<p>The original V.35 specification defined use of <a class="t-db" href="http://technotes.aarthis.com/heavy.htm#balanced">balanced signals</a> over a huge 37 pin connector. V.35 itself has been obsolete for years (replaced with V.10 and V.11) though the termin is frequently used. Most modern systems that call themselves V.35 use a DB25 connector which has more modest dimensions. The A (+) and B (-) below refer to each signal pair used in <a class="t-db" href="http://technotes.aarthis.com/heavy.htm#balanced">balanced serial interfaces</a>. When used with RS-423 (unbalanced) the B (-) are tied to a common ground. Signals marked U under Bal/Ubal are not balanced since they typically change very infrequently (for example once per session) and therefore do not affect TX/RX performance sensitivity - hence speed. <strong>BEWARE:</strong> RS-530 (without the A suffix) is an earlier standard and is wired differently. This is the 530-A pinout spec.</p>
<p><a class="t-db" href="http://technotes.aarthis.com/heavy.htm">Signal/pin primer</a></p>
<table class="p-m-s" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-n" valign="top">
<td style="width: 50px">Pin No.</td>
<td>Name</td>
<td>Bal/Ubal</td>
<td>Notes/Description</td>
</tr>
</table>
<p><strong>NOTES:</strong></p>
<ul>
<li>Leave any pins not specified above unconnected.</li>
<li>In balanced mode signals with the same name are the paired set, for example, pins 2 and 14 are both named BA and form the Transmit Data pair. Each signal of the pair is either a high (A+) or low (B-)</li>
<li>When used with RS-485 in half-duplex, multi-dropped environments a simple three signal arrangements is frequently used - one pin is used as a GND and RX/TX is alternately switched onto a balanced pair of wires which can be either the BA (TX) or BB (RX) pair.</li>
</ul>
<p align="center"><img alt="db25" src="http://technotes.aarthis.com/images/rs232_db25.gif" border="0" /></p>
<p align="center"><strong>View - looking into male connector</strong></p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="dbx"></a>DB - Designations for D-subminiature Connectors</h2>
<p>This lists the designations for DB connectors (supplied by Rob Recny - Thanks). Any errors in this list are ours not Rob&#8217;s.</p>
<ul>
<li>A - 15-pin 2-row joystick connector.</li>
<li>B - 25-pin 2-row serial or parallel connector - also 44-pin high-density 3-row.</li>
<li>C - 37-pin connector - sometimes found on multi-port serial or data acquisition boards.</li>
<li>D - 50-pin connector - a little longer than C, but three rows using the same pins as the 2-row connectors.</li>
<li>E - 9-pin 2-row serial - also 3-row VGA.</li>
</ul>
<p>So a DB9 is more properly a DE-9P. Isn&#8217;t knowledge a wonderful thing!</p>
<p><a href="#contents"><img alt="up icon" src="http://technotes.aarthis.com/images/go_up.gif" border="0" /></a></p>
<h2><a name="t1"></a>T1/E1 Pinout (RJ-48C)</h2>
<p>T1/E1 wiring may use either a RJ45, DB15 or BNC connectors. The pinout shown uses RJ45 connectors and is known as USOC RJ-48C. T1 is a North America (primarily) digital service providing 1.544 Mbps. E1 is a European/Rest of World standard providing digital service at 2.048 Mbps. CATegory 5(e) cabling is used to provide balanced pairs. The color coding for Cat 5(e) cabling may be <a class="t-db" href="http://technotes.aarthis.com/tech_lan.htm#color">568A or 568B</a>.</p>
<table class="p-m-n" cellspacing="0" cellpadding="4" align="center" border="1">
<tr class="g-h-s" valign="top">
<td style="width: 80px">RJ45 Pin</td>
<td style="width: 80px">Signal</td>
<td>Notes</td>
</tr>
<tr>
<td>1</td>
<td>RX1</td>
<td> </td>
</tr>
<tr>
<td>2</td>
<td>RX2</td>
<td> </td>
</tr>
<tr>
<td>3</td>
<td>FGND</td>
<td>Ground/Shield</td>
</tr>
<tr>
<td>4</td>
<td>TX1</td>
<td> </td>
</tr>
<tr>
<td>5</td>
<td>TX2</td>
<td> </td>
</tr>
<tr>
<td>6</td>
<td>FGND</td>
<td>Ground/Shield</td>
</tr>
<tr>
<td>7</td>
<td>NC</td>
<td>Unused</td>
</tr>
<tr>
<td>8</td>
<td>NC</td>
<td>Unused</td>
</tr>
</table>
<p><strong>NOTE:</strong> NC = Not connected.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=30</wfw:commentRSS>
		</item>
		<item>
		<title>Some exposure basics</title>
		<link>http://technotes.aarthis.com/?p=29</link>
		<comments>http://technotes.aarthis.com/?p=29#comments</comments>
		<pubDate>Sun, 12 Nov 2006 08:51:36 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
	<category>Photography related</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=29</guid>
		<description><![CDATA[http://www.fredparker.com/ultexp1.htm
 
 


]]></description>
			<content:encoded><![CDATA[<p><font face="Verdana, Arial, Helvetica" size="3"><a href="http://www.fredparker.com/ultexp1.htm">http://www.fredparker.com/ultexp1.htm</a><a href="http://www.fredparker.com/" /></font></p>
<p><font face="Verdana, Arial, Helvetica" size="3"><font face="Verdana, Arial, Helvetica"><font face="Verdana, Arial, Helvetica" /><font face="Verdana, Arial, Helvetica" size="3"><font face="Verdana, Arial, Helvetica" /></font></font></font><font face="Verdana, Arial, Helvetica" size="3"><font face="Verdana, Arial, Helvetica"><font face="Verdana, Arial, Helvetica" size="3"><font face="Verdana, Arial, Helvetica"> </p>
<p></font></font> </p>
<p></font></font>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=29</wfw:commentRSS>
		</item>
		<item>
		<title>Some photographic Magazine Links</title>
		<link>http://technotes.aarthis.com/?p=28</link>
		<comments>http://technotes.aarthis.com/?p=28#comments</comments>
		<pubDate>Sat, 11 Nov 2006 12:59:56 +0000</pubDate>
		<dc:creator>technotes</dc:creator>
		
	<category>Uncategorized</category>
	<category>Photography related</category>
		<guid isPermaLink="false">http://technotes.aarthis.com/?p=28</guid>
		<description><![CDATA[ 
http://www.ourcapital.ca
http://www.zoozoom.com/
http://www.zinkmag.com/
http://www.myspace.com/35mmmagazine
http://www.visionaireworld.com/v2/fla_site/site.html
http://magazine.tigermagazine.org/
http://www.sunny16.ca/
http://www.betterphoto.com/galleryTOCDynoSub.asp?cat=541
http://www.selfservicemagazine.com/
http://www.eccentris.com/splash.htm
http://www.portfoliocatalogue.com/ ( I subscribe too this )
http://www.photoworksuk.org/index.htm ( I have a few issues )
http://www.urban75.org/photos/
http://www.photoarts.com/
http://www.time.com/time/photoessays/index.html
http://www.lumiere.com/
http://www.intothestorm.com/
http://www.european-photography.com/
http://www.fiftycrows.org/
http://cds.aas.duke.edu/
http://www.bigmagazine.com/home.htm
http://www.aperture.org/store/default.aspx
http://www.anothermag.com/
http://www.dresslab.com/
 

]]></description>
			<content:encoded><![CDATA[<p> </p>
<p><a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.ourcapital.ca/" target="_blank"><font color="#0000dd">http://www.ourcapital.ca</font></a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.zoozoom.com/" target="_blank">http://www.zoozoom.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.zinkmag.com/" target="_blank">http://www.zinkmag.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.myspace.com/35mmmagazine" target="_blank">http://www.myspace.com/35mmmagazine</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.visionaireworld.com/v2/fla_site/site.html" target="_blank">http://www.visionaireworld.com/v2/fla_site/site.html</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://magazine.tigermagazine.org/" target="_blank">http://magazine.tigermagazine.org/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.sunny16.ca/" target="_blank">http://www.sunny16.ca/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.betterphoto.com/galleryTOCDynoSub.asp?cat=541" target="_blank">http://www.betterphoto.com/galleryTOCDynoSub.asp?cat=541</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.selfservicemagazine.com/" target="_blank">http://www.selfservicemagazine.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.eccentris.com/splash.htm" target="_blank">http://www.eccentris.com/splash.htm</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.portfoliocatalogue.com/" target="_blank">http://www.portfoliocatalogue.com/</a> ( I subscribe too this )<br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.photoworksuk.org/index.htm" target="_blank">http://www.photoworksuk.org/index.htm</a> ( I have a few issues )<br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.urban75.org/photos/" target="_blank">http://www.urban75.org/photos/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.photoarts.com/" target="_blank">http://www.photoarts.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.time.com/time/photoessays/index.html" target="_blank">http://www.time.com/time/photoessays/index.html</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.lumiere.com/" target="_blank">http://www.lumiere.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.intothestorm.com/" target="_blank">http://www.intothestorm.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.european-photography.com/" target="_blank">http://www.european-photography.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.fiftycrows.org/" target="_blank">http://www.fiftycrows.org/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://cds.aas.duke.edu/" target="_blank">http://cds.aas.duke.edu/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.bigmagazine.com/home.htm" target="_blank">http://www.bigmagazine.com/home.htm</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.aperture.org/store/default.aspx" target="_blank">http://www.aperture.org/store/default.aspx</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.anothermag.com/" target="_blank">http://www.anothermag.com/</a><br />
<a class="forumsmessage" title="Click to open link in a new browser window" href="http://www.dresslab.com/" target="_blank">http://www.dresslab.com/</a><br />
 
</p>
]]></content:encoded>
			<wfw:commentRSS>http://technotes.aarthis.com/?feed=rss2&amp;p=28</wfw:commentRSS>
		</item>
	</channel>
</rss>

