<?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>Linux Movies</title>
	<atom:link href="http://www.linuxmovies.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxmovies.org</link>
	<description>Linux in Hollywood film production</description>
	<lastBuildDate>Mon, 27 Feb 2012 17:42:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Adding a Linux Swap File for Virtual Memory</title>
		<link>http://www.linuxmovies.org/2012/02/27/adding-a-linux-swap-file-for-virtual-memory/</link>
		<comments>http://www.linuxmovies.org/2012/02/27/adding-a-linux-swap-file-for-virtual-memory/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 17:41:55 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=96</guid>
		<description><![CDATA[Give your Linux system more virtual memory By Robin Rowe HOLLYWOOD, CA (Hollywood  Today) 2012/2/27 &#8211; Sometimes you need a little more memory for programs that use a lot of memory like Firefox. It used to be you had to dedicate a separate swap partition, but now Linux virtual memory can use a file instead [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Give your Linux system more virtual memory</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (Hollywood  Today) 2012/2/27 &#8211; Sometimes you need a little more memory for programs that use a lot of memory like Firefox. It used to be you had to dedicate a separate swap partition, but now Linux virtual memory can use a file instead of a partition, like Windows. Here&#8217;s how to set that up&#8230;.</p>
<p><code># dd if=/dev/zero of=/boot/swapfile bs=1024 count=524288<br />
# mkswap /boot/swapfile<br />
# chown root:root /boot/swapfile<br />
# chmod 0600 /boot/swapfile<br />
# swapon /boot/swapfile</code></p>
<p><code> vi /etc/fstab</code></p>
<p><code>/boot/swapfile    swap    swap   defaults 0 0</code></p>
<p>&nbsp;</p>
<p><code>$ free</code></p>
<p>&nbsp;</p>
<p><a href="http://www.cyberciti.biz/faq/linux-add-a-swap-file-howto/">http://www.cyberciti.biz/faq/linux-add-a-swap-file-howto/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2012/02/27/adding-a-linux-swap-file-for-virtual-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flumotion Server Installation</title>
		<link>http://www.linuxmovies.org/2012/02/18/flumotion-server-installation/</link>
		<comments>http://www.linuxmovies.org/2012/02/18/flumotion-server-installation/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 14:38:35 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=72</guid>
		<description><![CDATA[The open source server to stream to iPad By Robin Rowe HOLLYWOOD, CA (LinuxMovies.org) 2012/1/31 &#8211; Ustream and LiveStream are Flash-based streamers and therefore don&#8217;t work with the iPad or iPhone. An alternative is Flumotion: Building and Installing wget http://www.flumotion.net/src/flumotion/flumotion-0.10.0.tar.gz tar xvfz  .. cd flumotion.. ./configure checking for XML::Parser&#8230; configure: error: XML::Parser perl module is [...]]]></description>
			<content:encoded><![CDATA[<p>The open source server to stream to iPad</p>
<p>By Robin Rowe</p>
<p>HOLLYWOOD, CA (LinuxMovies.org) 2012/1/31 &#8211; Ustream and LiveStream are Flash-based streamers and therefore don&#8217;t work with the iPad or iPhone. An alternative is Flumotion:</p>
<p>Building and Installing</p>
<p>wget http://www.flumotion.net/src/flumotion/flumotion-0.10.0.tar.gz</p>
<p>tar xvfz  ..</p>
<p>cd flumotion..</p>
<p>./configure</p>
<p>checking for XML::Parser&#8230; configure: error: XML::Parser perl module is required for intltools</p>
<p>Install Perl Moducles</p>
<p>http://perl.about.com/od/packagesmodules/qt/perlcpan.htm</p>
<pre><code> perl -MCPAN -e shell
</code>
 install Bundle::CPAN
 reload cpan<code>

cpan&gt; install </code>XML::Parser
<pre><code>
Back to Flumotion, as root...

./configure
make
make install</code></pre>
<p>http://www.flumotion.net/doc/flumotion/manual/en/trunk/html/</p>
<p>http://www.getflv.net/flumotion.com-downloader/how_to-record-flumotion-com-videos-to-mp3.htm</pre>
<p>Install client&#8230;</p>
<p>&nbsp;</p>
<p>http://python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2</p>
<p>no pager for man&#8230;</p>
<p>export PAGER=less</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2012/02/18/flumotion-server-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puppy Linux Compiler Installation</title>
		<link>http://www.linuxmovies.org/2012/01/31/puppy-linux-compiler-installation/</link>
		<comments>http://www.linuxmovies.org/2012/01/31/puppy-linux-compiler-installation/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 21:34:50 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=69</guid>
		<description><![CDATA[Puppy has a special procedure for installing the build tools to compile programs By Robin Rowe HOLLYWOOD, CA (LinuxMovies.org) 2012/1/30 &#8211; Puppy Linux is a great small distro. It takes a little special effort to install the build tools. Installing the &#8220;devx&#8221; file in a full hard drive installation 1. Download devx package that matches [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Puppy has a special procedure for installing the build tools to compile programs</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (LinuxMovies.org) 2012/1/30 &#8211; Puppy Linux is a great small distro. It takes a little special effort to install the build tools.</p>
<p>Installing the &#8220;devx&#8221; file in a full hard drive installation<br />
1. Download devx package that matches your version of Puppy <a href="http://distro.ibiblio.org/pub/linux/distributions/puppylinux/">http://distro.ibiblio.org/pub/linux/distributions/puppylinux/</a>Click on the devx_xxx.sfs in a ROX-Filer window to mount it.<br />
2. Open a terminal in the mounted directory.<br />
3. # cp -a &#8211;re move-destination ./* /mnt/hda2/<br />
4. # sync<br />
5. Close the terminal.<br />
6. Click on the devx_xxx.sfs file to unmount it</p>
<p>Install the man page pages and execute mandb -c.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2012/01/31/puppy-linux-compiler-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightening Ubuntu and Dropping Unity</title>
		<link>http://www.linuxmovies.org/2011/12/31/lightening-ubuntu-and-dropping-unity/</link>
		<comments>http://www.linuxmovies.org/2011/12/31/lightening-ubuntu-and-dropping-unity/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 22:27:59 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=66</guid>
		<description><![CDATA[Make Ubuntu lighter and more fun to use with a couple apt-get commands By Robin Rowe HOLLYWOOD, CA (LinuxMovies.org) 2012/12/31 &#8211; Ubuntu is a popular Linux distro that many open source enthusiasts like. It&#8217;s based on Debian, but without so many rough edges. You could go instead with a Red Hat-based distro such as CentOS, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Make Ubuntu lighter and more fun to use with a couple apt-get commands</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (LinuxMovies.org) 2012/12/31 &#8211; <a href="http://www.ubuntu.com/">Ubuntu</a> is a popular Linux distro that many open source enthusiasts like. It&#8217;s based on Debian, but without so many rough edges. You could go instead with a Red Hat-based distro such as CentOS, Fedora or SUSE, but if you&#8217;re an open source developer being on a Debian-based distro just seems right. Unfortunately, Ubuntu made a desktop UI change that will tend to drive you nuts.</p>
<p>It&#8217;s called Unity. Gnome and KDE users hate it, and everyone else just says, what the f**K? If you like the Playskool interface of Windows XP, you&#8217;ll find Unity is a step further past that. Unity is so simple, so easy, that it&#8217;s unusable. Lot&#8217;s of folks have written about <a href="http://www.opiniond.com/2011/05/5-reasons-why-unity-sucks/">Why Unity Sucks</a>, so let&#8217;s not repeat that here. The question is, if you&#8217;re not ready to throw out Ubuntu with the Unity bath water, what to do?</p>
<p>Open a terminal window by searching for &#8216;term&#8217; in the confusing Unity interface. Once you get a<span id="more-66"></span> terminal open&#8230;</p>
<p>sudo apt-get install lubuntu-desktop</p>
<p>That converts your Ubuntu halfway into the lightweight <a href="http://lubuntu.net/">LUbuntu</a> distro with LXDE. Now we just remove the heavy bits&#8230;</p>
<p>sudo apt-get remove  acpi-support acpid adium-theme-ubuntu aisleriot apg  app-install-data app-install-data-partner appmenu-gtk appmenu-gtk3  appmenu-qt apt-xapian-index apturl apturl-common at-spi2-core  avahi-autoipd bamfdaemon banshee banshee-extension-soundmenu  banshee-extension-ubuntuonemusicstore baobab binfmt-support bluez-alsa  bluez-cups bluez-gstreamer branding-ubuntu brasero brasero-cdrkit  brasero-common brltty c2esp checkbox checkbox-gtk cli-common compiz  compiz-core compiz-gnome compiz-plugins-default  compiz-plugins-main-default compizconfig-backend-gconf cups-bsd dc  deja-dup dmz-cursor-theme doc-base duplicity dvd+rw-tools empathy  empathy-common eog espeak espeak-data evolution-data-server  evolution-data-server-common example-content exiv2 firefox  firefox-globalmenu firefox-gnome-support foo2zjs gamin gbrainy gcalctool  gcc gcc-4.6 gedit gedit-common geoclue geoclue-ubuntu-geoip  ghostscript-x ginn gir1.2-atspi-2.0 gir1.2-gconf-2.0 gir1.2-gmenu-3.0  gir1.2-gtksource-3.0 gir1.2-indicate-0.6  gir1.2-launchpad-integration-3.0 gir1.2-peas-1.0 gir1.2-totem-1.0  gir1.2-totem-plparser-1.0 gir1.2-wnck-3.0 gnome-accessibility-themes  gnome-codec-install gnome-control-center gnome-control-center-data  gnome-desktop3-data gnome-font-viewer gnome-games-common  gnome-icon-theme-symbolic gnome-mahjongg gnome-media gnome-menus  gnome-nettool gnome-online-accounts gnome-orca gnome-power-manager  gnome-screensaver gnome-screenshot gnome-search-tool gnome-session  gnome-session-bin gnome-session-canberra gnome-session-common  gnome-settings-daemon gnome-sudoku gnome-system-log gnome-system-monitor  gnome-terminal gnome-terminal-data gnome-utils-common gnomine growisofs  gstreamer0.10-alsa gstreamer0.10-gconf gstreamer0.10-plugins-base-apps  gstreamer0.10-pulseaudio gstreamer0.10-tools guile-1.8-libs gwibber  gwibber-service gwibber-service-facebook gwibber-service-identica  gwibber-service-twitter hplip hplip-cups hplip-data hwdata ibus ibus-gtk  ibus-gtk3 ibus-pinyin ibus-pinyin-db-android ibus-pinyin-db-open-phrase  ibus-table im-switch indicator-appmenu indicator-datetime  indicator-power indicator-session indicator-sound inputattach  intel-gpu-tools kerneloops-daemon lftp libappindicator0.1-cil  libasound2-plugins libatk-adaptor libatspi2.0-0 libavahi-gobject0  libbamf0 libbamf3-0 libboost-serialization1.46.1 libbrasero-media3-1  libbrlapi0.5 libc-dev-bin libc6-dev libcamel-1.2-29 libcanberra-pulse  libcompizconfig0 libcrypt-passwdmd5-perl libdbus-glib1.0-cil  libdbus1.0-cil libdbusmenu-qt2 libdconf-dbus-1-0 libdconf-qt0 libdconf0  libdecoration0 libdotconf1.0 libebackend-1.2-1 libebook1.2-12  libecal1.2-10 libedata-book-1.2-11 libedata-cal-1.2-13  libedataserver1.2-15 libedataserverui-3.0-1 libespeak1 libexempi3  libexiv2-10 libfile-copy-recursive-perl libfolks-telepathy25 libfolks25  libgail-3-common libgail-common libgamin0 libgconf2.0-cil libgd2-xpm  libgdata-common libgdata1.7-cil libgdata13 libgdiplus libgeoclue0  libgexiv2-0 libgkeyfile1.0-cil libglew1.5 libglewmx1.5 libglib2.0-bin  libglib2.0-cil libglib2.0-data libgmime-2.4-2 libgmime2.4-cil  libgnome-control-center1 libgnome-desktop-3-2  libgnome-media-profiles-3.0-0 libgnome-menu-3-0 libgnome-menu2  libgnome2-common libgnomekbd-common libgnomekbd7 libgnomevfs2-0  libgnomevfs2-common libgoa-1.0-0 libgomp1 libgtk-sharp-beans-cil  libgtk-vnc-2.0-0 libgtk2.0-cil libgtkmm-3.0-1 libgtksourceview-3.0-0  libgtksourceview-3.0-common libgtkspell3-0 libgudev1.0-cil libgvnc-1.0-0  libgweather-3-0 libgweather-common libgwibber-gtk2 libgwibber2  libhyphen0 libibus-1.0-0 libidl0 libido3-0.1-0 libjson-glib-1.0-0  liblaunchpad-integration1.0-cil liblightdm-gobject-1-0 liblouis-data  liblouis2 libmetacity-private0 libmission-control-plugins0 libmng1  libmono-addins-gui0.2-cil libmono-addins0.2-cil libmono-cairo4.0-cil  libmono-corlib4.0-cil libmono-csharp4.0-cil libmono-i18n-west4.0-cil  libmono-i18n4.0-cil libmono-posix4.0-cil libmono-security4.0-cil  libmono-sharpzip4.84-cil libmono-system-configuration4.0-cil  libmono-system-core4.0-cil libmono-system-drawing4.0-cil  libmono-system-security4.0-cil libmono-system-xml4.0-cil  libmono-system4.0-cil libmono-zeroconf1.0-cil libmysqlclient16  libmythes-1.2-0 libnotify-bin libnotify0.4-cil libnux-1.0-0  libnux-1.0-common liboauth0 libopencc1 liborbit2  liboverlay-scrollbar-0.2-0 liboverlay-scrollbar3-0.2-0 libpeas-1.0-0  libpeas-common libprotobuf7 libprotoc7 libpulse-mainloop-glib0  libqt4-dbus libqt4-declarative libqt4-network libqt4-opengl  libqt4-script libqt4-sql libqt4-sql-mysql libqt4-svg libqt4-xml  libqt4-xmlpatterns libqtbamf1 libqtcore4 libqtdee2 libqtgconf1 libqtgui4  libquadmath0 libquvi0 libraptor2-0 librasqal3 librdf0  libreoffice-base-core libreoffice-calc libreoffice-common  libreoffice-core libreoffice-draw libreoffice-emailmerge  libreoffice-gnome libreoffice-gtk libreoffice-help-en-us  libreoffice-impress libreoffice-math libreoffice-style-human  libreoffice-writer librest-0.7-0 librsync1 libsane-hpaio  libsdl1.2debian-pulseaudio libspeechd2 libspeexdsp1 libstlport4.6ldbl  libsyncdaemon-1.0-1 libtaglib2.0-cil libtelepathy-farsight0  libtelepathy-logger2 libtextcat-data libtextcat0 libtotem-plparser17  libtotem0 libubuntuone-1.0-1 libubuntuone1.0-cil libunique-1.0-0  libunity-2d-private0 libunity-core-4.0-4 libunity-misc4 libutempter0  libuuid-perl libwmf0.2-7-gtk libwnck-3-0 libwnck-3-common libwnck-common  libwnck22 libxp6 libxres1 libyajl1 libyaml-tiny-perl libzeitgeist-1.0-1  light-themes lightdm linux-libc-dev make media-player-info metacity  metacity-common mono-4.0-gac mono-gac mono-runtime mousetweaks  mscompress mysql-common nautilus nautilus-sendto nautilus-sendto-empathy  nautilus-share notify-osd notify-osd-icons nux-tools onboard oneconf  openprinting-ppds overlay-scrollbar pinyin-database pkg-config  plymouth-theme-ubuntu-logo protobuf-compiler ptouch-driver pulseaudio  pulseaudio-esound-compat pulseaudio-module-bluetooth  pulseaudio-module-gconf pulseaudio-module-x11 pulseaudio-utils pxljr  python-brlapi python-configglue python-dateutil python-egenix-mxdatetime  python-egenix-mxtools python-farsight python-gconf python-ibus  python-imaging python-indicate python-libproxy python-louis  python-openssl python-pam python-papyon python-pexpect  python-piston-mini-client python-protobuf python-pyatspi2  python-pyinotify python-serial python-speechd python-telepathy  python-twisted-bin python-twisted-core python-twisted-names  python-twisted-web python-ubuntuone-client  python-ubuntuone-control-panel python-ubuntuone-storageprotocol  python-uno python-virtkey python-webkit python-wnck qdbus qt-at-spi  radeontool rastertosag-gdi rdesktop rfkill rtkit sane-utils seahorse  shotwell sni-qt software-center speech-dispatcher splix  ssh-askpass-gnome syslinux syslinux-common telepathy-butterfly  telepathy-gabble telepathy-haze telepathy-idle telepathy-indicator  telepathy-logger telepathy-mission-control-5 telepathy-salut thunderbird  thunderbird-globalmenu thunderbird-gnome-support tomboy toshset totem  totem-common totem-mozilla totem-plugins ttf-opensymbol ubufox  ubuntu-artwork ubuntu-desktop ubuntu-docs ubuntu-mono ubuntu-sounds  ubuntu-sso-client ubuntu-system-service ubuntu-wallpapers  ubuntuone-client ubuntuone-client-gnome ubuntuone-control-panel  ubuntuone-control-panel-gtk ubuntuone-couch ubuntuone-installer unity  unity-2d unity-2d-launcher unity-2d-panel unity-2d-places  unity-2d-spread unity-asset-pool unity-common unity-greeter  unity-lens-applications unity-lens-files unity-lens-music  unity-scope-musicstores unity-services uno-libs3 update-inetd ure  usb-creator-common usb-creator-gtk vinagre vino whois wodim xbitmaps  xcursor-themes xdg-user-dirs-gtk xdiagnose xfonts-mathml xterm  xul-ext-ubufox zeitgeist zeitgeist-core zeitgeist-datahub  zeitgeist-extension-fts zenity zenity-common</p>
<p>If you have a different variant of Ubuntu to convert, here are more options for <a href="http://www.psychocats.net/ubuntu/purelxde">Getting Back to a Pure LXDE</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/12/31/lightening-ubuntu-and-dropping-unity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Perfect WordPress Configuration</title>
		<link>http://www.linuxmovies.org/2011/12/01/the-perfect-wordpress-configuration/</link>
		<comments>http://www.linuxmovies.org/2011/12/01/the-perfect-wordpress-configuration/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 06:06:08 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=55</guid>
		<description><![CDATA[Tweak WordPress to be the best HOLLYWOOD, CA (LinuxMovies) 2011/11/30 &#8211; WordPress has many options and plug-ins. Here&#8217;s a recommended configuration. Build a custom template Check Permalinks work ok when clicking through a front page link Plug-ins: Akismet, Embed Iframe, Google News Sitemap, Really simple Facebook Twitter share buttons, WP Super Cache, Fix RSS Feeds, WP-Stats-Dashboard, WP to Twitter, WP YouTube Lyte, Really [...]]]></description>
			<content:encoded><![CDATA[<p>Tweak WordPress to be the best  HOLLYWOOD, CA (LinuxMovies) 2011/11/30 &#8211; WordPress has many options and plug-ins. Here&#8217;s a recommended configuration.</p>
<ol>
<li>Build a custom template</li>
<li>Check Permalinks work ok when clicking through a front page link</li>
<li>Plug-ins: Akismet, Embed Iframe, Google News Sitemap, Really simple Facebook Twitter share buttons, WP Super Cache, Fix RSS Feeds, WP-Stats-Dashboard, WP to Twitter, WP YouTube Lyte, Really simple Facebook Twitter share buttons, Share On Facebook</li>
<li>WordPress Settings: Akismet, WP to Twitter, WP Super Cache, WP-Stats-Dashboard</li>
<li>Add contact and privacy policy pages</li>
<li>Add links in template for our Facebook and Twitter pages</li>
<li>Add banners in template for our sponsors and affiliates</li>
<li>Add RSS feed link</li>
<li>Add Google Adsense ads to template and sitemap to Google Analytics</li>
<li>Add Alexa, Compete and Quantcast</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/12/01/the-perfect-wordpress-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing FluxBB on Linux</title>
		<link>http://www.linuxmovies.org/2011/11/07/installing-fluxbb-on-linux/</link>
		<comments>http://www.linuxmovies.org/2011/11/07/installing-fluxbb-on-linux/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 17:43:51 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=48</guid>
		<description><![CDATA[FluxBB is a free open source lightweight PHP bulletin board forum By Robin Rowe HOLLYWOOD, CA (LinuxMovies) 11/7/2011 &#8211; Installing a forum on your website enables your users to post useful information. There are many open source PHP-based forums available. FluxBB is a good choice as a lightweight forum that supports MySQL, PostgresSQL or SQLite. [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong></p>
<div id="attachment_51" class="wp-caption alignleft" style="width: 169px"><img class="size-full wp-image-51 " title="FluxBB can use MySQL, PostgresSQL or SQLite" src="http://www.linuxmovies.org/wp-content/uploads/2011/11/fluxbb.png" alt="FluxBB can use MySQL, PostgresSQL or SQLite" width="159" height="82" /><p class="wp-caption-text">FluxBB can use MySQL, PostgresSQL or SQLite</p></div>
<p></strong></p>
<p><strong>FluxBB is a free open source lightweight PHP bulletin board forum</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (LinuxMovies) 11/7/2011 &#8211; Installing a forum on your website enables your users to post useful information. There are many <a href="http://www.mitchelaneous.com/2010/05/31/9-best-phpbb-alternatives/">open source PHP-based forums</a> available. <a href="http://fluxbb.org">FluxBB </a>is a good choice as a lightweight forum that supports MySQL, PostgresSQL or SQLite. Here&#8217;s how to install on Linux with MySQL.</p>
<p><strong>Create table in MySQL</strong></p>
<p>mysql -u root -p<br />
CREATE USER &#8216;fluxbb&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;password&#8217;;<br />
CREATE DATABASE fluxbb;<br />
GRANT ALL PRIVILEGES ON fluxbb.* TO &#8220;fluxbb&#8221;@&#8221;localhost&#8221;;<br />
FLUSH PRIVILEGES;<br />
EXIT;</p>
<p><strong>Download and Unpack FluxBB</strong></p>
<p>cd /var/www/html/YOUR_WEBSITE<br />
wget http://fluxbb.org/download/releases/1.4.7/fluxbb-1.4.7.tar.bz2<br />
tar xvfj fluxbb-1.4.7.tar.bz2<br />
mv fluxbb-1.4.7 forum<br />
chown -R apache:apache forum</p>
<p><strong>Finish Installation via Web Browser</strong></p>
<p>http://YOUR_WEBSITE/forum/install.php</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/11/07/installing-fluxbb-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lighten CentOS Server</title>
		<link>http://www.linuxmovies.org/2011/09/18/lighten-centos-server/</link>
		<comments>http://www.linuxmovies.org/2011/09/18/lighten-centos-server/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 22:12:42 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=43</guid>
		<description><![CDATA[A few things to remove that are unneeded on your CentOS server By Robin Rowe HOLLYWOOD, CA (LinuxMovies) 9/18/2011 &#8211; CentOS is a Redhat-based Linux that many use as a server. Here are a few things to jettison that a server doesn&#8217;t typically need. To disable X11 you could change your run level to 3 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>A few things to remove that are unneeded on your CentOS server</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (LinuxMovies) 9/18/2011 &#8211; CentOS is a Redhat-based Linux that many use as a server. Here are a few things to jettison that a server doesn&#8217;t typically need.</p>
<p>To disable X11 you could change your run level to 3 and edit the initdefault line in your /etc/inittab file. To get rid of X11 entirely, so you&#8217;re not updating useless packages with yum update, use this:</p>
<p>yum groupremove &#8220;X Window System&#8221;</p>
<p>We may want to put ImageMagick back.</p>
<p>yum install ImageMagick</p>
<p>We don&#8217;t need SAMBA:</p>
<p>yum remove samba-common</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/09/18/lighten-centos-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Putty SSH Access Denied Solution</title>
		<link>http://www.linuxmovies.org/2011/08/20/windows-7-putty-ssh-access-denied-solution/</link>
		<comments>http://www.linuxmovies.org/2011/08/20/windows-7-putty-ssh-access-denied-solution/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 17:58:12 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=38</guid>
		<description><![CDATA[Quick fix for Putty ssh client &#8220;Access Denied&#8221; hiccup on Windows 7 By Robin Rowe HOLLYWOOD, CA (Linux Movies) 8/20/11 &#8211; Windows doesn&#8217;t include an ssh client to connect to our Linux servers, so we use the open source Putty software. This software opens a terminal window where you can enter your login name and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Quick fix for Putty ssh client &#8220;Access Denied&#8221; hiccup on Windows 7</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (Linux Movies) 8/20/11 &#8211; Windows doesn&#8217;t include an ssh client to connect to our Linux servers, so we use the open source Putty software. This software opens a terminal window where you can enter your login name and password. Windows 7 gave us a surprise, though. It was saying &#8220;Access Denied&#8221; as soon as a user name was entered, before prompting for the password.</p>
<p>The solution is to create a new Putty connection with GSSAPI turned off. Putty was checking for that type of encryption by default. You can&#8217;t turn that off in your saved connection. Turn off GSSAPI first in Putty&#8217;s authentication settings, that&#8217;s under Connection/SS/Auth/GSSAPI. Then create a new connection and save it.</p>
<p>TIP: To see the event log in order to debug a Putty session, CTRL-click on the terminal window.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/08/20/windows-7-putty-ssh-access-denied-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Set CentOS Server Time Zone</title>
		<link>http://www.linuxmovies.org/2011/08/08/set-centos-server-time-zone/</link>
		<comments>http://www.linuxmovies.org/2011/08/08/set-centos-server-time-zone/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 04:01:36 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=36</guid>
		<description><![CDATA[# cd /etc # ln -sf /usr/share/zoneinfo/America/Los_Angeles localtime # date]]></description>
			<content:encoded><![CDATA[<p># cd /etc<br />
# ln -sf /usr/share/zoneinfo/America/Los_Angeles localtime<br />
# date</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/08/08/set-centos-server-time-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing WordPress on Linux</title>
		<link>http://www.linuxmovies.org/2011/06/27/installing-wordpress-on-linux/</link>
		<comments>http://www.linuxmovies.org/2011/06/27/installing-wordpress-on-linux/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 04:38:15 +0000</pubDate>
		<dc:creator>rower</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.linuxmovies.org/?p=11</guid>
		<description><![CDATA[Quick set-up guide for installing WordPress on a virtual host By Robin Rowe HOLLYWOOD, CA (LinuxMovies) 6/26/2011 &#8211; WordPress is open source PHP and MySQL-based content publishing software. We&#8217;ll configure MySQL with wpdb as the user name and a password that isn&#8217;t actually &#8216;password&#8217;. We&#8217;ll name the database the same name as our website. Then [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Quick set-up guide for installing WordPress on a virtual host</strong></p>
<p><em>By Robin Rowe</em></p>
<p>HOLLYWOOD, CA (LinuxMovies) 6/26/2011 &#8211; WordPress is open source PHP and MySQL-based content publishing software. We&#8217;ll configure MySQL with wpdb as the user name and a password that isn&#8217;t actually &#8216;password&#8217;. We&#8217;ll name the database the same name as our website. Then we&#8217;ll download, unzip and install the latest WordPress.</p>
<ol>
<li>mysql -u root -p<br />
CREATE USER &#8216;wpdb&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;password&#8217;;<br />
CREATE DATABASE linuxmovies;<br />
GRANT ALL PRIVILEGES ON goshtv.* TO &#8220;wpdb&#8221;@&#8221;localhost&#8221;;<br />
FLUSH PRIVILEGES;<br />
EXIT;</li>
<li>cd ~<br />
mkdir install<br />
cd install<br />
wget http://wordpress.org/latest.tar.gz<br />
tar xvfz latest.tar.gz<br />
md /var/www/html/linuxmovies.org/<br />
cp -rv ~/install/wordpress/* /var/www/html/linuxmovies.org/<br />
mv /var/www/html/linuxmovies.org/wp-config-sample.php /var/www/html/linuxmovies.org/wp-config.php<br />
chown -R apache /var/www/html/*<br />
chgrp -R apache /var/www/html/*</li>
<li>Edit wp-config.php<br />
Enter db, user, and pwd<br />
Enter secret keys:</p>
<p>https://api.wordpress.org/secret-key/1.1/salt/</p>
<p>define(&#8216;WP_DEBUG&#8217;, true);<br />
define(&#8216;WP_DEBUG_LOG&#8217;, true);</li>
<li>Edit httpd.conf to add virtual host</li>
<li>Check DNS is set</li>
</ol>
<p><strong>Virtual Host Apache Settings</strong></p>
<p>&lt;VirtualHost *:80 *:8080&gt;<br />
ServerName www.linuxmovies.org<br />
DocumentRoot /var/www/html/linuxmovies.org<br />
ScriptAlias /cgi-bin/ &#8220;/var/www/html/linuxmovies.org/cgi-bin/&#8221;<br />
Redirect permanent /webmail http://www.linuxmovies.org/cgi-bin/webmail.cgi<br />
&lt;/VirtualHost&gt;<br />
&lt;VirtualHost *:80 *:8080&gt;<br />
ServerName linuxmovies.org<br />
Redirect permanent /    http://www.linuxmovies.org/<br />
&lt;/VirtualHost&gt;</p>
<p><strong>Install These Plug-ins</strong></p>
<ul>
<li>Akismet: Scrape off comment spam.</li>
<li>Fix Rss Feeds</li>
<li>Google News Sitemap: Install before posting your first story.</li>
<li>WP-Stats-Dashboard</li>
<li>Jetpack: Necessary for WP-Stats-Dashboard. Don&#8217;t use abandoned WordPress.com Stats plug-in</li>
<li>WP YouTube Lyte; Embed YouTube videos easily.</li>
</ul>
<p><strong>Useful MySQL Commands</strong></p>
<p>show databases;<br />
use linuxmovies;<br />
show tables;<br />
select user from user;<br />
source batch-file;<br />
SHOW COLUMNS FROM City;<br />
select option_name from wp_options;<br />
select option_name from wp_options where option_name like  &#8216;akismet%&#8217;;<br />
select option_name, option_value from wp_options where option_name like  &#8216;%key%&#8217;;<br />
UPDATE wp_option SET option_value = &#8216;HP&#8217; WHERE option_value = &#8216;IBM&#8217;;<br />
delete from wp_options where option_name = &#8216;wpsd_un&#8217;;<br />
delete from wp_options where option_name = &#8216;wpsd_pw&#8217;;</p>
<p><strong>Making and Restoring WordPress Backups</strong></p>
<p>mysqldump -v -u root -p wordpress &gt; goshtv.sql<br />
mysqldump -u root -p wordpress_spl &gt; screenplaylab.sql<br />
mysql -u root -p goshtv &lt; goshtv.sql<br />
mysql -u root -p screenplaylab &lt; screenplaylab.sql<br />
mysql -u root -p hollywoodtoday &lt; hollywoodtoday.sql</p>
<p>zip -rv goshtv-images.zip /var/www/html/goshtv.net/wp-content/uploads/</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxmovies.org/2011/06/27/installing-wordpress-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

