<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4345070748261208643</id><updated>2012-02-06T19:10:05.832-05:00</updated><category term='burncd'/><category term='online taxes'/><category term='bsd taxes'/><category term='rip cd'/><category term='rip'/><category term='web'/><category term='dd'/><category term='security'/><category term='perl'/><category term='turbotax'/><category term='c610'/><category term='vncserver'/><category term='about'/><category term='preference'/><category term='settings'/><category term='Mime::Parser'/><category term='vnc'/><category term='taxcut'/><category term='config'/><category term='audio cd backup'/><category term='taxact'/><category term='tax'/><category term='dell'/><category term='firefox'/><category term='realvnc'/><category term='vncviewer'/><category term='copy cd'/><category term='c510'/><category term='captcha'/><category term='taxes'/><category term='about:config'/><category term='latitude'/><category term='recaptcha'/><category term='Mail::Mailer'/><category term='freebsd'/><category term='Bugzilla'/><category term='mozilla'/><category term='Image::Magick'/><title type='text'>Scripty the Kid's: Talking With Daemons</title><subtitle type='html'>Covering usefull information related to the BSD's and the software community surrounding it.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-5766381971796369512</id><published>2008-08-29T22:08:00.005-05:00</published><updated>2008-09-11T09:28:03.070-05:00</updated><title type='text'>Centralized Syslog With FreeBSD</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It is impossible to manage log files across a large multitude of servers.  To assist with this syslog is able to send all messages to a single server.  This makes keeping track and filtering much easier.  It also reduces the time it takes to check the logs as only one login is needed.  In this article only the use of the default syslog server which comes with FreeBSD will be covered.  There are other ways of centralizing, viewing, and beautifying logs such as with syslog-ng and php-syslog-ng which will not be covered here.&lt;br /&gt;&lt;br /&gt;In this example we'll use a fake environment with only the central syslog server and a single workstation for simplicity.  Our small networks syslog server will be fbsd-syslog with an ip of 192.168.0.10 and the workstation will be called fbsd-wrk with an ip of 192.168.0.11.&lt;br /&gt;&lt;br /&gt;First we must tell the central server to listen to fbsd-wrk.  To do this we must append to /etc/syslog.conf .  It is always a good idea to back up the original file to something like /etc/syslog.conf.bak in case things go wrong.  Add the following to the end of /etc/syslog.conf on the central server (fbsd-syslog).&lt;br /&gt;&lt;br /&gt;!*&lt;br /&gt;+192.168.0.11&lt;br /&gt;*.*     /var/log/messages&lt;br /&gt;&lt;br /&gt;This is simplicity at it's finest.  It allows 192.168.0.11 access to the central server to write any file named *.* to /var/log/messages.  By default each install sends logs to different locations.  For example, by default FreeBSD has a line showing cron.* /var/log/cron .  This sends all log files called cron.* to /var/log/cron.  We could separate cron messages from our workstation (fbsd-wrk) by doing the following.&lt;br /&gt;&lt;br /&gt;!*&lt;br /&gt;+192.168.0.11&lt;br /&gt;cron.* /var/log/cron.fbsd-wrk&lt;br /&gt;*.*     /var/log/messages&lt;br /&gt;&lt;br /&gt;There are many more variations and applications other than cron that send messages.  Any of these can be sent to a different location as above.  A little Googling on the net will produce more details.  Continuing with our simple example of receiving all messages and putting them on /var/log/messages, we now need to tell fbsd-wrk to send it's messages to fbsd-syslog.  To do this fbsd-wrk must have it's /etc/syslog.conf file modified to read like the following.&lt;br /&gt;&lt;br /&gt;*.*     @192.168.0.10&lt;br /&gt;&lt;br /&gt;That is all that should be present in fbsd-wrk's /etc/syslog.conf file.   Now simply restart syslogd on both machines by running the following as root.&lt;br /&gt;&lt;br /&gt;# /etc/rc.d/syslogd restart&lt;br /&gt;&lt;br /&gt;To verify that this worked log into the central syslog server, fbsd-syslog in our example, and type the following.&lt;br /&gt;&lt;br /&gt;# tail -f /var/log/messages&lt;br /&gt;&lt;br /&gt;In another terminal log into the workstation, fbsd-wrk in our example, and type the following.&lt;br /&gt;&lt;br /&gt;# logger hello world&lt;br /&gt;&lt;br /&gt;Our "hello world" message should appear on the `tail` running on the central server.  If the syslog server is receiving a lot of log entries, the log files may be turned over too frequently.  This can be remedied by changing the "size" column entry in /etc/newsyslog.conf .  That's it, enjoy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-5766381971796369512?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/5766381971796369512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=5766381971796369512' title='45 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/5766381971796369512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/5766381971796369512'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2008/08/centralized-syslog-with-freebsd.html' title='Centralized Syslog With FreeBSD'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>45</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-6763495495506773421</id><published>2008-01-30T11:58:00.002-05:00</published><updated>2008-08-29T22:18:42.914-05:00</updated><title type='text'>Distributed Command Execution with Perl</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://blog.debu9.com/assets/2008/2/9/perl-camel.png"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px;" src="http://blog.debu9.com/assets/2008/2/9/perl-camel.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;In modern workplaces, it is unreasonable to expect system administrators to manually run commands across vast numbers of servers.  It is simply inneficient and unessesary.  In order to resolve this many remote administration tools have been created.  Tools vary from distributed shells to configuration management sofware.  These tools may be overkill for smaller environments.  To add to the multitude of distributed tools the following Perl script was created.  Using the script is simple.  First change the @bsdhosts array elements to the hostnames in your environment.  Second, change the word "user" to a valid username that can ssh into the remote hosts.  Finnally, change `pwd;ls` to whatever command needs to be performed on the remote hosts.  To run multiple commands within one session, simply use a semicolon to seperate the commands as shown below.  Passwords can be avoided by using `keygen`.  There are many sites describing how to do this on the net.  Here is one such location to get you started &lt;a href="http://gentoo-wiki.com/SECURITY_SSH_without_a_password"&gt;http://gentoo-wiki.com/SECURITY_SSH_without_a_password&lt;/a&gt; .  In short, for a small environment where there is no need for a complex distributed solution a simple Perl script can step up to the task.  Enjoy!&lt;br /&gt;&lt;br /&gt;&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 405px; height: 290px;"&gt;#!/usr/bin/perl&lt;br /&gt;&lt;br /&gt;###########################################################&lt;br /&gt;# Summary: An easily modified script to run remote commands.&lt;br /&gt;#&lt;br /&gt;# Last modified: 01/30/2008&lt;br /&gt;#&lt;br /&gt;# Author: Javier Prats&lt;br /&gt;#&lt;br /&gt;###########################################################&lt;br /&gt;&lt;br /&gt;use warnings;&lt;br /&gt;use diagnostics;&lt;br /&gt;use strict;&lt;br /&gt;&lt;br /&gt;our $counter;&lt;br /&gt;our @bsdhosts=qw(hostname1 hostname2 hostname3 hostname4);&lt;br /&gt;&lt;br /&gt;foreach $counter (@bsdhosts)&lt;br /&gt;{&lt;br /&gt;       my @command= ("/usr/bin/ssh user\@$counter pwd;ls");&lt;br /&gt;       system(@command);&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-6763495495506773421?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/6763495495506773421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=6763495495506773421' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/6763495495506773421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/6763495495506773421'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2008/01/distributed-command-execution-with-perl.html' title='Distributed Command Execution with Perl'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-5185318797550218163</id><published>2007-11-29T10:49:00.000-05:00</published><updated>2007-11-29T11:31:29.651-05:00</updated><title type='text'>Checking Disk Space Remotely</title><content type='html'>&lt;div style="text-align: left;"&gt;Recently I have been looking for ways to monitor disk space of remote servers.  We have a Nagios server that has the NRPE plugin.  This works fine on Linux, but I recieved an error on FreeBSD.  Creating a script to do these checks seemed like it would be quicker than configuring the NRPE plugin to work.  Before reinventing the wheel I Googled around and found a very helpful bash script &lt;a href="http://nixcraft.com/shell-scripting/3238-shell-script-check-disk-space-remote-systems.html"&gt;here&lt;/a&gt;  which can also be found below.&lt;br /&gt;-&lt;br /&gt;&lt;/div&gt;&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 420px; height: 242px;"&gt;#!/bin/bash&lt;br /&gt;ADMIN="me@somewher.com"&lt;br /&gt;ALERT=70&lt;br /&gt;ssh user@ip-address.com df -H  &gt; /tmp/df.out&lt;br /&gt;cat /tmp/df.out | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;&lt;br /&gt;do&lt;br /&gt;#echo $output&lt;br /&gt;usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1  )&lt;br /&gt;partition=$(echo $output | awk '{ print $2 }' )&lt;br /&gt;if [ $usep -ge $ALERT ]; then&lt;br /&gt;echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |&lt;br /&gt;mail -s "Alert: Almost out of disk space $usep" $ADMIN&lt;br /&gt;fi&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;br /&gt;Although, this does what I am attempting to accomplish, we do not have Bash on our FreeBSD servers.  Below you can find my Ksh93 port of the script.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;pre class="alt2" dir="ltr" style="border: 1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 420px; height: 242px;"&gt;1 #!/usr/local/bin/ksh&lt;br /&gt;2&lt;br /&gt;3 ############################################################################################&lt;br /&gt;4 #&lt;br /&gt;5 # Summary:&lt;br /&gt;6 # This script checks disk usage on remote hosts.&lt;br /&gt;7 # Based on a script by Nixcraft posted on&lt;br /&gt;8 # http://nixcraft.com/shell-scripting/3238-shell-script-check-disk-space-remote-systems.html&lt;br /&gt;9 # which was modified and ported to Ksh by Javier Prats&lt;br /&gt;10 #&lt;br /&gt;11 # Author[s]: Nixcraft, Javier Prats&lt;br /&gt;12 #&lt;br /&gt;13 # Last Modified: 11/28/07&lt;br /&gt;14 #&lt;br /&gt;15 ############################################################################################&lt;br /&gt;16&lt;br /&gt;17 ADMIN="user@emailaddress.com"&lt;br /&gt;18 ALERT=70&lt;br /&gt;19&lt;br /&gt;20 typeset -i usep&lt;br /&gt;21 typeset -A hostnames&lt;br /&gt;22 set -A hostnames hostname1 hostname2 hostname3 hostname4&lt;br /&gt;23&lt;br /&gt;24 for i in ${hostnames[@]}&lt;br /&gt;25 do&lt;br /&gt;26         print "checking $i";&lt;br /&gt;27         ssh user@${i} df -H &gt; ~/df.out&lt;br /&gt;28         cat ~/df.out | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;&lt;br /&gt;29&lt;br /&gt;30         do&lt;br /&gt;31                 #echo $output&lt;br /&gt;32                 usep=`echo $output | awk '{print $1}' | cut -d'%' -f1`&lt;br /&gt;33                 partition=`echo $output | awk '{print $2}'`&lt;br /&gt;34                 if (($usep &gt;= $ALERT))&lt;br /&gt;35                 then echo "Running out of space \"$partition ($usep%)\" on ${i} as on `date +%m/%d/%Y`"|mail -s "Alert: Almost out of disk space $usep" $ADMIN&lt;br /&gt;36                 fi&lt;br /&gt;37         done&lt;br /&gt;38 done&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;br /&gt;A few things will need to be modified.  First the "ADMIN" variable on line 17 needs to be a valid email address to recieve alerts on.  Second, an array was added to the original script in order to be able to check multiple servers.  Change "hostname1", "hostname2", etc on line 22 to valid hostnames you would like to check. Finally, this script uses ssh, so the user on line 27 must be modified to show a real username. On line 18 there is an "ALERT" variable.  This sets the threshold for email alerts.  By default email alerts are sent when disk usage is above 70%.  This value can be changed to whatever is deemed reasonable.  Enjoy.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-5185318797550218163?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/5185318797550218163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=5185318797550218163' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/5185318797550218163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/5185318797550218163'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/11/check-disk-space-remotely.html' title='Checking Disk Space Remotely'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-5178943232677043046</id><published>2007-09-01T10:18:00.001-05:00</published><updated>2007-09-01T10:38:44.048-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='Mail::Mailer'/><category scheme='http://www.blogger.com/atom/ns#' term='Mime::Parser'/><category scheme='http://www.blogger.com/atom/ns#' term='Image::Magick'/><category scheme='http://www.blogger.com/atom/ns#' term='perl'/><category scheme='http://www.blogger.com/atom/ns#' term='Bugzilla'/><title type='text'>Bugzilla on FreeBSD</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.bugzilla.org/img/buggie.png"&gt;&lt;img style="margin: 0pt 0pt 10px 125px; float: right; cursor: pointer; width: 95px;" src="http://www.bugzilla.org/img/buggie.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;When asked to install Bugzilla at work, I wasn't concerned since FreeBSD has it in the ports tree.  However, when it came to installing the necessary Perl modules I came accross a few issues.  To install Bugzilla, the documentation at&lt;span style="text-decoration: underline;"&gt; &lt;/span&gt;&lt;a href="http://www.bugzilla.org/docs/2.22/html/index.html"&gt;http://www.bugzilla.org/docs/2.22/html/index.html&lt;/a&gt; was being used.  Three of the required modules were producing  "/usr/bin/make --NOT-OK" errors.  This result could not be replicated on all machines so it does not appear to be a problem with the modules themselves.  I found workarounds for all three modules.  Here is how to get them installed if you experience the same snags and are limited on time.   First was the MIME::Parser module.  MIME::Parser also had a "must use force to install" message in it's error.  From the Perl CPAN shell, accessed by using `/usr/bin/perl -MCPAN -e shell`, simply type `make -f MIME::Parser`.   Second was the Mail::Mailer module.  After some research I found that this module is included in /usr/ports/mail/p5-Mail-Tools.  I suspect there is some difference in modules as the port version installed without any complaints.   Finnally was the Image::Magick module.  ImageMagick's Makefile shows an option USE_PERL5=YES.  In experimentation I installed ImageMagick without any other knobs.  To ensure that this resolved the problem I ran Bugzilla's  checksetup.pl again.  That's all there was to the process. There wasn't enough time to actually research what the cause of these problems was.  If anyone else has come across these please feel free to post your findings.  Anyone else in a similar situation should find this to be an acceptable and fast workaround with a larger footprint being the only consequence.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-5178943232677043046?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/5178943232677043046/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=5178943232677043046' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/5178943232677043046'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/5178943232677043046'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/09/bugzilla-on-freebsd.html' title='Bugzilla on FreeBSD'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-786888578926440146</id><published>2007-08-27T21:11:00.001-05:00</published><updated>2007-08-28T18:49:18.665-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rip cd'/><category scheme='http://www.blogger.com/atom/ns#' term='burncd'/><category scheme='http://www.blogger.com/atom/ns#' term='audio cd backup'/><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='dd'/><category scheme='http://www.blogger.com/atom/ns#' term='copy cd'/><category scheme='http://www.blogger.com/atom/ns#' term='perl'/><category scheme='http://www.blogger.com/atom/ns#' term='rip'/><title type='text'>Burning audio CD's in FreeBSD</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;There are many places which show the process of extracting tracks from a CD and then burning the audio to a backup CD.  Most of these directions however are very "hands on".  Below you will find a way to automate the process with a simple Perl script.  It is not very intelligent (I may work on this further later) but at least it saves a lot of typing.  If your CDROM device is not "acd0" make the appropriate changes.  Simply copy this script into a text file, save it, and make sure it's made executable.   You will probably have to run this script as root.&lt;br /&gt;&lt;br /&gt;#!/usr/local/bin/perl&lt;br /&gt;&lt;br /&gt;##########################################&lt;br /&gt;#  Summary:&lt;br /&gt;#  This is a script to remove some of the&lt;br /&gt;#  redundancy and monotony of burning an&lt;br /&gt;#  audio CD in FreeBSD.&lt;br /&gt;#&lt;br /&gt;#  Dependancies:&lt;br /&gt;#  Perl, dd, burncd&lt;br /&gt;#&lt;br /&gt;#  Last modified: 08/27/2007&lt;br /&gt;#&lt;br /&gt;##########################################&lt;br /&gt;&lt;br /&gt;use warnings;&lt;br /&gt;use diagnostics;&lt;br /&gt;use strict;&lt;br /&gt;&lt;br /&gt;my @tracks;&lt;br /&gt;my $counter;&lt;br /&gt;my $extension=".cdr";&lt;br /&gt;&lt;br /&gt;# Make sure the correct files are in /dev.&lt;br /&gt;# Retaste the media.&lt;br /&gt;&lt;br /&gt;system(`dd if=/dev/acd0 of=/dev/null count=1`);&lt;br /&gt;&lt;br /&gt;# Create a list of all tracks in /dev&lt;br /&gt;system(`ls /dev|grep acd0t &amp;gt; tracklist.tmp`);&lt;br /&gt;&lt;br /&gt;# Assign all the tracks in the list to&lt;br /&gt;# the @tracks array.&lt;br /&gt;open(TRACKS, "tracklist.tmp");&lt;br /&gt;chomp(@tracks=&amp;lt;TRACKS&amp;gt;);&lt;br /&gt;close (TRACKS);&lt;br /&gt;  system(`rm tracklist.tmp`);&lt;br /&gt;&lt;br /&gt;# Rip each track.&lt;br /&gt;foreach $counter (@tracks)&lt;br /&gt;{&lt;br /&gt;        system(`dd if=/dev/$counter of=$counter$extension bs=2352`);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;# Prompt for a blank CD and burn it.&lt;br /&gt;print "Please enter a blank CD and press enter.";&lt;br /&gt;&amp;lt;STDIN&amp;gt;;&lt;br /&gt;system(`burncd -f /dev/acd0 audio *.cdr fixate`);&lt;br /&gt;system(`rm *.cdr`);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-786888578926440146?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/786888578926440146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=786888578926440146' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/786888578926440146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/786888578926440146'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/08/burning-audio-cds-in-freebsd.html' title='Burning audio CD&apos;s in FreeBSD'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-8526512290920171444</id><published>2007-08-10T07:51:00.001-05:00</published><updated>2007-08-27T21:40:32.483-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='vncserver'/><category scheme='http://www.blogger.com/atom/ns#' term='vncviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='vnc'/><category scheme='http://www.blogger.com/atom/ns#' term='realvnc'/><title type='text'>Using VNC</title><content type='html'>Most of us work in hybrid environments.&amp;nbsp; In most cases end users will have Windows machines, designers will be on OS X, and the servers will be running some form of *nix.&amp;nbsp; Rdesktop is a very good solution if one just needs to RDP into a Windows box, but what if you need to get on an OS X machine or need to see Xorg on another machine.&amp;nbsp; VNC is available for all three of these platforms.&amp;nbsp; VNC performs its job well although slow. &lt;br&gt;&lt;br&gt;I&amp;#39;ll mainly be describing the FreeBSD configuration as this is a BSD site and FreeBSD it the flavor I&amp;#39;m most familiar with.&amp;nbsp; This process should be very similar across all the *nix.&amp;nbsp; Feel free to add OS specific instructions.&amp;nbsp; I&amp;#39;ll gladly post them.&amp;nbsp; Use the relevant porting system or package manager in your case.&amp;nbsp; For FreeBSD it is available in the ports tree.&amp;nbsp; If the machine which will be installed on only needs the client, VNC can be compiled without it.&amp;nbsp; From /usr/ports/net/vnc type `make -DWITHOUT_SERVER install clean` and only the client will be built.&amp;nbsp; All the options can be seen in the MakeFile for ports. &lt;br&gt;&lt;br&gt;If the computer is going to accept VNC clients the server needs to be started as the user that will be logging in.&amp;nbsp; For example, if user guest01 wants to vnc into a FreeBSD VNC server from a Windows machine he/she must log into the FreeBSD machine as guest01 (or `su` as guest01) and run `vncserver`.&amp;nbsp; VNCserver will ask for a password.&amp;nbsp; Whatever you provide as a password is what will be used to authenticate the client.&amp;nbsp; For simplicity I recommend using the same password that is used to login to the FreeBSD machine.&amp;nbsp; VNCserver will then show the hostname followed by :1 .&amp;nbsp; This shows what port VNCserver for user guest01 is running on.&amp;nbsp; Now user guest01 can start VNCviewer from his/her windows machine, fill the host field with &amp;quot;hostname:1&amp;quot;, type password that was set, and should connect. &lt;br&gt;&lt;br&gt;When VNCviewer is started for the first time it defaults to the TWM window manager.&amp;nbsp; Each user has a .vnc directory in his/her home directory containing a file called xstartup.&amp;nbsp; This file is used similarly to .xinitrc.&amp;nbsp; If one prefers to use Fluxbox for example, simply comment out or delete the line containing twm and add fluxbox&amp;amp;.&amp;nbsp; This will cause VNCviewer to start in Fluxbox from now on.&amp;nbsp; The file will look similar to the following. &lt;br&gt;&lt;br&gt;#!/bin/sh&lt;br&gt;&lt;br&gt;[ -r $HOME/.Xresources ] &amp;amp;&amp;amp; xrdb $HOME/.Xresources&lt;br&gt;xsetroot -solid grey&lt;br&gt;vncconfig -iconic &amp;amp;&lt;br&gt;xterm -geometry 80x24+10+10 -ls -title &amp;quot;$VNCDESKTOP Desktop&amp;quot; &amp;amp;&lt;br&gt;#twm &amp;amp; &lt;br&gt;fluxbox&amp;amp;&lt;br&gt;&lt;br&gt;As sessions are started by different users the port numbers will increase.&amp;nbsp; A lock file is created in /tmp for each session.&amp;nbsp; This tells the vncserver what is available for users to use.&amp;nbsp; Using the above example, there will be a file called /tmp/.X1-lock .&amp;nbsp; These lock files remain and as users forget what port they were on and start new VNCserver instances port numbers and lock files can grow out of control.&amp;nbsp; Investigate which sessions are not being used and then `kill` them.&amp;nbsp; Running `ps aux|grep vnc` returns the vnc sessions, their owner, and what port it is running on.&amp;nbsp; Finnally go into /tmp and remove the lock file for the relevant port. &lt;br&gt;&lt;br&gt;VNC does not have good security.&amp;nbsp; Although it is beyond the scope of this quick how-to, it is possible to tunnel VNC over SSH.&amp;nbsp; This adds great encryption with a minimal hit on performance.&amp;nbsp; Below are two good articles explaining how tunneling can be accomplished. &lt;br&gt;&lt;br&gt;&lt;a href="http://www.vnc.com/pipermail/vnc-list/2005-October/052697.html"&gt;http://www.vnc.com/pipermail/vnc-list/2005-October/052697.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href="http://www.oreillynet.com/cs/user/view/cs_msg/24540"&gt;http://www.oreillynet.com/cs/user/view/cs_msg/24540 &lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Although VNC is not the smoothest or most secure way to graphically connect different operating systems it is one of the most compatible and easiest to use.&amp;nbsp; &lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-8526512290920171444?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/8526512290920171444/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=8526512290920171444' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/8526512290920171444'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/8526512290920171444'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/08/using-vnc.html' title='Using VNC'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-6917825608018770425</id><published>2007-05-25T01:58:00.001-05:00</published><updated>2007-08-27T21:41:49.456-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='captcha'/><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><category scheme='http://www.blogger.com/atom/ns#' term='recaptcha'/><title type='text'>reCAPTCHA</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Recently, Slashdot featured an &lt;a href="http://www.networkworld.com/community/?q=node/15522"&gt;article&lt;/a&gt; about a new version of CAPTCHA called &lt;A href="http://recaptcha.net/"&gt;reCAPTCHA&lt;/a&gt;. &amp;nbsp;CAPTCHA is the letters that are usually crossed out or distorted in some fashion on web pages. &amp;nbsp;Usually the user is asked to re-enter these letters for validation purposes. &amp;nbsp;CAPTCHA prevents bots and form completing software from accessing the site. &amp;nbsp;Since these letters and numbers are usually images, as opposed to actual characters, bots cannot recognize them. &amp;nbsp;Sites using CAPTCHA can now give back to the community by using reCAPTCHA. &amp;nbsp;Instead of using random numbers and letters purely for authentication, reCAPTCHA uses text from scanned books which image recognition software did not validate. &amp;nbsp;This means when a user validates he or she is actually contributing to the act of publishing one of these scanned texts to the web. &amp;nbsp;This is a fantastic idea! &amp;nbsp;Web sites continue to deny bots access while at the same time helping release new text to the community. &amp;nbsp;Implementing reCAPTCHA onto a site is not a very complicated task. &amp;nbsp;Users are required to enter a little more text then with CAPTCHA, but this is a trivial down side considering the benefits in my opinion. &amp;nbsp;It would be great to see webmasters, developers, and admins contribute the small amount of time it would take to convert their sites to reCAPTCHA.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-6917825608018770425?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/6917825608018770425/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=6917825608018770425' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/6917825608018770425'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/6917825608018770425'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/05/recaptcha.html' title='reCAPTCHA'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-7216808722672253307</id><published>2007-04-12T07:16:00.000-05:00</published><updated>2007-04-14T06:39:14.973-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tax'/><category scheme='http://www.blogger.com/atom/ns#' term='security'/><category scheme='http://www.blogger.com/atom/ns#' term='online taxes'/><category scheme='http://www.blogger.com/atom/ns#' term='turbotax'/><title type='text'>Tax Software Update</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" border="0" alt="" /&gt;&lt;/a&gt;I just stumbled across an article relevant to my "BSD Friendly Tax Software" post.  Apparently TurboTax has more problems than a poor interface. slowness, and incompatibility.  It seems it also allows users to look at other customer's returns.  This is obviously a huge security concern and creates a threat of identity theft.  For more information look at the nbc4.com article &lt;a href="http://www.nbc4.com/money/11588165/detail.html"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-7216808722672253307?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/7216808722672253307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=7216808722672253307' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/7216808722672253307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/7216808722672253307'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/04/tax-software-update.html' title='Tax Software Update'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-6965071335423786146</id><published>2007-04-06T02:35:00.001-05:00</published><updated>2007-04-10T05:46:32.256-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bsd taxes'/><category scheme='http://www.blogger.com/atom/ns#' term='taxes'/><category scheme='http://www.blogger.com/atom/ns#' term='taxcut'/><category scheme='http://www.blogger.com/atom/ns#' term='online taxes'/><category scheme='http://www.blogger.com/atom/ns#' term='turbotax'/><category scheme='http://www.blogger.com/atom/ns#' term='taxact'/><title type='text'>BSD Friendly Tax Software</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Tax time is approaching it&amp;#39;s frantic last minute rush.&amp;nbsp; Over the last few years more companies have been offering there software online.&amp;nbsp; This is a great change for BSD users who are usually neglected when it comes to software compatibility.&amp;nbsp; Most of the web based services run in-browser making the OS irrelevant allowing users of superior operating systems to avoid the long waits at the post office and tax preparation offices.&amp;nbsp; Here is a quick overview of some of the more popular web based tax preparation software. &lt;br /&gt;&lt;br /&gt;My first look into tax preparation was very disappointing.&amp;nbsp; TurboTax, one of the senior and most known pieces of tax software, complained about my operating system as most of these services do.&amp;nbsp; Unlike the others though, it does not have an option to continue anyways.&amp;nbsp; Why TurboTax does not allow me to continue at my own risk is incomprehensible.&amp;nbsp; A large portion of potential users has been lost.&amp;nbsp;&amp;nbsp; I immediately dismissed this service due to it&amp;#39;s frustrating lack of support.&amp;nbsp; For those who may be able to use the software via Wine or some other similar method the only other guidance that I can give on this software is that if simple W2 forms are all that are being submitted it is free to use.&amp;nbsp; If you require some of the extra features such as 1099 forms it is more expensive than some of the following options. &lt;br /&gt;&lt;br /&gt;Next was TaxCut.&amp;nbsp; TaxCut partnered with H&amp;amp;R Block a few years ago.&amp;nbsp; Like most of these services Taxcut also complained about my operating system, but allowed me to continue.&amp;nbsp; Despite, it&amp;#39;s complaint there were no problems preparing my taxes.&amp;nbsp; TaxCut is cheaper than TurboTax when it comes to the &amp;quot;Premium&amp;quot; versions, but for basic W2 filling, TurboTax and TaxAct are free.&amp;nbsp; TaxCut is a little slow to load it&amp;#39;s pages, but it&amp;#39;s tolerable.&amp;nbsp; Most fields in the forms have links to in depth explanations on what the options mean.&amp;nbsp; There is also an option to submit questions to a &amp;quot;tax professional&amp;quot; if further assistance is needed. &lt;br /&gt;&lt;br /&gt;My final review is of TaxAct.&amp;nbsp; TaxAct is also free for the basic version, but it costs $9.95 for the "Deluxe" version.  This is still cheap compared to TaxCut.  It was good not to see a warning of my incompatible OS.  After creating a user account TaxAct went right to buisness.  TaxAct is the slowest of the three tax preparation options reviewed.  It is slow to load it's pages and the interface is long and slow by design.  Where TaxCut asks for several pieces of information per form, TaxAct only gathers three or four at a time.  There is a relatively short timeout in TaxAct.  Somewhere around ten minutes in my estimation.  This is good for security, but a little annoying if you need a restroom or snack break during your taxes.  Another weak point of TaxAct is it's little amount of assistance. Other than the aforementioned the other features are similar to it's competitors.&lt;br /&gt;&lt;br /&gt;Overall I feel that the best piece of software is TaxCut due to it's interface, assistance, and compatibility.  If value is what your looking for and you have a little patience TaxAct is not too far behind.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-6965071335423786146?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/6965071335423786146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=6965071335423786146' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/6965071335423786146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/6965071335423786146'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/04/bsd-friendly-tax-software.html' title='BSD Friendly Tax Software'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-706298407854006313</id><published>2007-03-26T02:22:00.000-05:00</published><updated>2007-03-27T06:47:49.245-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='about'/><category scheme='http://www.blogger.com/atom/ns#' term='firefox'/><category scheme='http://www.blogger.com/atom/ns#' term='preference'/><category scheme='http://www.blogger.com/atom/ns#' term='about:config'/><category scheme='http://www.blogger.com/atom/ns#' term='settings'/><category scheme='http://www.blogger.com/atom/ns#' term='config'/><category scheme='http://www.blogger.com/atom/ns#' term='mozilla'/><title type='text'>Firefox about:config</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://addons.mozilla.org/img/app-icons/firefox.png"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 68px; height: 68px;" src="https://addons.mozilla.org/img/app-icons/firefox.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;In conversation at work yesterday, we were discussing the possibility of making some customizations to Firefox.  This reminded me of the powerful, though well hidden, about:config file.  It seems most users are not even aware of the existence of this file.&lt;br /&gt;&lt;br /&gt;Firefox's about:config allows such changes as adjusting the amount of memory used for cache, enabling encryption with RSA authentication, and defining specific rules for the handling of cookies.  Some of the setting available through about:config can be modified through the tools menu.  There is usually a comment stating that changes can be made from the tools menu instead.  In order to access about:config simply type &lt;strong&gt;about:config&lt;/strong&gt; into the URL bar and hit enter.  Doing so will bring up many pages worth of options.  From about:config changes to networking, installation, browsing, saving, and security can be made, along with other things.  There are even BiDi (bi-directional text) changes that can be made.  For those users interested in appearance there are also options for customizing hyperlink colors, previously viewed colors, and the browser's background along with other options.  Delving into all the available prefrences and the details of what each of them does is beyond the scope of this brief overview.  Refer to &lt;a href="http://kb.mozillazine.org/About:config_entries"&gt; mozillaZine &lt;/a&gt; for details on what each preference modifies.  &lt;br /&gt;&lt;br /&gt;Changes made via about:config, the tools menu, or by some extensions are kept in the prefs.js file.  My prefs.js file is found in ~/.mozilla/firefox/6eawc2od.default/prefs.js though this may vary depending on your system.  Although preference changes may also be made through the prefs.js file it is more prone to mistakes which have the potential to make Firefox unusable.  This brings us to the usual warning that all files should be backed up before making changes.  One advantage that the prefs.js file has over the other editing methods is the ease at which many profiles can be changed simultaneously simply by copying prefs.js for other users.  An administrator can tighten Firefox's security settings via about:config then copy the prefs.js file across as many home directories and/or systems as desired.&lt;br /&gt;&lt;br /&gt;Having so many options makes Firefox an even more appealing choice for web browsing.  The inclusion of about:config and prefs.js gives powerusers the performance and security changes they crave and end users a vast amount of style configurations to try.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-706298407854006313?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/706298407854006313/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=706298407854006313' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/706298407854006313'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/706298407854006313'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/03/firefox-aboutconfig.html' title='Firefox about:config'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-7365311598586730822</id><published>2007-03-20T23:47:00.000-05:00</published><updated>2007-03-26T04:11:14.446-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='dell'/><category scheme='http://www.blogger.com/atom/ns#' term='latitude'/><category scheme='http://www.blogger.com/atom/ns#' term='c510'/><category scheme='http://www.blogger.com/atom/ns#' term='c610'/><title type='text'>FreeBSD Latitude c510/c610</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px; height: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Recently, I acquired a used Dell Latitude.  It was easy to find documentation on Dell's site for the laptop, unfortunatly none of it was very usefull to get FreeBSD set up on it.  Only the video and sound need some tinkering.  Here is the relavant  information for the two devices that were hard to find. &lt;br /&gt;&lt;br /&gt;For sound the Latitude c510/c610 has an Intel based device.  In order to get it to function AC97 compatibility is needed.  This uses the snd_ich driver.  For information on how to load the module reference &lt;a href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-setup.html"&gt;the FreeBSD handbook &lt;/a&gt; . Video on this system comes from a 16mb ATI Radion Mobility, so select the appropriate choices when using xorgconfig. &lt;br /&gt;&lt;br /&gt;These are really the only two pieces of information that were necessary and hard to find.  Overall the Latitude c510/c610 works great out of the box.  Hopefully this is of assistance to Latitude c510/c610 owners.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-7365311598586730822?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/7365311598586730822/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=7365311598586730822' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/7365311598586730822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/7365311598586730822'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/03/freebsd-latitude-c510c610.html' title='FreeBSD Latitude c510/c610'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4345070748261208643.post-2511171531827856308</id><published>2007-03-19T05:43:00.000-05:00</published><updated>2007-03-26T04:03:09.781-05:00</updated><title type='text'>FIRST POST!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mckusick.com/beastie/smallgif/badge.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px; height: 150px;" src="http://www.mckusick.com/beastie/smallgif/badge.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Being that it is my own blog I would hope to be able to get first post.  It seems to be the only way.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4345070748261208643-2511171531827856308?l=scriptythekid.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://scriptythekid.blogspot.com/feeds/2511171531827856308/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4345070748261208643&amp;postID=2511171531827856308' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/2511171531827856308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4345070748261208643/posts/default/2511171531827856308'/><link rel='alternate' type='text/html' href='http://scriptythekid.blogspot.com/2007/03/first-post.html' title='FIRST POST!'/><author><name>Scripty The Kid</name><uri>http://www.blogger.com/profile/07581825319728175581</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>16</thr:total></entry></feed>
