<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with centos</title>
      <link>http://ask.metafilter.com/tags/centos</link>
      <description>Questions tagged with 'centos' at Ask MetaFilter.</description>
	  <pubDate>Wed, 20 May 2009 15:01:19 -0800</pubDate> <lastBuildDate>Wed, 20 May 2009 15:01:19 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>That Red Hat is awfully expensive!</title>
	<link>http://ask.metafilter.com/122652/That%2DRed%2DHat%2Dis%2Dawfully%2Dexpensive</link>	
	<description>Is paying for a RHEL subscription worth it, or should we just go with CentOS? We&apos;re looking at moving our e-mail server to more-capable hardware, and would like to avoid paying $4k+ for a new Xserve, if at all possible. We&apos;re reasonably happy with our current package, Communigate, but it&apos;s severely hardware constrained now. &lt;br&gt;
&lt;br&gt;
The only two applications that need to run on it are Communigate (which has ports for every OS under the sun) and Retrospect (our backup client, which has a Red Hat rpm). &lt;br&gt;
&lt;br&gt;
Ideally, I&apos;d get a cheap Quad-Core server from Dell, slap CentOS on it, installed our two applications, and call it a day. Still, I have nagging questions. Is paying for RHEL worth it? Can you continue updating your OS after your subscription expires? Is CentOS really 100% binary compatible with Red Hat?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.122652</guid>
	<pubDate>Wed, 20 May 2009 15:01:19 -0800</pubDate>
	<category>CentOS</category>
	<category>Communigate</category>
	<category>Dell</category>
	<category>Linux</category>
	<category>MacOSXServer</category>
	<category>Redhat</category>
	<category>RHEL</category>
	<category>Server</category>
	<category>Xserve</category>
	<dc:creator>Oktober</dc:creator>
	</item>
	<item>
	<title>Linux Shares: SMB or NFS?</title>
	<link>http://ask.metafilter.com/117710/Linux%2DShares%2DSMB%2Dor%2DNFS</link>	
	<description>Which is the better way to share Linux folders with Vista and OS X: SMB or NFS? I&apos;m an IT consultant who works from home.  I have a MacBook Pro, a Vista x64 desktop, and a Linux box on which I run VMWare.  Since a lot of what I do is LAMP based websites, my typical way of working is to set up a CentOS 5.2 VMWare image with the LAMP stack for each customer&apos;s site, running on the Linux box.  I work on my Vista desktop in Eclipse 3.4.&lt;br&gt;
&lt;br&gt;
What&apos;s worked well so far is to create an SMB share for the web directory on the VMWare image, and locate the Eclipse project there.  I get to work in Eclipse on a box with plenty of horsepower so it&apos;s fast, and I don&apos;t need to transfer files to the image to see changes.  I&apos;ve tried using the VMWare console, and doing remote X on my Vista box, and both are sluggish in comparison.&lt;br&gt;
&lt;br&gt;
However, the nagging detail I want to address is that SMB seems like a really poor way to access the share.  When I save files in Eclipse, there&apos;s a momentary pause, and often a hard drive noise, like I&apos;m waking something up to access the share, even if I&apos;m doing it every 30 seconds.   I&apos;m generally dissatisfied with SMB because I&apos;d hoped to use the Linux box&apos;s copious hard drive space (2 TB) as networked backup for my laptop and desktop, but it seems unable to keep up, especially with large numbers of files.&lt;br&gt;
&lt;br&gt;
So:  Is NFS a better way to make shares available on Linux?  I&apos;m pretty sure that Vista has no problem accessing NFS shares with it&apos;s Unix services subsystem, and Leopard is unix based, so shouldn&apos;t have a problem either (I&apos;d like to be able to do on my laptop what I do on my desktop).  Is there something else I should be looking at?&lt;br&gt;
&lt;br&gt;
My network is via an Airport Extreme N.&lt;br&gt;
&lt;br&gt;
Bonus Question:  I&apos;m sharing a printer connected to my Vista box, and I&apos;ve allowed guest access.  Whenever my girlfriend tries to print from her MacBook, she gets a dialogue that asks whether she wants to connect as a guest or a named account; selecting guest works fine.  Can we get rid of the dialogue and make it connect as a guest without asking?&lt;br&gt;
&lt;br&gt;
Bonus Bonus question:  Anyone using PHP have an IDE they&apos;re more satisfied with than Eclipse, that includes SVN integration?&lt;br&gt;
&lt;br&gt;
Thanks in advance.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.117710</guid>
	<pubDate>Wed, 25 Mar 2009 11:29:22 -0800</pubDate>
	<category>CentOS</category>
	<category>filesharing</category>
	<category>Linux</category>
	<category>NFS</category>
	<category>SMB</category>
	<category>Vista</category>
	<dc:creator>fatbird</dc:creator>
	</item>
	<item>
	<title>Logrotate cronjob fails but running at command-line works.</title>
	<link>http://ask.metafilter.com/117371/Logrotate%2Dcronjob%2Dfails%2Dbut%2Drunning%2Dat%2Dcommandline%2Dworks</link>	
	<description>Why does my logrotate.conf file work correctly when logged in as root, but fail when executed as part of cron.daily? I have a few custom application logs that I want to rotate automatically using logrotate. I picked as a base template, the logrotate.conf file that gets installed for Apache:&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
