<?xml version="1.0" encoding="utf-8"?>
<!-- If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/ -->
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:lj="http://www.livejournal.com">
  <id>urn:lj:livejournal.com:atom1:linux</id>
  <title>Linux Community</title>
  <subtitle>Linux Community</subtitle>
  <author>
    <name>Linux Community</name>
  </author>
  <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/"/>
  <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom"/>
  <updated>2008-09-05T04:04:00Z</updated>
  <lj:journal username="linux" type="community"/>
  <link rel="service.feed" type="application/x.atom+xml" href="http://community.livejournal.com/linux/data/atom" title="Linux Community"/>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1800037</id>
    <author>
      <name>tonytraductor</name>
    </author>
    <lj:poster user="tonytraductor"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1800037.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1800037"/>
    <title>Oggify (improved)</title>
    <published>2008-09-05T03:57:07Z</published>
    <updated>2008-09-05T04:04:00Z</updated>
    <content type="html">Aside from any argument over which audio file format is best (I like FOSS, thus ogg), I reworked my oggify script, attempting to implement what I learned here.&lt;br /&gt;&lt;br /&gt;&lt;a name="cutid1"&gt;&lt;/a&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;# convert mp3 and wav to ogg&lt;br /&gt;# tonytraductor / &lt;a href="http://www.BaldwinSoftware.com"&gt;http://www.BaldwinSoftware.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;echo -e "Oggify, at your service.\nOggify will convert all mp3 and wav files in this directory to ogg files, and REMOVE the old mp3 and wav files.\nFirst, it will make all file extensions lower case, and remove spaces from the file names.\n\nDo you wish to continue? (type y to continue)"&lt;br /&gt;&lt;br /&gt;read ans&lt;br /&gt;&lt;br /&gt;if [ $ans == y ]; then&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;echo "Removing spaces in names, and removing capitals from file extensions..."&lt;br /&gt;&lt;br /&gt;##&lt;br /&gt;# Note:  Ubuntu users (possibly any deb based distro?) will have to alter the rename command to&lt;br /&gt;# rename 's/\ /_/' *.(file extension)&lt;br /&gt;&lt;br /&gt;# make extensions all lower case&lt;br /&gt;&lt;br /&gt;for i in *.MP3&lt;br /&gt;do &lt;br /&gt;rename MP3 mp3 *.MP3&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;for i in .WAV&lt;br /&gt;do&lt;br /&gt;rename WAV wav *.WAV&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;# remove spaces in names&lt;br /&gt;&lt;br /&gt;for i in .mp3&lt;br /&gt;do &lt;br /&gt;rename \  _ *.mp3&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;for i in  *.wav&lt;br /&gt;do &lt;br /&gt;rename \  _ *.wav&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;echo "Converting mp3 files to wav..."&lt;br /&gt;&lt;br /&gt;# converting all mp3 files to wav,&lt;br /&gt;# so there will be nothing but wavs&lt;br /&gt;# DELETING the mp3 files as soon as the wav is completed&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;for i in *.mp3&lt;br /&gt;do&lt;br /&gt;&lt;br /&gt;n=$i&lt;br /&gt;&lt;br /&gt;echo "Converting $n to wav..."&lt;br /&gt;&lt;br /&gt;mpg123 -w "$n.wav" "$n"&lt;br /&gt;&lt;br /&gt;echo "Stripping mp3 extension from wav file name..."&lt;br /&gt;&lt;br /&gt;rename .mp3. . $n.wav&lt;br /&gt;&lt;br /&gt;echo "Removing mp3 file..."&lt;br /&gt;&lt;br /&gt;rm $n&lt;br /&gt;&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;# and, now, converting those wav files to ogg&lt;br /&gt;# DELETING wav files after oggs are created&lt;br /&gt;&lt;br /&gt;echo "Converting wav files to ogg..."&lt;br /&gt;&lt;br /&gt;for i in *.wav&lt;br /&gt;do &lt;br /&gt;n=$i&lt;br /&gt;oggenc $n&lt;br /&gt;&lt;br /&gt;echo "Ogg created, removing wav file..."&lt;br /&gt;rm $n&lt;br /&gt;&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;# more clean up&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;echo -e "Your oggs are all fresh and toasty and ready to enjoy, friend.\nHappy Listening!"&lt;br /&gt;&lt;br /&gt;exit&lt;br /&gt;&lt;br /&gt;else &lt;br /&gt;&lt;br /&gt;echo -e "Oh..okay...Ogg files are an excellent audio file format, though.\nYou can learn more about them at www.vorbis.com\nB'bye now..."&lt;br /&gt;&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;exit&lt;br /&gt;&lt;br /&gt;# This program was written by tony baldwin - tonytraductor@linguasos.org &lt;br /&gt;# This program is free software; you can redistribute it and/or modify &lt;br /&gt;# it under the terms of the GNU General Public License as published by &lt;br /&gt;# the Free Software Foundation; either version 2 of the License, or &lt;br /&gt;# (at your option) any later version.&lt;br /&gt;# This program is distributed in the hope that it will be useful,&lt;br /&gt;# but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;br /&gt;# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the&lt;br /&gt;# GNU General Public License for more details.&lt;br /&gt;# You should have received a copy of the GNU General Public License&lt;br /&gt;# along with this program; if not, write to the Free Software&lt;br /&gt;# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.&lt;br /&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1799631</id>
    <author>
      <name>David McNett (Nugget)</name>
    </author>
    <lj:poster user="nugget"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1799631.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1799631"/>
    <title>Linux Promotional Posters</title>
    <published>2008-09-04T14:06:58Z</published>
    <updated>2008-09-04T14:06:58Z</updated>
    <content type="html">Might be old but I just saw them for the first time yesterday:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.besttechie.net/forums/Linux-Humor-t14545.html"&gt;Linux Promotional Posters&lt;/a&gt;.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1799227</id>
    <author>
      <name>Calliphoridae</name>
    </author>
    <lj:poster user="pkbarbiedoll"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1799227.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1799227"/>
    <title>HTML exe creator</title>
    <published>2008-09-03T03:20:45Z</published>
    <updated>2008-09-03T03:20:45Z</updated>
    <content type="html">Years ago I made a CD menu out of HTML files - I don't remember the app but it took an existing HTML page(or pages) and made that into an executable.   &lt;br /&gt;&lt;br /&gt;Is there a good open source app that does the same thing?  I run Ubuntu.&lt;br /&gt;Thnks!</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1798929</id>
    <author>
      <name>tonytraductor</name>
    </author>
    <lj:poster user="tonytraductor"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1798929.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1798929"/>
    <title>Oggify... converting all your wav and mp3 to ogg</title>
    <published>2008-09-02T19:03:11Z</published>
    <updated>2008-09-03T04:23:11Z</updated>
    <content type="html">I have too many wav and mp3 files, really.&lt;br /&gt;I mean wav files are BIG.&lt;br /&gt;And mp3 files suck, and are a proprietary format.&lt;br /&gt;So, I wanted to convert ALL  of my tunes to &lt;a href="http://www.vorbis.com"&gt;ogg-vorbis&lt;/a&gt; format,&lt;br /&gt;an open source audio file format.&lt;br /&gt;&lt;br /&gt;So, I wrote this:&lt;br /&gt;&lt;a name="cutid1"&gt;&lt;/a&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;# convert mp3 and wav to ogg&lt;br /&gt;# copyright tonytraductor / &lt;a href="http://www.BaldwinSoftware.com"&gt;http://www.BaldwinSoftware.com&lt;/a&gt;&lt;br /&gt;# released under the terms of the Gnu Public License v.2 or later.&lt;br /&gt;# no promises...if it breaks something, call your mom...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;echo "Oggify, at your service."&lt;br /&gt;&lt;br /&gt;# removing spaces in names or&lt;br /&gt;## mp3s&lt;br /&gt;&lt;br /&gt;echo "Removing spaces in names..."&lt;br /&gt;&lt;br /&gt;for i in $(ls -1 *.mp3)&lt;br /&gt;do &lt;br /&gt;rename \  _ *.mp3&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;## and wavs&lt;br /&gt;&lt;br /&gt;for i in $(ls -1 *.wav)&lt;br /&gt;do &lt;br /&gt;rename \  _ *.wav&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;echo "Converting mp3 files to wav..."&lt;br /&gt;&lt;br /&gt;# converting all mp3 files to wav,&lt;br /&gt;#so there will be nothing but wavs&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;for i in $(ls -1 *.mp3)&lt;br /&gt;do&lt;br /&gt;n=$i&lt;br /&gt;mpg123 -w "$n.wav" "$n"&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;# stripping the .mp3 extension from filename.mp3.wav&lt;br /&gt;&lt;br /&gt;for i in $(ls -1 *.wav)&lt;br /&gt;do&lt;br /&gt;rename .mp3. . *.wav&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;# clean up as we go&lt;br /&gt;&lt;br /&gt;rm -f *.mp3&lt;br /&gt;&lt;br /&gt;# and, now, converting those wav files to ogg&lt;br /&gt;&lt;br /&gt;echo "Converting wav to ogg..."&lt;br /&gt;&lt;br /&gt;for i in *.wav&lt;br /&gt;do &lt;br /&gt;oggenc $i&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;# more clean up&lt;br /&gt;&lt;br /&gt;echo "Removing mp3 and wav files..."&lt;br /&gt;&lt;br /&gt;# removing all those big, fat wav files.&lt;br /&gt;&lt;br /&gt;rm -f *.wav&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;echo "Your oggs are all fresh and toasty and ready to enjoy, friend."&lt;br /&gt;echo "Happy listening!"&lt;br /&gt;&lt;br /&gt;exit&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I had written a gui version, too, with zenity, but, bah...&lt;br /&gt;Who needs a gui?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1798861</id>
    <author>
      <email>conan.sh@gmail.com</email>
      <name>Constantine</name>
    </author>
    <lj:poster user="conan_hacker"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1798861.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1798861"/>
    <title>Interactive map of GNU/Linux OS and FOSS</title>
    <published>2008-09-02T00:51:07Z</published>
    <updated>2008-09-02T00:51:07Z</updated>
    <content type="html">&lt;a href="http://www.makelinux.net/system/"&gt;&lt;img src="http://www.makelinux.net/system/FOSS_map_512.png"&gt;&lt;/a&gt;&lt;br /&gt;Comments are welcome</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1798641</id>
    <author>
      <name>Drew</name>
    </author>
    <lj:poster user="drawsmcgraw"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1798641.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1798641"/>
    <title>Wait, what?</title>
    <published>2008-08-31T20:40:07Z</published>
    <updated>2008-08-31T20:40:07Z</updated>
    <content type="html">Has anyone heard about this? When we, Verizon subscribers, visit the site espn360.com we're greeted with the front page and a message: "Congratulations! Your high speed internet service provider, Verizon, carries ESPN360.com."&lt;br /&gt;&lt;br /&gt;I run a quick Google search and, of course, run into the Wikipedia article, quoting:&lt;br /&gt;&lt;i&gt;"ESPN360.com is a broadband network for live sports programming in the United States, Mexico, Brazil and Europe. In the U.S. the network can only be accessed through Internet service providers who have signed up and paid ESPN for the programming. The entire service is free to the individual (the ISP pays for the cost) with few advertisements. There are occasions where ESPN360.com is "all access" and permits all individuals to access the site. These periods are advertised on the ESPN family of networks. (In that way, ESPN360.com is similar to the ESPN cable networks, in which distributors sign carriage deals.) Outside the US the service is available via both subscribing and non-subscribing ISP's with some of the content offered on a subscription basis only."&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;What?&lt;br /&gt;&lt;br /&gt;I'm guessing (because I've not researched it) that, because ESPN is not an ISP, they can do whatever they feel like regarding subscription and availability. But in my educated opinion, this is borderline Net Neutrality issues, isn't it? Am I wrong? Can anyone who wants to sign up for it? If that's not the case, this reeks of foul play.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1798151</id>
    <author>
      <name>tonytraductor</name>
    </author>
    <lj:poster user="tonytraductor"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1798151.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1798151"/>
    <title>automagical archiving of POP/gmail?</title>
    <published>2008-08-31T00:30:55Z</published>
    <updated>2008-08-31T00:30:55Z</updated>
    <content type="html">I've just recently set myself up with gmail, and set it up to pick up mail from a couple of my domains, and set up &lt;br /&gt;thunderbird on my home machine to pick up the gmail via pop, but, use the web interface on my laptop to access mail, and, I'm&lt;br /&gt;kind of thinking at this point that it would simplify my existence if I only used the web interface.&lt;br /&gt;Except one thing.&lt;br /&gt;I want to have my mail archived here, in addition to on the google gmail servers.&lt;br /&gt;Call me what you will...a skeptic, paranoid...I don't know, but I've seen free web services and mail accounts, etc. come and go,&lt;br /&gt;or, stop being free, etc., and, for this and related reasons, I just want to make sure I have all mail backed up in my home/office.&lt;br /&gt;&lt;br /&gt;So, I'm thinking, probably there's a way I can set up procmail or mutt or something, with cron, or something, to regularly download&lt;br /&gt;the mail and archive it here, while only reading it on the gmail web interface.&lt;br /&gt;&lt;br /&gt;Has anyone done this?&lt;br /&gt;I'm sure I'm not crazy to think this can be done, but, in truth, I've never done anything quite like it.&lt;br /&gt;I've only ever used POP or webmail interfaces, and never dealt with retreiving mail via a text-only environment.&lt;br /&gt;Anyone have any tips or know of a good how-to that might be useful?&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;tony</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1798069</id>
    <author>
      <name>David</name>
    </author>
    <lj:poster user="davmoo"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1798069.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1798069"/>
    <title>Reiser File System</title>
    <published>2008-08-30T04:37:53Z</published>
    <updated>2008-08-30T04:37:53Z</updated>
    <content type="html">I'm not going to make jokes in this post, because it really is not a joking matter.  Although I'd be lying if I said I haven't laughed at some of the jokes I've heard on this story.&lt;br /&gt;&lt;br /&gt;But I will seriously ask.  The Namesys website is down and has been for some time now.  And obviously Hans Reiser won't be doing any coding for at least 15 years.&lt;br /&gt;&lt;br /&gt;So has any other group picked up development and/or support of ReiserFS?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1797707</id>
    <author>
      <name>Frenchy</name>
    </author>
    <lj:poster user="brutal_truth"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1797707.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1797707"/>
    <title>Registrars/Hosts?</title>
    <published>2008-08-30T04:33:32Z</published>
    <updated>2008-08-30T04:33:32Z</updated>
    <content type="html">I have been working on a Linux distribution for quite some time, and I have run out of money to pay the URL&amp;nbsp;fee... gibbix.org ----- yeah. Sad, huh? But, I am a college student, so I&amp;nbsp;guess this kind of crap happens. I&amp;nbsp;have just plum run out of money. The system is called Gibbix. It's a BusyBox system with a smattering of other influences. The idea for the system is that it is a bit back to basics. It's meant for seasoned Linux veterans, and it's meant for only those who really want to learn or those who really want to be taken back to some older times. Anyway, I&amp;nbsp;had posted about this system before, but things changed along the way. Now, I&amp;nbsp;have to search for a low cost domain registrar, and if anyone knows of any good and inexpensive hosts... I would love to hear about them! Thx.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1797431</id>
    <author>
      <email>protcron@yahoo.com</email>
      <name>technonick</name>
    </author>
    <lj:poster user="technonick"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1797431.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1797431"/>
    <title>Java IDE</title>
    <published>2008-08-29T16:16:49Z</published>
    <updated>2008-08-29T16:16:49Z</updated>
    <content type="html">I'm taking a CS class that teaches basic Java concept. (Sob,  we don't get to arrays until November and the semester is over in December.) Anyway they use JCreator on Windows,  but in my home/office I am almost exclusive Linux/Ubuntu.  I know that there are a number of Java IDE for Linux,  but ideally I would like something kind of basic.&lt;br /&gt;&lt;br /&gt;Does anyone know of a basic IDE for Java that is simple and easy to use?&lt;br /&gt;&lt;br /&gt;I'm looking for experience here,  I know I could use Google/Synaptic and find one, but I need experience.  &lt;br /&gt;&lt;br /&gt;Thanks in advance.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1797179</id>
    <author>
      <name>Paul klieber</name>
    </author>
    <lj:poster user="paulgix"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1797179.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1797179"/>
    <title>Multi-bootable USB media</title>
    <published>2008-08-28T23:53:09Z</published>
    <updated>2008-08-28T23:53:09Z</updated>
    <content type="html">So I'm wondering if there's a way I can put multiple bootable CD-Images (ie like an Ubuntu LIVE-CD, etc) on a USB stick that I have, and have something like LILO come up on boot asking which image to boot from, anyone know if this is possible, and how to do it?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1797033</id>
    <author>
      <name>Zenten</name>
    </author>
    <lj:poster user="zenten"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1797033.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1797033"/>
    <title>In a move of sheer genius I removed all my kernels</title>
    <published>2008-08-28T00:40:24Z</published>
    <updated>2008-08-28T01:09:30Z</updated>
    <content type="html">So yeah, go ahead and laugh.&lt;br /&gt;&lt;br /&gt;Anyway, I don't want to have to reinstall (I do have a separate /home partition, but my root partition isn't actually big enough for an install), so I'm thinking I just need some sort of kernel back, and then I can go and install it normally.  I'm using Ubuntu btw, if that makes a difference.&lt;br /&gt;&lt;br /&gt;I have an older Ubuntu live CD that I'm using to post right now.  I tried copying over the kernel from there, but I get the following error when I try to manually start it from Grub (by first typing in kernel with various options, then typing in boot).&lt;br /&gt;&lt;br /&gt;VFS: Cannot open root device &lt;whatever it="it" is="is" i="I" type="type" for="for" the="the" root="root" option="option"&gt; or unknown block (0,0)&lt;br /&gt;Please append a correct "root=" boot option&lt;br /&gt;Kernel panic  not synking: VFS: Unable to mount root fs on unknown - block (0,0)&lt;br /&gt;&lt;br /&gt;[edit]Well &lt;b&gt;that's&lt;/b&gt; what chroot does.  Thanks &lt;span class='ljuser' lj:user='simbab' style='white-space: nowrap;'&gt;&lt;a href='http://simbab.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://simbab.livejournal.com/'&gt;&lt;b&gt;simbab&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, you're my hero.[/edit]</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1796822</id>
    <author>
      <name>jimheem</name>
    </author>
    <lj:poster user="jimheem"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1796822.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1796822"/>
    <title>cleaning up?</title>
    <published>2008-08-27T17:30:27Z</published>
    <updated>2008-08-27T17:30:27Z</updated>
    <content type="html">So I've been a sysadmin for many years, dealing with mostly Linux servers, but I've only been using Linux exclusivley as a desktop for about 4.... &lt;br /&gt;&lt;br /&gt;We all know that windows machines tend to bog down and crap out, it's only a matter of time. And most of us, being computer folk, know how to clean it up and get it running nice and shiny-like again. Myself included. What I've never had to deal with (not having to deal with user applications being installed in the server world) is a Linux machine starting to act this way. Now, I'll give it that I've had this system running for 4 years, much longer than a Windows machine would last given heavy day to day use with games, web, email etc. - But, now it's starting to bog down, and I don't know where to begin cleaning it up. I have plenty of disk space, my RAM is sufficient.. &lt;br /&gt;&lt;br /&gt;Any ideas where to start cleaning up and getting things running smoothly again?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1796575</id>
    <author>
      <name>tonytraductor</name>
    </author>
    <lj:poster user="tonytraductor"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1796575.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1796575"/>
    <title>Gkrellm mailcheck and gmail?  other biffity options?</title>
    <published>2008-08-27T01:44:38Z</published>
    <updated>2008-08-27T01:56:32Z</updated>
    <content type="html">Why won't the gkrellm2 mailcheck thingy inform me of new mails on my gmail account?&lt;br /&gt;&lt;br /&gt;And, yes, before you ask the obvious, I have enabled POP mail in gmail, and am successfully&lt;br /&gt;downloading and reading messages in Thunderbird.&lt;br /&gt;&lt;br /&gt;I passed the same parameters to gkrellm that I did to Thunderbird.&lt;br /&gt;POP server: pop.gmail.com&lt;br /&gt;use ssl, port 995&lt;br /&gt;username&lt;br /&gt;password&lt;br /&gt;blah, blah...&lt;br /&gt;But no flying tux, no flipping envelope...no number of new messages...no joy...&lt;br /&gt;&lt;br /&gt;Or, if that's just hopeless, has anyone another suggestion?&lt;br /&gt;I have xbiff on here, but can't quite figure out how to set it up.&lt;br /&gt;xbiff -h &lt;br /&gt;is rather vague.&lt;br /&gt;I figure I could load that in my slit &lt;a name="cutid1"&gt;&lt;/a&gt; {&lt;br /&gt;     proc digression {} {&lt;br /&gt;     if [$mindstatus eq {wandering in the gutter}]; then&lt;br /&gt;     {&lt;br /&gt;          puts "&lt;i&gt;...uh...hehe...could I load my app in your slit, baby...huh, huh...&lt;/i&gt;"&lt;br /&gt;     }&lt;br /&gt;}, right there with gkrellm, and stuff.&lt;br /&gt;Or, is there another good mail biff thingy for use with fluxbox?&lt;br /&gt;I'm using &lt;a href="http://www.linguasos.org"&gt;LinguasOS&lt;/a&gt;, &lt;br /&gt;a remaster of &lt;a href="http://pcfluxboxos.wikidot.com/"&gt;PCFluxboxOS&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Gkrellm was checking my mail before, from several domains...but, now I am using gmail to collect from several addresses on said several domains I own, so that I can have it all in one place, available online, and load it to various machines (laptop, main office box, etc.) via pop, etc.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;/tony</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1796319</id>
    <author>
      <email>heldc@livejournal.com</email>
      <name>Hel</name>
    </author>
    <lj:poster user="heldc"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1796319.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1796319"/>
    <title>Ventrilo or similar?</title>
    <published>2008-08-23T13:53:48Z</published>
    <updated>2008-08-23T13:53:48Z</updated>
    <content type="html">So, my boyfriend is a gamer. My laptop died, so he's letting me take his laptop to work (I work 16 hour overnight shifts, it's hell without a laptop). He's going to be using my kubuntu 8.04 desktop while I'm at work. He plays World of Warcraft, and his guild regularly runs a raid the night I'm at work. I don't want him letting me borrow his laptop to stop him from running his raid, so I'm trying to get WoW and Ventrilo set up. I feel pretty good about the WoW setup, but wanted to know if there are any tips for Ventrilo. Wine App DB lists it as silver or gold, depending which listing I look at.&lt;br /&gt;I'd also be totally fine with something like Ventrilo, but all his guildmates are on Ventrilo so it'd have to let him connect with them. I have no idea how any of this is set up, cos I don't game.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1795974</id>
    <author>
      <name>tonytraductor</name>
    </author>
    <lj:poster user="tonytraductor"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1795974.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1795974"/>
    <title>TclScreenUp</title>
    <published>2008-08-23T12:16:19Z</published>
    <updated>2008-08-23T16:15:17Z</updated>
    <content type="html">&lt;a href="http://www.linguasos.org/bsoft/"&gt;&lt;img src="http://www.linguasos.org/bsoft/tickles082308.jpg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I thought I'd share this with you.&lt;br /&gt;I wrote a little tcl-ish utility that grabs a screenshot, allowing you to set a delay&lt;br /&gt;prior to grabbing the shot (perhaps to minimize the window of the app, etc.), &lt;br /&gt;allows you to set the dimensions of the shot, shows a preview, offers the option&lt;br /&gt;to edit in GIMP, then, uploads it to your web server, then, displays the url, and offers you the ability to copy/paste&lt;br /&gt;the url (for quick posting to your LJ!), or open it immediately in your preferred browser&lt;br /&gt;for a check/preview thereof.&lt;br /&gt;It allows you to save profiles with your server information, preferred browser, etc.&lt;br /&gt;You can have multiple profiles, since you choose which to load (useful if you use&lt;br /&gt;more than one webhost, such as I do, etc.)&lt;br /&gt;&lt;br /&gt;Handy for grabbing quick screenshots to post here or elsewhere on LJ, or&lt;br /&gt;to your MySpace, or where ever you like.&lt;br /&gt;&lt;br /&gt;Oh, it uses ImageMagick's import to grab shots (this is Linux only), and requires&lt;br /&gt;Tcl 8.5, tcl ftp, and Img.&lt;br /&gt;(Instructions for acquiring all of the above are in the readme).&lt;br /&gt;I would have used scp for moving the images, but I only have ftp access to several&lt;br /&gt;of my webhosts, since they are on shared servers.&lt;br /&gt;&lt;br /&gt;It is GPL-ed, of course.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wiki.tcl.tk/21462"&gt;More infor here&lt;/a&gt;.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1795590</id>
    <author>
      <name>Paul klieber</name>
    </author>
    <lj:poster user="paulgix"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1795590.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1795590"/>
    <title>Linux music making tools</title>
    <published>2008-08-18T04:42:46Z</published>
    <updated>2008-08-18T04:42:46Z</updated>
    <content type="html">so I'm starting a goth/punk/industrial/whatever project, and I'm looking for computer tools to help me out. I have quite a large of programming knowledge, so I can probably use CSound and Supercollider and Chuck, but if you know any other sound programming tools that are free and work on linux, please let me know, basically I'm making this post to try to find as many open source linux-runnable sound/music software as I can, preferabally as much of it as I can that can be used in a live performing atmosphere. Stuff that can take in audio and MIDI signals, and I can write stuff to process it on the fly. Hardware isn't that important as I have a pretty powerful computer and a good (read: not gaming) soundcard lying around somewhere that I'm going to install any day now. Thanks for any help you can provide.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1795380</id>
    <author>
      <name>ベン</name>
    </author>
    <lj:poster user="eruhu"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1795380.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1795380"/>
    <title>linux @ 2008-08-17T21:24:00</title>
    <published>2008-08-18T02:24:23Z</published>
    <updated>2008-08-18T02:24:23Z</updated>
    <content type="html">Does anybody know of a Windows program that mimics the behaviour of OSX and most (all?) Linux systems when a disc/drive is inserted into the system?  I'd like an icon to show up on my desktop when a DVD or a hard drive or anything is put into my computer.  For XP, specifically.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1795104</id>
    <author>
      <name>tyler is epic</name>
    </author>
    <lj:poster user="downstraightup_"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1795104.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1795104"/>
    <title>linux @ 2008-08-16T21:47:00</title>
    <published>2008-08-17T01:47:59Z</published>
    <updated>2008-08-17T01:47:59Z</updated>
    <content type="html">a while back i posted &lt;a href="http://community.livejournal.com/linuxnewbies/234781.html"&gt;this&lt;/a&gt; &lt;br /&gt;and i come back to you with the same problem. &lt;br /&gt;&lt;span class='ljuser' lj:user='jedi_diplomat' style='white-space: nowrap;'&gt;&lt;a href='http://jedi-diplomat.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://jedi-diplomat.livejournal.com/'&gt;&lt;b&gt;jedi_diplomat&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; suggested "It almost sounds like X didn't start correctly. That's happened to me once or twice. Um...I fix it by rebooting, or hitting Ctrl+Alt+F1 and then Ctrl+ALT=F7, which sometimes works when X freezes." but that didn't work. &lt;br /&gt;&lt;br /&gt;i've gotten my applications and applets on my taskbar running again, but the actual windows aren't showing up. &lt;br /&gt;&lt;a name="cutid1"&gt;&lt;/a&gt; &lt;br /&gt;&lt;img src="http://i38.tinypic.com/2r5er91.jpg"&gt;&lt;br /&gt;the thing on top of my taskbar is the external task bar and my windows will show up there, but not on the bottom one. &lt;br /&gt;the thing in the corner is the kasbar. &lt;br /&gt;&lt;br /&gt;external task bar: &lt;br /&gt;&lt;img src="http://i33.tinypic.com/2d0x6x5.jpg"&gt;&lt;br /&gt;kasbar: &lt;br /&gt;&lt;img src="http://i34.tinypic.com/2wn5hyx.jpg"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;so all my windows appear there, but not on my real task bar and i can't figure out why. i had my dad take a look at it and he can't figure it out. i don't really know if it's something in konsole or what.&lt;br /&gt; &lt;br /&gt;ideas? help? &lt;br /&gt;keep in mind, i'm semi retarded and i ended up screwing up my kubuntu for awhile by trying to manually update it through konsole. so very detailed (easy) instructions would be so so lovely.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1794962</id>
    <author>
      <name>Calliphoridae</name>
    </author>
    <lj:poster user="pkbarbiedoll"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1794962.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1794962"/>
    <title>Image map software</title>
    <published>2008-08-16T11:18:52Z</published>
    <updated>2008-08-16T11:18:52Z</updated>
    <content type="html">I haven't been able to find a linux imagemap program - does one even exist?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1794771</id>
    <author>
      <name>Frenchy</name>
    </author>
    <lj:poster user="brutal_truth"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1794771.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1794771"/>
    <title>New Laptop</title>
    <published>2008-08-15T16:33:57Z</published>
    <updated>2008-08-15T16:33:57Z</updated>
    <content type="html">I am having a problem finding a Unix-like OS for my new laptop (Compaq Presario CQ50). The only Linux distribution that I have seen that came close to working was Pardus. With Pardus I had sound and wireless networking, but I couldn't get any video driver to work other than vesa. I have yet to try Solaris. PCBSD would go into the installer if I used x86, but not AMD64 (common problem with all unices). I would prefer to use a 64bit OS that can support a dual core arch... but if I must use 32bit that's fine. I really just hate Windows Vista, and Compaq/HP has not made XP drivers available. Further more, I love GNU/Linux and because Linux has not worked on this laptop, I have begun looking into other Unix systems (mainly BSD and Solaris).</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1794434</id>
    <author>
      <name>jimheem</name>
    </author>
    <lj:poster user="jimheem"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1794434.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1794434"/>
    <title>if external drive is not mounted?</title>
    <published>2008-08-13T20:57:49Z</published>
    <updated>2008-08-13T20:57:49Z</updated>
    <content type="html">So... Is there a way to tell the file system not to write to a mount point if the device is not mounted?&lt;br /&gt;&lt;br /&gt;lets say I have an external device mounted at /mnt/ext-disk&lt;br /&gt;&lt;br /&gt;a script is set to write some backups there&lt;br /&gt;&lt;br /&gt;if the disk is not mounted, the files get written to the root filesystem, which of course, in my case, fills up the root filesystem causing all kinds of havoc.&lt;br /&gt;&lt;br /&gt;now I realize I could add some checking to my script to make sure the disk is mounted, but I wonder if there is a better way?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1794137</id>
    <author>
      <name>Frenchy</name>
    </author>
    <lj:poster user="brutal_truth"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1794137.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1794137"/>
    <title>BSOD Beijing</title>
    <published>2008-08-12T16:35:37Z</published>
    <updated>2008-08-13T05:02:18Z</updated>
    <content type="html">So apparently, on the olympic stadium roof in Beijing moving images were being displayed. This would have an awesome effect as one can imagine. You could display blue skies, or starry skies, or ocean scenes, or Blue Screens of Death. Apparently the latter is what was chosen.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i164.photobucket.com/albums/u37/fistfullofroses/bsodchinaom0.jpg" alt="" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i164.photobucket.com/albums/u37/fistfullofroses/bsod1.jpg" alt="" width="400" height="400" /&gt;&lt;br /&gt;&lt;br /&gt;This is yet one more reason to use GNU/Linux systems instead of Win32 or Win64. Apparently, Bill Gates attended the ceremony... I wonder what he thought?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1793918</id>
    <author>
      <name>Drew</name>
    </author>
    <lj:poster user="drawsmcgraw"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1793918.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1793918"/>
    <title>gvfsd-cdda in Ubuntu Hardy</title>
    <published>2008-08-10T13:39:26Z</published>
    <updated>2008-08-10T13:39:26Z</updated>
    <content type="html">Assuming this is a deamon (and it's not terribly critical), where do I go to kill this thing and make sure it never starts again? I'm having the same issue as the guys in &lt;a href="http://ubuntu-virginia.ubuntuforums.org/showthread.php?t=839853"&gt;this thread on UbuntuForums&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;Anyone know it's purpose?&lt;br /&gt;&lt;br /&gt;I think this thing is why abcde throws an access error and why K3B asks me to kill it every time I want to rip a CD.&lt;br /&gt;&lt;br /&gt;Many thanks in advance.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:linux:1793666</id>
    <author>
      <name>tonytraductor</name>
    </author>
    <lj:poster user="tonytraductor"/>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/linux/1793666.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/linux/data/atom/?itemid=1793666"/>
    <title>xlock or lock screen question</title>
    <published>2008-08-09T18:16:37Z</published>
    <updated>2008-08-09T18:16:37Z</updated>
    <content type="html">I'd like to be able to lock the screen on my laptop, but don't want to download xcreensaver with all of the screensavers (trying to save space on the hdd, since it's only 6gb, and at the moment only has c. 2.8gb free).&lt;br /&gt;Is there a way to lock the screen other than xscreensaver-command lock, in fluxbox (no gnome or kde, thanks), or,&lt;br /&gt;to apt-get xscreensaver without all the screen savers?&lt;br /&gt;This is on &lt;a href="http://www.linguasos.org"&gt;Linguas OS&lt;/a&gt;, based on PCLinuxOS.&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;tony</content>
  </entry>
</feed>
