<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Frank Contreras</title>
	<atom:link href="http://frankcontreras.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://frankcontreras.com</link>
	<description>Career and Professional Website</description>
	<lastBuildDate>Sun, 19 Feb 2012 06:43:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Install XenServer Tools on CentOS guest</title>
		<link>http://frankcontreras.com/install-xenserver-tools-on-centos-guest/</link>
		<comments>http://frankcontreras.com/install-xenserver-tools-on-centos-guest/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 06:38:43 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=584</guid>
		<description><![CDATA[Mount the CD. mount /dev/xvdd /mnt/ cd /mnt/Linux For 32 bit: rpm -Uhv xe*i386.rpm For 64 bit: rpm -Uhv xe*x86_64.rpm Reboot the server. No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>Mount the CD.</p>
<pre>
mount /dev/xvdd /mnt/
cd /mnt/Linux</pre>
<p>For 32 bit:</p>
<pre>rpm -Uhv xe*i386.rpm</pre>
<p>For 64 bit:</p>
<pre>rpm -Uhv xe*x86_64.rpm</pre>
<p>Reboot the <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a>.</br></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/install-xenserver-tools-on-centos-guest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command lines to install Webmin</title>
		<link>http://frankcontreras.com/command-line-to-install-webmin/</link>
		<comments>http://frankcontreras.com/command-line-to-install-webmin/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 13:58:05 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=557</guid>
		<description><![CDATA[1. Download it. wget -c http://prdownloads.sourceforge.net/webadmin/webmin-1.580-1.noarch.rpm /download 2. Install it. rpm -Uvh webmin-1.580-1.noarch.rpm No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>1. Download it.</p>
<pre>wget -c http://prdownloads.sourceforge.net/webadmin/webmin-1.580-1.noarch.rpm /download</pre>
<p>2. Install it.</p>
<pre>rpm -Uvh  webmin-1.580-1.noarch.rpm</pre>
<p></br></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/command-line-to-install-webmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS SQL Script to dump all databases to a .bak file</title>
		<link>http://frankcontreras.com/ms-sql-script-to-dump-all-databases-to-a-bak-file/</link>
		<comments>http://frankcontreras.com/ms-sql-script-to-dump-all-databases-to-a-bak-file/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 06:14:24 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Microsoft SQL]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=534</guid>
		<description><![CDATA[Modify the script below as needed. DECLARE @name VARCHAR(50) -- database name DECLARE @path VARCHAR(256) -- path for backup files DECLARE @fileName VARCHAR(256) -- filename for backup DECLARE @fileDate VARCHAR(20) -- used for file name SET @path = 'D:\SQLBackups\' SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) DECLARE db_cursor CURSOR FOR SELECT name FROM master.dbo.sysdatabases WHERE name NOT IN [...]]]></description>
			<content:encoded><![CDATA[<p>Modify the script below as needed.</p>
<pre>DECLARE @name VARCHAR(50) -- database name
DECLARE @path VARCHAR(256) -- path for backup files
DECLARE @fileName VARCHAR(256) -- filename for backup
DECLARE @fileDate VARCHAR(20) -- used for file name 

SET @path = 'D:\SQLBackups\'  

SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) 

DECLARE db_cursor CURSOR FOR
SELECT name
FROM master.dbo.sysdatabases
WHERE name NOT IN ('master','model','msdb','tempdb')  

OPEN db_cursor
FETCH NEXT FROM db_cursor INTO @name   

WHILE @@FETCH_STATUS = 0
BEGIN
       SET @fileName = @path + @name + '_' + @fileDate + '.BAK'
       BACKUP DATABASE @name TO DISK = @fileName  

       FETCH NEXT FROM db_cursor INTO @name
END   

CLOSE db_cursor
DEALLOCATE db_cursor </pre>
<p>Set this up in Task Scheduler to to automatically execute it at a scheduled time.  The command line to call the script is something like this:</p>
<pre>sqlcmd -S localhost -E -i D:\SQL_Scripts\sp_BackupAllDatabases.sql</pre>
<p>&nbsp;</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/ms-sql-script-to-dump-all-databases-to-a-bak-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Backup Exec Remote Agent for Linux</title>
		<link>http://frankcontreras.com/installing-backup-exec-remote-agent-for-linux/</link>
		<comments>http://frankcontreras.com/installing-backup-exec-remote-agent-for-linux/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 04:37:46 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=530</guid>
		<description><![CDATA[First, make sure the Compatibility C++ library is installed: http://www.symantec.com/business/support/index?page=content&#38;id=TECH86251&#38;actp=search&#38;viewlocale=en_US&#38;searchid=1327899255372 Then run through the procedures to install and configure the remote agent: http://www.symantec.com/business/support/index?page=content&#38;id=TECH46461&#38;actp=search&#38;viewlocale=en_US&#38;searchid=1327897044799 No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>First, make sure the Compatibility C++ library is installed:</p>
<p><a href="http://www.symantec.com/business/support/index?page=content&amp;id=TECH86251&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327899255372">http://www.symantec.com/business/support/index?page=content&amp;id=TECH86251&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327899255372</a></p>
<p>Then run through the procedures to install and configure the remote agent:</p>
<p><a href="http://www.symantec.com/business/support/index?page=content&amp;id=TECH46461&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327897044799">http://www.symantec.com/business/support/index?page=content&amp;id=TECH46461&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327897044799</a></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/installing-backup-exec-remote-agent-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect to a Windows Share using CIFS on CentOS</title>
		<link>http://frankcontreras.com/connect-to-a-windows-share-using-cifs-on-centos/</link>
		<comments>http://frankcontreras.com/connect-to-a-windows-share-using-cifs-on-centos/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 04:05:25 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[CIFS]]></category>
		<category><![CDATA[Connect]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[SAMBA]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=522</guid>
		<description><![CDATA[Install componenets for SAMBA. yum install samba After the installation is complete, check for a file called mount.cifs.  It was not installed with my server build. /etc/mount.cifs If it is not there, install files to support for cifs.  After doing this install, the mount.cifs file magically appeared. yum install cifs Create a mount point where [...]]]></description>
			<content:encoded><![CDATA[<p>Install componenets for <a href="http://frankcontreras.com/tag/samba/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SAMBA">SAMBA</a>.</p>
<pre>yum install samba</pre>
<p>After the installation is complete, check for a file called mount.<a href="http://frankcontreras.com/tag/cifs/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CIFS">cifs</a>.  It was not installed with my <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> build.</p>
<pre>/etc/mount.cifs</pre>
<p>If it is not there, install files to support for cifs.  After doing this install, the mount.cifs file magically appeared.</p>
<pre>yum install cifs</pre>
<p>Create a mount point where you plan to mount the <a href="http://frankcontreras.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> share.</p>
<pre>mkdir /mnt/win</pre>
<p>Modify the <a href="http://frankcontreras.com/tag/fstab/" class="st_tag internal_tag" rel="tag" title="Posts tagged with fstab">fstab</a> file with information that will be used to <a href="http://frankcontreras.com/tag/connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Connect">connect</a> when your CentOS server boots up.</p>
<pre>vi /etc/fstab</pre>
<p>The file may end up looking something like this.</p>
<pre>
#
# /etc/fstab
# Created by anaconda on Sun Jan 29 11:02:02 2012
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=0db4ea35-aae2-4fa5-b3ab-734465f0d4f6 /                       ext4    defaults        1 1
UUID=40652af2-9ac8-47ce-b77b-f3f3ab16ff7b /boot                   ext4    defaults        1 2
UUID=4ab7e510-986b-4de7-bcbd-ed262822b06e swap                    swap    defaults        0 0
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
//server/Share          /mnt/win                cifs    user,uid=500,rw,suid,username=username,password=P@ssw0rd,workgroup=WinDomain 0 0</pre>
<p>Now go ahead and reboot your CentOS server. With any luck, you&#8217;ll be able to see the contents of your Windows share under the mount point created earlier.</p>
<pre>/mnt/win</pre>
<p></br></p>

	Tags: <a href="http://frankcontreras.com/tag/cifs/" title="CIFS" rel="tag">CIFS</a>, <a href="http://frankcontreras.com/tag/connect/" title="Connect" rel="tag">Connect</a>, <a href="http://frankcontreras.com/tag/fstab/" title="fstab" rel="tag">fstab</a>, <a href="http://frankcontreras.com/tag/opensource/" title="Open Source" rel="tag">Open Source</a>, <a href="http://frankcontreras.com/tag/samba/" title="SAMBA" rel="tag">SAMBA</a>, <a href="http://frankcontreras.com/tag/server/" title="server" rel="tag">server</a>, <a href="http://frankcontreras.com/tag/windows/" title="Windows" rel="tag">Windows</a><br />
]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/connect-to-a-windows-share-using-cifs-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Storage Server 2008 RC Default Password</title>
		<link>http://frankcontreras.com/windows-storage-server-2008-rc-default-password/</link>
		<comments>http://frankcontreras.com/windows-storage-server-2008-rc-default-password/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 20:00:48 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=517</guid>
		<description><![CDATA[This version of Windows does not let you set the Administrator password.  I&#8217;m guessing it is because it is normally installed by the vendor on their hardware platforms that are optimized for this purpose.  Anyway, the default password is "wSS2008!" No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>This version of <a href="http://frankcontreras.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> does not let you set the Administrator password.  I&#8217;m guessing it is because it is normally installed by the vendor on their hardware platforms that are optimized for this purpose.  Anyway, the default password is
<pre>"wSS2008!"</pre>
<p></br></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/windows-storage-server-2008-rc-default-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure a static IP Address</title>
		<link>http://frankcontreras.com/how-to-configure-a-static-ip-address/</link>
		<comments>http://frankcontreras.com/how-to-configure-a-static-ip-address/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 19:29:06 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=512</guid>
		<description><![CDATA[CentOS has a really nice GUI to configure the IP Address and other NIC settings.  But I wanted to manage a Linux server without the crutch of a GUI.  Here&#8217;s some notes on how to do it. The file to configure settings for the first Ethernet &#8221;eth0&#8243; or for any interface can be found in this location: /etc/sysconfig/network-scripts The file corresponding to eth0 is ifcfg-eth0 Use a [...]]]></description>
			<content:encoded><![CDATA[<p>CentOS has a really nice GUI to configure the IP Address and other NIC settings.  But I wanted to manage a Linux <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> without the crutch of a GUI.  Here&#8217;s some notes on how to do it.<br />
The file to configure settings for the first Ethernet &#8221;eth0&#8243; or for any interface can be found in this location:</p>
<pre>/etc/sysconfig/network-scripts</pre>
<p>The file corresponding to eth0 is</p>
<pre>ifcfg-eth0</pre>
<p>Use a text editor to make it look something like this:</p>
<pre>DEVICE="eth0"
NM_CONTROLLED="yes"
ONBOOT=yes
TYPE=Ethernet
BOOTPROTO=none
IPADDR=192.168.1.100
PREFIX=24
GATEWAY=192.168.1.1
DNS1=192.168.1.2
DNS2=4.2.2.2
DOMAIN=domain.com
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
UUID=5fb06bd0-0bb1-7ffa-44f1-d6eda65f2e03
HWADDR=00:01:01:12:34:56</pre>
<p>After you save your changes, you&#8217;ll need to restart your network service with this command:</p>
<pre>service network restart</pre>
<p>You should be able to ping the address you just configured, but you might not be able to ping it from another client or even ping out.  This has to do with your firewall settings, but that&#8217;s something that will be covered in another post.</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/how-to-configure-a-static-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Guest Machine Process ID</title>
		<link>http://frankcontreras.com/get-guest-machine-process-id/</link>
		<comments>http://frankcontreras.com/get-guest-machine-process-id/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 13:44:18 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Hyper-V]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=504</guid>
		<description><![CDATA[Ever wanted to know the Process ID of a particular guest VM so you could kill the process or elevate it?  Here&#8217;s the powershell script to do it. Get-WmiObject -Namespace root\virtualization -class msvm_computersystem &#124; select elementname, operationalstatus, processid, name&#124; ft -auto No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to know the Process ID of a particular guest VM so you could kill the process or elevate it?  Here&#8217;s the powershell script to do it.</p>
<pre>Get-WmiObject -Namespace root\virtualization -class msvm_computersystem | select elementname, operationalstatus, processid, name| ft -auto</pre>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/get-guest-machine-process-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good article on Cygwin installation</title>
		<link>http://frankcontreras.com/good-article-on-cygwin-installation/</link>
		<comments>http://frankcontreras.com/good-article-on-cygwin-installation/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 19:47:41 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=498</guid>
		<description><![CDATA[I&#8217;m sticking this new post under my CentOS category because it is what I&#8217;ve been using to SSH into my CentOS servers.  Cygwin is a bit bulky compared to others like putty.exe, but mintty.exe has the ability to go translucent which is really cool.  There&#8217;s an excellent article on installing and setting up Cygwin in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sticking this new post under my CentOS category because it is what I&#8217;ve been using to SSH into my CentOS servers.  Cygwin is a bit bulky compared to others like putty.exe, but mintty.exe has the ability to go translucent which is really cool.  There&#8217;s an excellent article on installing and setting up Cygwin in <a href="http://frankcontreras.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> <a href="http://pigtail.net/LRP/printsrv/cygwin-ssh.html">here</a> by Nicholas Fong.</p>
<p>From time to time, I need to reference this article and it always takes me a bit of time to find this specific, well written article.  To be honest, I&#8217;m a little lazy so I am reposting if  from original article <a href="http://pigtail.net/LRP/printsrv/cygwin-ssh.html">here</a> to find it quicker next time around:</p>
<p><a href="http://pigtail.net/LRP/printsrv/disclaimer.html">Disclaimer</a></p>
<p>According to some cygwin gods, the only official document that you should use is  <a href="http://pigtail.net/LRP/printsrv/cygwin-doc.html">/usr/share/doc/Cygwin/openssh.README</a><br />
which is probably true.<br />
The purpose of this tutorial is for Windows users who are perhaps less familiar with Unix commands wanting to try out the famous <a href="http://www.opensource.org/">Open Source</a> ssh <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> (openSSH) on a desktop Windows XP <img src="http://pigtail.net/LRP/windows.png" alt="" width="22" height="17" border="0" />.</p>
<p><strong>Please don&#8217;t send any questions to the cygwin mailing list to ask questions about this page as it seems to provoke them severely. They considered and declared the instructions on this page &#8220;broken&#8221; and &#8220;random&#8221; but won&#8217;t constructively say what is &#8220;broken&#8221;; instead some went on launching personal attacks. The information here is provided &#8220;<span style="color: #ff0000;">as is, in good faith</span>&#8221; with no guarantee it will work. <span style="color: #ff0000;">If it doesn&#8217;t work, then it doesn&#8217;t work.</span> Don&#8217;t send any questions to the Cygwin mailing list to ask why and provoke them. If you must go to Cygwin mailing list to ask, you better <a href="http://pigtail.net/LRP/printsrv/remove-cygwin.html">completely remove Cygwin</a> before you go to the mailing list to ask questions and don&#8217;t even mention that you have looked at this web page (to avoid pissing them off).<br />
Read this <a href="http://pigtail.net/LRP/printsrv/disclaimer.html">Disclaimer</a>.  </strong></p>
<p>Constructive <a href="http://louisville.edu/speed/computer/community-engagement/uofl-joins-effort-to-give-computers-to-school-children.html" target="_blank">comments</a> are of course welcome, in the original spirit of the Internet, sharing experience and knowledge regarding bug fixes and improvements to benefit other users of the Internet <a href="http://www.news.cornell.edu/stories/dec06/africa_computers.html" target="_blank">community</a>.<br />
My email address is <img src="http://pigtail.net/LRP/printsrv/fong.png" alt="" width="129" height="15" border="0" /></p>
<hr />
<p><span style="color: #000011;"><strong>How to install ssh on a </strong><strong>Windows 2000/XP on <a href="http://www.cheetahdeals.com/" target="_blank">refurbished computers</a> </strong></span><img src="http://pigtail.net/LRP/printsrv/windows.png" alt="g" width="22" height="17" align="middle" border="0" /></p>
<p><strong>How to install a ssh client</strong>(called ssh, from <a href="http://www.openssh.org/">OpenSSH</a>)</p>
<p><strong>(1) </strong>Create a folder c:\cygwin</p>
<p><strong>(2)</strong> <img src="http://pigtail.net/LRP/printsrv/cygwin.png" alt="g" align="middle" /> Download cygwin&#8217;s setup.exe from <a href="http://www.cygwin.com/">http://www.cygwin.com/</a> and save <strong>setup.exe</strong> in c:\cygwin</p>
<p>Click Start&#8230;Run&#8230;and type <span style="color: #660000;"><strong>c:\cygwin\setup.exe</strong></span></p>
<p>When it asks for &#8220;Local Package Directory&#8221;, type c:\cygwin<br />
When a selection screen comes up, you can resize the windows to see better,<br />
click the little View button for &#8220;Full&#8221; view  <a href="http://pigtail.net/LRP/printsrv/cygrunsrv-setup.png"><img src="http://pigtail.net/LRP/printsrv/view-button.png" alt="g" width="64" height="28" border="0" /></a>,<br />
find the package &#8220;openssh&#8221;, click on the word &#8220;skip&#8221; so that an <img src="http://pigtail.net/LRP/printsrv/x-box.png" alt="" width="18" height="21" border="0" /> appears in Column B,<br />
see <a href="http://pigtail.net/LRP/printsrv/openssh-setup.png">this illustration.</a></p>
<p>Click <img src="http://pigtail.net/LRP/printsrv/next-button.png" alt="next" align="middle" /> to start installing cygwin and ssh.<br />
Size of the basic cygwin system is about 40 Meg, this may take a while if you have a slow connection.</p>
<p>Take a coffee break. <img src="http://pigtail.net/LRP/printsrv/java.gif" alt="g" align="middle" /></p>
<p><strong>(3) </strong>Right click My Computer, Properties, Advanced, Environment Variables<br />
See <a href="http://pigtail.net/LRP/printsrv/system-variables.png">this illustration (red dots)</a><br />
Click the &#8220;New&#8221; <img src="http://pigtail.net/LRP/printsrv/new-button.png" alt="new" /> button to add a new entry to system variables:<br />
variable name is <strong><span style="color: #660000;">CYGWIN </span><span style="color: #cc0033;"><br />
</span></strong>variable value is <strong><span style="color: #660000;">ntsec</span></strong>      or     tty ntsec</p>
<p><strong>(4)</strong> Right click My Computer, Properties, Advanced, Environment Variables<br />
See <a href="http://pigtail.net/LRP/printsrv/system-variables.png">this illustration (green dots)</a><br />
Select the Path variable and click the &#8220;Edit&#8221; <img src="http://pigtail.net/LRP/printsrv/edit-button.png" alt="edit" /> button:<br />
append  <strong><span style="color: #660000;">;c:\cygwin\bin</span><span style="color: #cc0033;">   </span></strong>to the end of the existing variable string.</p>
<p>(5) Double click the <img src="http://pigtail.net/LRP/printsrv/cygwin.png" alt="g" align="middle" /> icon, a black screen will pop up.<br />
Optional:  type<br />
ssh-user-config this will create private and public key for the user.</p>
<p>You can also use <strong>putty</strong> (an excellent freeware <img src="http://pigtail.net/LRP/printsrv/windows.png" alt="g" width="22" height="17" align="middle" border="0" /> ssh client).</p>
<p>Just download and run putty.exe from <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">http://www.chiark.greenend.org.uk/~sgtatham/putty/</a></p>
<hr />
<p><a href="http://pigtail.net/LRP/printsrv/disclaimer.html">Disclaimer</a></p>
<p><span style="font-size: small;">©</span> 2003-2009 Nicholas Fong <img src="http://pigtail.net/LRP/fong.png" alt="" width="129" height="15" border="0" /></p>
<p>Last revised: January 12, 2010</p>
<p>&nbsp;</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/good-article-on-cygwin-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Risky Business Podcast #220 Review</title>
		<link>http://frankcontreras.com/risky-business-podcast-220-review/</link>
		<comments>http://frankcontreras.com/risky-business-podcast-220-review/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 22:00:08 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Security Stuff]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=576</guid>
		<description><![CDATA[CPE Submitted 12/10/2011 Domains: Telecommunications &#38; Network Security &#8211; IPv6 Discussion, Information Security Governance &#38; Risk Management &#8211; Google&#8217;s face recognition technology as facing litigation as alleged privacy violation in Europe, Security Architecture &#38; Design &#8211; Discussion of using motherboard for mutli-factor authentication in banking industry, Possible rootkit vulnerability in OS X EFI bootloader to [...]]]></description>
			<content:encoded><![CDATA[<p>CPE Submitted 12/10/2011<br />
Domains: Telecommunications &amp; Network Security &#8211; IPv6 Discussion, Information Security Governance &amp; Risk Management &#8211; Google&#8217;s face recognition technology as facing litigation as alleged privacy violation in Europe, Security Architecture &amp; Design &#8211; Discussion of using motherboard for mutli-factor authentication in banking industry, Possible rootkit vulnerability in OS X EFI bootloader to place malware in PCI firmware.</p>
<p><a href="http://risky.biz/RB220">http://risky.biz/RB220</a></p>
<p>Risky Busines #220 &#8212; All your Macs are belong to Snare</p>
<p>November 17, 2011 &#8211;</p>
<p>On this week&#8217;s podcast we take a look at doing some fairly unnatural things to the OS X operating system. We&#8217;ll hear how to best rootkit OS X and also how messing with EFI bootloaders can be a whole bunch of fun in terms of installing persistent rootkits in PCI firmware.</p>
<p>That&#8217;s this week&#8217;s feature interview, with our buddy Loukas from Assurance.com.au.</p>
<p>Also this week we&#8217;re joined by Tenable Network Security&#8217;s product manager Jack Daniel in the sponsor interview. He&#8217;ll be chatting to us all about Dan Geer&#8217;s new cybersecurity research agenda.</p>
<p>Adam Boileau, as always, joins us to chat about the week&#8217;s news.</p>
<p><em>Editor&#8217;s Note:</em> As the CISO of <a href="http://www.iqt.org/">In-Q-Tel</a>, the CIA-backed strategic investment firm focused on developing technologies for the intelligence community, Dan Geer gets paid to help find the answers to big questions about computer security, national security, privacy and technology. Headlines proliferate about <a href="http://threatpost.com/en_us/blogs/symantec-traces-attacks-chemical-industry-20-year-old-chinese-hacker-hire-110111">sophisticated cyber attacks</a>, the looming specter of cyber warfare and <a href="http://threatpost.com/en_us/blogs/report-us-accuses-china-russia-cyber-espionage-110311">ongoing espionage by nations like China and Russia</a>. That means Dan&#8217;s job gets more important with each passing day. So what&#8217;s on Dan Geer&#8217;s mind these days? We asked him what questions he was mulling and, as usual, the answers we got back were both eye-opening and provocative. Here, in Monday morning &#8216;shot of espresso&#8217; format (and with as little editing as possible) is our three minute speed date with Dan&#8217;s brain.</p>
<p>The challenge: In three minutes, give the research agenda in cybersecurity.</p>
<p>We would need a lot less research if we put into practice what we already know. But we don&#8217;t. Ergo, why we don&#8217;t put into practice what we already know is itself a research-grade topic.</p>
<p>We humans can build structures more complex than we can then operate. (The financial industry has just proven this by <em><a href="https://threatpost.com/en_us/blogs/new-cybersecurity-research-agenda-three-minutes-or-less-110711">https://threatpost.com/en_us/blogs/new-cybersecurity-research-agenda-three-minutes-or-less-110711</a></em>example.) Cyberspace is on track to prove the same thing to us all over again, which leads to the research question: Are humans in the loop a failsafe or a liability? Is fully automated security to be desired or to be feared? Is there a simple metric that differentiates the desirable from the frightening?</p>
<p>Security is not composable. However, in cyberspace, everything critical is a melange. Gilbert and Lynch&#8217;s proof of<a href="http://www.julianbrowne.com/article/viewer/brewers-cap-theorem"> Brewer&#8217;s theorem</a> finds that in a distributed system it is Consistency, Availability, and Partition Tolerance, choose any two. That tells me there is a research grade result for cybersecurity that will be found to be parallel.</p>
<p>In the 1990s, the commercial world pulled even with the military world in the application of cryptography. It is now doing the same with traffic analysis (heretofore the strategic redoubt of the intelligence community). While the intelligence community has had the pre-eminent sensor fabric, integrated messaging coupled to geo-location technology is the stuff of hegemony. This is a fact which is not lost on Russia, is not lost on China, and one hopes is not lost on Google. Is resistance to traffic analysis a research grade question, or is it merely wishful thinking?</p>
<p>The security implications of the conversion to IPv6 are poorly understood. The security <em>impact</em> of the move to IPv6 will be felt one step beyond the IPv6 address, at the interface between an impossibly large Internet address space and a nearly infinite, but intermittently tethered Internet-of-things. IPv6&#8242;s simultaneous multi-homing and address-hopping along with consumer-grade multi-channel routers mean network discovery as a cybersecurity tool is dead. As a research topic, what replaces network discovery as a management tool, or is consumerization the end of bothering to try?</p>
<p>All security technologies are dual use. Does anyone want to prove otherwise?</p>
<p>For cybersecurity, solving known problems is not research. Figuring out what the problems will be &#8212; that&#8217;s research. You have three minutes.</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/risky-business-podcast-220-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