/var/log/httpd/*log {&lt;br&gt;
    missingok&lt;br&gt;
    notifempty&lt;br&gt;
    sharedscripts&lt;br&gt;
    postrotate&lt;br&gt;
        /sbin/service httpd reload &amp;gt; /dev/null 2&amp;gt;/dev/null || true&lt;br&gt;
    endscript&lt;br&gt;
}&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
Here are two logrotate.conf entries that I created:&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
/var/log/hellavcr.log {&lt;br&gt;
        ifempty&lt;br&gt;
        missingok&lt;br&gt;
        nomail&lt;br&gt;
        weekly&lt;br&gt;
        rotate 1&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
/var/log/hellanzbinit.log {&lt;br&gt;
        ifempty&lt;br&gt;
        missingok&lt;br&gt;
        nomail&lt;br&gt;
        daily&lt;br&gt;
        rotate 2&lt;br&gt;
}&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
If I sudo as root and execute &quot;/usr/sbin/logrotate hellanzb&quot; the command executes without any errors. However, every time the cronjob &quot;/etc/cron.daily/logrotate&quot; runs I get a bunch of error messages:&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;sh: line 2: missingok: command not found&lt;br&gt;
sh: line 3: nomail: command not found&lt;br&gt;
sh: line 4: weekly: command not found&lt;br&gt;
sh: line 5: rotate: command not found&lt;br&gt;
sh: line 2: ifempty: command not found&lt;br&gt;
sh: line 3: missingok: command not found&lt;br&gt;
sh: line 4: nomail: command not found&lt;br&gt;
sh: line 5: daily: command not found&lt;br&gt;
sh: line 6: rotate: command not found&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
I&apos;ve checked the permissions for both the logrotate.conf files and the actual log files and they seems to be identical as far as my applications and Apache goes - so why the errors?&lt;br&gt;
&lt;br&gt;
OS Info - CentOS 5, 64-bit running on a VPS.&lt;br&gt;
&lt;br&gt;
Please help!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.117371</guid>
	<pubDate>Sat, 21 Mar 2009 23:32:25 -0800</pubDate>
	<category>centos</category>
	<category>errors</category>
	<category>logrotate</category>
	<category>resolved</category>
	<dc:creator>your mildly obsessive average geek</dc:creator>
	</item>
	<item>
	<title>Why does Apache2 serve a subdomain when given an IP?</title>
	<link>http://ask.metafilter.com/116733/Why%2Ddoes%2DApache2%2Dserve%2Da%2Dsubdomain%2Dwhen%2Dgiven%2Dan%2DIP</link>	
	<description>I have a domain hosted on a VPS running CentOS5. Whenever I enter  http://my-vps-ip in my browser, I get redirected to http://subdomain.mysite.com. 

My limited Google-fu is no match for this particular problem, so I&apos;m hoping the folks at AskMeFi can tell me how I should setup Apache so that http://my-vps-ip goes to http://mysite.com and not the subdomain? Extracts from the httpd.conf file:&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
ServerName mysite.com&lt;br&gt;
...&lt;br&gt;
UseCanonicalName Off&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
conf file defining the subdomain:&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
&amp;lt;virtualhost *:80&amp;gt; &lt;br&gt;
        ServerName      subdomain.mysite.com&lt;br&gt;
        DocumentRoot    /var/www/subdomain&lt;br&gt;
        ErrorLog /var/log/httpd/subdomain_mysite_com-error.log&lt;br&gt;
        CustomLog /var/log/httpd/subdomain_mysite-access.log combined&lt;br&gt;
    &amp;lt;directory&amp;gt; &lt;br&gt;
        Options Indexes FollowSymLinks&lt;br&gt;
        AllowOverride AuthConfig FileInfo Indexes Limit&lt;br&gt;
       Order allow,deny&lt;br&gt;
       Allow from all&lt;br&gt;
     &amp;lt;/directory&amp;gt; &lt;br&gt;
&amp;lt; /virtualhost&amp;gt; &lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
Also, FWIW - currently the rDNS lookup on my VPS IP goes to ns1.mysite.com.&lt;br&gt;
&lt;br&gt;
Many thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.116733</guid>
	<pubDate>Sat, 14 Mar 2009 00:41:20 -0800</pubDate>
	<category>apache</category>
	<category>centos</category>
	<category>resolved</category>
	<category>subdomain</category>
	<category>vps</category>
	<dc:creator>your mildly obsessive average geek</dc:creator>
	</item>
	<item>
	<title>Syslog server</title>
	<link>http://ask.metafilter.com/97876/Syslog%2Dserver</link>	
	<description>SyslogFilter: Any suggestions for a FREE centralized syslog server? The centralized server will most likely be running Centos. What programs do you suggest? I have both window and linux machines that will be sending their syslogs and i will need to do some sort of reporting. Thanks in advance. </description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.97876</guid>
	<pubDate>Wed, 30 Jul 2008 06:47:24 -0800</pubDate>
	<category>centos</category>
	<category>syslog</category>
	<dc:creator>flipmiester99</dc:creator>
	</item>
	<item>
	<title>Bizarre Linux Networking Problem</title>
	<link>http://ask.metafilter.com/72794/Bizarre%2DLinux%2DNetworking%2DProblem</link>	
	<description>I have a server running Centos 5. It&apos;s currently refusing outside connections to any port except port 22. ip-tables and SELinux are both disabled. Whiskey Tango Foxtrot? By outside connections, I mean any connection that&apos;s not localhost. So, for example, I can telnet to localhost port 25, but from a machine on the same subnet (255.255.255.0) it refuses the connection. I&apos;ve also checked /etc/hosts.allow and /etc/hosts.deny, both are empty and in xinetd.conf no_access and only_from remain unset.&lt;br&gt;
&lt;br&gt;
Seriously guys, I&apos;m sure I&apos;m missing something really stupid, but I&apos;m baffled at the moment.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.72794</guid>
	<pubDate>Mon, 01 Oct 2007 16:13:23 -0800</pubDate>
	<category>centos</category>
	<category>firewall</category>
	<category>linux</category>
	<category>networking</category>
	<category>tcp-ip</category>
	<category>unix</category>
	<dc:creator>signalnine</dc:creator>
	</item>
	<item>
	<title>RAID 10 on RHEL 5</title>
	<link>http://ask.metafilter.com/70560/RAID%2D10%2Don%2DRHEL%2D5</link>	
	<description>How did *you* achieve a software RAID 10 (or 1+0) setup on your RHEL5 (or 4) box? I&apos;ve spent the last three days running down rabbit hole after rabbit hole trying to build a Centos 5 system with its root filesystem (/) on a nested software RAID 1+0 device.&lt;br&gt;
&lt;br&gt;
Now I&apos;ve given up and adopted a compromise, with / on a RAID 5 and other frequently used directories on a RAID 10 (not true nested raid, mind you, but the &lt;a href=&quot;http://cgi.cse.unsw.edu.au/~neilb/01093607424&quot;&gt;single-level version&lt;/a&gt;), but I know I&apos;ll get myself into this situation again, and I want to hear if anyone else has found a better way out.&lt;br&gt;
&lt;br&gt;
Some of the snags I encountered:&lt;br&gt;
 * Disk Druid doesn&apos;t support raid &quot;10&quot; or nested levels of software raid (1+0, 0+1), and it won&apos;t recognize such filesystems if I configure them through the terminal.&lt;br&gt;
 * While I could configure nested levels of raid post-install with mdadm, I couldn&apos;t get any to be recognized on reboot.&lt;br&gt;
&lt;br&gt;
My setup:&lt;br&gt;
 * Two 64-bit Intel processors&lt;br&gt;
 * Four 15K 74G scsi disks&lt;br&gt;
* 4G RAM</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.70560</guid>
	<pubDate>Fri, 31 Aug 2007 17:26:32 -0800</pubDate>
	<category>centos</category>
	<category>raid</category>
	<category>raid10</category>
	<category>redhat</category>
	<category>rhel</category>
	<category>softwareraid</category>
	<dc:creator>quasistoic</dc:creator>
	</item>
	<item>
	<title>I want to stream more freely!</title>
	<link>http://ask.metafilter.com/60807/I%2Dwant%2Dto%2Dstream%2Dmore%2Dfreely</link>	
	<description>I&apos;m interested in setting up a Flash Media Server.  According to Adobe, you must be running Red Hat Enterprise 3 or 4 for this to work.  Is it possible that you could run an FMS on &lt;a href=&quot;http://www.centos.org&quot;&gt;centOS&lt;/a&gt;?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.60807</guid>
	<pubDate>Tue, 17 Apr 2007 19:42:27 -0800</pubDate>
	<category>centos</category>
	<category>flash</category>
	<category>linux</category>
	<category>redhatenterprise</category>
	<category>streaminggoodness</category>
	<dc:creator>localhuman</dc:creator>
	</item>
	<item>
	<title>Help finding Apache 2.2.4 x86_64</title>
	<link>http://ask.metafilter.com/59052/Help%2Dfinding%2DApache%2D224%2Dx8664</link>	
	<description>I can&apos;t seem to find the rpm for Apache 2.2.4 x86_64 for RedHat 4 and/or CentOS 4.4... does anyone know where it is or if it even exists?  Gracias.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.59052</guid>
	<pubDate>Tue, 20 Mar 2007 11:03:39 -0800</pubDate>
	<category>64bit</category>
	<category>apache</category>
	<category>centos</category>
	<category>linux</category>
	<category>redhat</category>
	<category>rpm</category>
	<dc:creator>hummercash</dc:creator>
	</item>
	
	</channel>
</rss>

