<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Richard Pickett .com</title>
	<link>http://richardpickett.com</link>
	<description>Read at your own risk, I certainly posted it that way.</description>
	<lastBuildDate>Wed, 07 Dec 2011 22:06:48 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.1" -->

	<item>
		<title>&#8216;script&#8217;ing the login</title>
		<description><![CDATA[Ever want to capture and record everything done on the command line from a ssh login without (a) the user knowing it and (b) them having to do anything to start the recording? become root, then execute these commands: mkdir /var/log/script chmod 733 /var/log/script Then, for each user you want to record: echo -e '\n/usr/bin/script [...]]]></description>
		<link>http://richardpickett.com/scripting-the-login#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>Interesting Quotes</title>
		<description><![CDATA[Just some quotes I wanted to jot down. &#8220;You need to relax.&#8221; &#8220;I&#8217;m more comfortable tense.&#8221; &#8220;We&#8217;re just trying to get to the truth&#8221; &#8220;I get it, but what you need to remember is there&#8217;s what people want to hear, there&#8217;s what people want to believe, there&#8217;s everything else, then there&#8217;s the truth.&#8221; &#8220;And since [...]]]></description>
		<link>http://richardpickett.com/interesting-quotes#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>Mysql Multi-Master</title>
		<description><![CDATA[My notes on what I did to create a mysql multi-master setup w/ newly-install mysql servers. On both servers: GRANT REPLICATION SLAVE ON *.* TO slave_user IDENTIFIED BY &#8216;********&#8217;; flush privileges; vim my.cnf and make the following changes: bind-address            = 0.0.0.0 # we have to allow outside connections, use firewall [...]]]></description>
		<link>http://richardpickett.com/mysql-multi-master#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>Disable Auto-Open Of CD/DVD/USB in Ubuntu</title>
		<description><![CDATA[Tired of gnome auto-opening your CD/DVD/USB just because you stuck a new one in? (gets on my nerves because I use pam usb for authentication). gconf-editor Key: /apps/nautilus/preferences/media_automount_open ;-D]]></description>
		<link>http://richardpickett.com/disable-auto-open-of-cddvdusb-in-ubuntu#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>OCFS2 over iSCSI on Ubuntu 10.10 (Maverick Meerkat)</title>
		<description><![CDATA[I had a lot of fun figuring this out. I knew I needed OCFS2 for a clustering file system I was setting up, but none of the OCFS2 documentation tells you how to setup the underlying disk. DRBD has a &#8220;do DRBD first, then OCFS2 on top of that&#8221; howto, but what if you wanted [...]]]></description>
		<link>http://richardpickett.com/ocfs2-over-iscsi-on-ubuntu-10-10-maverick-meerkat#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>ffmpeg screen capture</title>
		<description><![CDATA[ffmpeg -y \ -f alsa \ -ac 2 \ -i pulse \ -f x11grab \ -r 25 \ -s 1354x768 \ -i :0.0 \ -vcodec libx264 \ -vpre lossless_ultrafast \ -crf 22 \ -acodec libmp3lame \ -ar 44100 \ -ab 126k \ -threads 3 \ ~/Desktop/screencast.mkv You expected more? ;-D]]></description>
		<link>http://richardpickett.com/ffmpeg-screen-capture#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>Resetting Mysql root password</title>
		<description><![CDATA[Common enough, something that I really should record for myself&#8230; # Run as root: /etc/init.d/mysqld stop mysqld_safe --skip-grant-tables &#038; echo "update user set Password = PASSWORD( 'NEW_PASSWORD_HERE' ) where user = 'root'; flush privileges;" &#124; mysql -u root mysql killall mysqld # now wait until mysqld exits (ps ax &#124; grep mysqld) /etc/init.d/mysqld start]]></description>
		<link>http://richardpickett.com/resetting-mysql-root-password#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>The Mark Of The Beast</title>
		<description><![CDATA[Understanding the mark of the beast is pretty simple once you have a little knowledge. You always see a lot of hype at churches and in movies, etc over &#8220;THE MARK OF THE BEAST&#8221; where it&#8217;s made out to be some deep dark scary mystery. Let&#8217;s take a look a the scriptures to see exactly [...]]]></description>
		<link>http://richardpickett.com/the-mark-of-the-beast#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>Quick Port Scan</title>
		<description><![CDATA[Down-and-dirty port scan: nc -z -v -w1 &#60;ip&#62; &#60;start port&#62;-&#60;end port&#62; 2&#62;&#38;1 &#124; grep succeeded -z &#8211; don&#8217;t connect to the port, continue scan -v &#8211; verbose -w1 &#8211; wait 1 second before continuing]]></description>
		<link>http://richardpickett.com/quick-port-scan#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
	<item>
		<title>Tripwire Notes</title>
		<description><![CDATA[Had to setup tripwire a couple times on several redhat servers, decided I better take notes to make each install easier&#8230; Install from rpm # rpm -i tripwire-2.4.1.1-1.el5.i386.rpm # cd /etc/tripwire Generate the site keyfile: # /usr/sbin/twadmin -m G --site-keyfile site.key Generate the local keyfile: # /usr/sbin/twadmin -m G --local-keyfile local.key Generate the signed config [...]]]></description>
		<link>http://richardpickett.com/tripwire-notes#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
			</item>
</channel>
</rss>

