<?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>BlueQuartz Archives - Dogsbody.org</title>
	<atom:link href="https://www.dogsbody.org/tag/bluequartz/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description></description>
	<lastBuildDate>Tue, 16 Feb 2010 00:30:30 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.1</generator>
	<item>
		<title>Things to do to a blank BlueQuartz install</title>
		<link>https://www.dogsbody.org/2006/08/things-to-do-to-a-blank-bluequartz-install/?pk_campaign=feed&#038;pk_kwd=things-to-do-to-a-blank-bluequartz-install</link>
					<comments>https://www.dogsbody.org/2006/08/things-to-do-to-a-blank-bluequartz-install/?pk_campaign=feed&#038;pk_kwd=things-to-do-to-a-blank-bluequartz-install#respond</comments>
		
		<dc:creator><![CDATA[Dan Benton]]></dc:creator>
		<pubDate>Mon, 21 Aug 2006 01:00:00 +0000</pubDate>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[BlueQuartz]]></category>
		<category><![CDATA[CentOS]]></category>
		<guid isPermaLink="false"></guid>

					<description><![CDATA[<p>After just rebuilding a BlueQuartz box I thought I would copy my install notes. This is an entirely personal list of things that I do to a vanilla install of CentOS/BlueQuartz.  I thought it may be useful to other people. Contents Change root passwords Secure SSH Apache Obscurity Install ImageMagick PHP upload settings Add Mime &#8230; <a href="https://www.dogsbody.org/2006/08/things-to-do-to-a-blank-bluequartz-install/?pk_campaign=feed&#038;pk_kwd=things-to-do-to-a-blank-bluequartz-install" class="more-link">Continue reading <span class="screen-reader-text">Things to do to a blank BlueQuartz install</span> <span class="meta-nav">&#8594;</span></a><img src="https://analytics.dogsbody.com/piwik.php?idsite=4&amp;rec=1&amp;url=https%3A%2F%2Fwww.dogsbody.org%2F2006%2F08%2Fthings-to-do-to-a-blank-bluequartz-install%2F%3Fpk_campaign%3Dfeed%26pk_kwd%3Dthings-to-do-to-a-blank-bluequartz-install&amp;action_name=Things%20to%20do%20to%20a%20blank%20BlueQuartz%20install&amp;urlref=https%3A%2F%2Fwww.dogsbody.org%2Ffeed%2F" style="border:0;width:0;height:0" width="0" height="0" alt="" /></p>
<p>The post <a href="https://www.dogsbody.org/2006/08/things-to-do-to-a-blank-bluequartz-install/?pk_campaign=feed&#038;pk_kwd=things-to-do-to-a-blank-bluequartz-install">Things to do to a blank BlueQuartz install</a> appeared first on <a href="https://www.dogsbody.org">Dogsbody.org</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>After just rebuilding a BlueQuartz box I thought I would copy my install notes. This is an entirely personal list of things that I do to a vanilla install of CentOS/BlueQuartz.  I thought it may be useful to other people.</p>
<p><span style="text-decoration: underline;"><strong>Contents</strong></span></p>
<ul>
<li>Change root passwords</li>
<li>Secure SSH</li>
<li>Apache Obscurity</li>
<li>Install ImageMagick</li>
<li>PHP upload settings</li>
<li>Add Mime Types</li>
<li>yum checker</li>
<li>Setup floppy drive</li>
<li>Majordomo logfile</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Change root password</strong></span></p>
<p>BQ is initially set with no root MySQL password and the systems root password is set the same as the admin user. These should be changed to something different!</p>
<ul>
<li>Change MySQL password wth `<strong>/usr/bin/mysqladmin &#8211;user=root password NEW_PASSWORD</strong>`</li>
<li>Change root password with `<strong>passwd</strong>`</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Secure SSH</strong></span></p>
<p>SSH is obviously better than telnet but did you know that the SSH protocol v1 has been cracked for quite some time now. I lock all my boxes down to only use protocol v2 and haven&#8217;t had any come back on compatability issues.</p>
<ul>
<li>Modify `<strong>/etc/ssh/sshd_config</strong>` to set `<strong>Protocol 2</strong>`</li>
<li>Run `<strong>/etc/rc.d/init.d/sshd reload</strong>`</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Apache Obscurity</strong></span></p>
<p>Yes, this is security through obscurity but everything helps. The following will remove the &#8220;signature&#8221; at the bottom of pages generated by Apache and will also only report the webserver as &#8220;Apache&#8221; instaed of the full version number and OS</p>
<ul>
<li>Modify (and add if necessary) the following lines in `<strong>/etc/httpd/conf/httpd.conf</strong>` &amp; `<strong>/etc/admserv/conf/httpd.conf</strong>`</li>
</ul>
<pre>ServerSignature Off
ServerTokens Prod</pre>
<ul>
<li>Run `<strong>/etc/rc.d/init.d/httpd reload</strong>`</li>
<li>Run `<strong>/etc/rc.d/init.d/admserv reload</strong>`</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Install ImageMagick</strong></span></p>
<p>A must for most hosting nowadays.  Simply run `<strong>yum install ImageMagick ImageMagick-perl</strong>` as root.</p>
<p><span style="text-decoration: underline;"><strong>PHP upload settings</strong></span></p>
<p>In this new broadband age people are uploading pictures and such to their sites so I change the PHP upload defaults.  Change lines in <strong>/etc/php.ini</strong> (or your own php.ini) and run `<strong>/etc/rc.d/init.d/httpd reload</strong>`</p>
<pre>post_max_size = 20M
upload_max_filesize = 10M</pre>
<p><span style="text-decoration: underline;"><strong>Add Mime Types</strong></span></p>
<p>There seem to be some common mime types missing from the default install.  Add the following to `<strong>/etc/mime.types</strong>` and run `<strong>/etc/rc.d/init.d/httpd reload</strong>`</p>
<pre>application/x-ms-wmz wmz
application/x-ms-wmd wmd
audio/x-ms-wax wax
audio/x-ms-wma wma
image/x-icon ico
text/csv csv
video/x-ms-asf asf asx
video/x-ms-wm wm
video/x-ms-wmv wmv
video/x-ms-wmx wmx
video/x-ms-wvx wvx</pre>
<p><span style="text-decoration: underline;"><strong>yum checker</strong></span></p>
<p>Now I love the Nuonce/Solarspeed automatic yum installer however I like to install patches on systems when I am there, that way if there are any problems I can fix them straight away.  I have this little script that mails me when there are packages to install.</p>
<ul>
<li>touch /etc/cron.daily/yum-check</li>
<li>chmod 755 /etc/cron.daily/yum-check</li>
<li>vi /etc/cron.daily/yum-check</li>
</ul>
<pre> #!/bin/sh 
SERVER=`hostname`
OUTPUT=`/usr/bin/yum check-update`
EXITCODE=$?
if [ ${EXITCODE} != 0 ]
then
echo "${OUTPUT}" | /bin/mail -s "${SERVER}: Yum Updater" root
fi</pre>
<p><span style="text-decoration: underline;"><strong>Setup floppy drive</strong></span></p>
<p>If your system has a floppy disc drive you won&#8217;t be able to use it until you run `<strong>floppy &#8211;createrc &gt; /etc/floppy</strong>`</p>
<p><span style="text-decoration: underline;"><strong>Majordomo logfile</strong></span></p>
<p>I know it&#8217;s silly but I like all my log files to be in one place&#8230;.</p>
<ul>
<li>cd /var/log/mail</li>
<li>ln -s /usr/local/majordomo/log majordomo</li>
</ul>
<p>I hope this is of use to people</p>
<img decoding="async" src="https://analytics.dogsbody.com/piwik.php?idsite=4&amp;rec=1&amp;url=https%3A%2F%2Fwww.dogsbody.org%2F2006%2F08%2Fthings-to-do-to-a-blank-bluequartz-install%2F%3Fpk_campaign%3Dfeed%26pk_kwd%3Dthings-to-do-to-a-blank-bluequartz-install&amp;action_name=Things%20to%20do%20to%20a%20blank%20BlueQuartz%20install&amp;urlref=https%3A%2F%2Fwww.dogsbody.org%2Ffeed%2F" style="border:0;width:0;height:0" width="0" height="0" alt="" /><p>The post <a href="https://www.dogsbody.org/2006/08/things-to-do-to-a-blank-bluequartz-install/?pk_campaign=feed&#038;pk_kwd=things-to-do-to-a-blank-bluequartz-install">Things to do to a blank BlueQuartz install</a> appeared first on <a href="https://www.dogsbody.org">Dogsbody.org</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.dogsbody.org/2006/08/things-to-do-to-a-blank-bluequartz-install/?pk_campaign=feed&#038;pk_kwd=things-to-do-to-a-blank-bluequartz-install/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: www.dogsbody.org @ 2026-07-16 19:13:49 by W3 Total Cache
-->