animations.
I like this better than gnome's slab. Looks nice. mmmmmmm tabs
posted 21:35 [/computers/linux/foss/kde]
permanent link
Discuss: 0 comments
Is dapper to to much like debian sid?
It's almost a silly question I guess, since dapper is based on sid, but I am begginning to think that maybe a sarge install will suit my needs better. Dapper has been one headache after another. The latest xserver-xorg-core upgrade may be the straw that broke the camel's back. Honestly, the previous 3 versions were better than this one. I need something more stable on this laptop. It's fine for the computers I don't use as much as this one though. Maybe I am being a little harsh, it' not been that bad, mainly the synaptics touchpad, and now this. For the most part it's been alright--but not great. Now that I am doing this podcast though, I need something that just works all the time. I don't have the time to be playing around with trhying to fix things. I may end up changing my mind, but it looks like I am going to have to find the time to backup some stuff and do a debain stable install on this laptop.
posted 23:26 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
WORD OF CAUTION
Dapper upgrade issued tonight xserver-xorg-core 1:1.0.2-0ubuntu10.3 will break your xserver. Downgrade with sudo apt-get install xserver-xorg-core=1:1.0.2-0ubuntu10 if you were unfortunate enought to have upgraded to this latest version.
posted 22:54 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
latest (0.3.0-1) pcmanfm for ubuntu
Now out of beta pcmanfm file manager is an extremly fast and lightweight file manager which features tabbed browsing and user-friendly interface. Latest package for ubuntu is here: pcmanfm_0.3.0-1_i386.deb.Link http://lottalinuxlinks.com/pcmanfm/ to download page is also on the right hand side of this page
posted 00:12 [/computers/linux/foss/pcmanfm]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 18 (corrected) shownotes
Topics include:
Tombot, tuxcards, et al., music on console, killing process, nohup, screen, chkrootkit, moc, and more.
Links:
lottalinuxlinks.com linux user podcast 18
lottalinuxlinks.com linux user podcast 18 ogg vorbis format
lottalinuxlinks the web blog
emelfm2-0.1.8
music on console
chkrootkit
posit shell script
tomboy
tuxcards
xpad
dockapps
remember the milk
elive
amanda backup
funniest joke in the world
Star Trek inspirational wallpapers
posted 00:09 [/podcast/shownotes]
permanent link
Discuss: 0 comments
Correction for podcast 18
I mis-spoke when describing how to detach and later reattach to a screen session. In podcast 18 I said that the command to reattach to a named detached screen session was:
screen -a name_of_detached_session
This was not correct, the command should have been:
screen -x name_of_detached_session
Here is an example of how to do it (assumming a session name of neo):
login to remote computer then issue the command:
screen -S neo
issue some command that will take a really long time to run:
wget --quiet url_for_a_file_that_will_take_a_long_time_to_download
next hit CTRL-a d (that is hold down the control key while depressing the a key, release then press the d key) this will detach your screen session named neo.
Log out of the remote shell
Log back in later and issue the command:
screen -x neo and you will be logged back in (reattached) to the shell where you issued the wget command from earlier.
posted 22:27 [/podcast/shownotes]
permanent link
Discuss: 0 comments
HAPPY BIRTHDAY DEBIAN!
Debian is 13 years old today!. Now I feel old. Debian was less than a year old when I first started using linux.
posted 00:05 [/computers/linux/distros/debian]
permanent link
Discuss: 0 comments
Convert a dos file foramtted text file to a unix file formatted text file
Step 1
vim dosfile.txt
Step 2
:set ff=unix
Step 3
:qw
posted 22:41 [/podcast/shownotes]
permanent link
Discuss: 0 comments
Create a time stamped text file in vim
vim `date +%s`.txt
Easy as pie.
posted 22:39 [/podcast/shownotes]
permanent link
Discuss: 0 comments
my simple backup script revisited
This is just a simple example of how to easily backup crucial directories from a webserver to two different hard drives on a remote backup computer
Assumptions made in this example: 2424 is the alternate port number, and public key has already generated and exchanged with remote computer. Substitute username with your username, substitute backup_computer_name with the name of the remote computer you are backing up to, and substitute /stuff/backup/ with the directory path on the remote computer where you will be storing the backups. Substitute /bigbox/backup/ with the directory path on the second hard drive on the remote computer where you will be copying the tarball that was created on the first hard drive.
#!/bin/bash
# example backup script
tar zcf - /etc/apache/ | ssh -p2424 backup_computer_name "cd /stuff/backup;cat > apache.tgz;cp apache.tgz /bigbox/backup/apache.tgz";
tar zcf - /home/username/bin/ | ssh -p2424 backup_computer_name "cd /stuff/backup;cat > home_username_bin.tgz;cp home_username_bin.tgz /bigbox/backup/home_username_bin.tgz";
tar zcf - /home/username/download/ | ssh -p2424 bakup_computer_name "cd /stuff/backup;cat > home_username_download.tgz;cp home_username_download.tgz /bigbox/backup/home_username_download.tgz"
tar zcf - /var/www/ | ssh -p2424 backup_computer_name "cd /stuff/backup;cat > www.tgz;cp www.tgz /bigbox/backup/www.tgz"
# exit cleanly
exit 0
This script is best run from a cron job as root.
posted 22:38 [/podcast/shownotes]
permanent link
Discuss: 0 comments
200 linux tips added to tip database
I just added 200 more tips for a total of 750 to the linux tips database
750 linux tips
posted 22:25 []
permanent link
Discuss: 0 comments
Next podcast (18) within 48 hours or less
I am going to try my dead level best to post the next podcast late tomorrow night (08/14/06). It very well could be early on 08/15 though..
posted 23:01 [/podcast]
permanent link
Discuss: 0 comments
Latest emelfm2 (0.1.8) for ubuntu
Here it is emelfm2_0.1.8-1_i386.deb for ubuntu. Link to download page is on the right side of this page.
posted 21:15 [/computers/linux/foss/emelfm2]
permanent link
Discuss: 0 comments
Touchpad under ubuntu revisited
After weeks of using a wireless usb mouse, and nearly forgetting about the existance of the touchpad with a mind of it's own, I had an opportunuty to use the laptop without the wireless mouse. I had all but forgotten the list of tweaks, and options that I had applied in trying to resolve this problem, but the last thing I tried seems to have worked.
I put the follwoing in my /etc/X11/xorg.conf file under the Input Device section, in the touchpad section:
Option "TapButton0" "0"
Option "TapButton1" "0"
Option "TapButton2" "0"
I stumbled apon this tip after listening to an episode of Tht Jak Attack Podcast, where Kelly Penguin Girl found reslotion to her touchpad problem in ubuntu.
Like I said, I had almost forgotten that I had even made these changes to my xorg.conf file, until just now, when I was forced to use the touchpad for the first time in weeks. It's still a little early to tell, but it seems to work a whole lot better!
posted 22:26 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
New url, sorta...
I finally got around to fixing it so that when you visit this blog, you don't have to type in funny url's ending in /cgi-bin/bloasom.cgi. Now all you have to do is type http://lottalinuxlinks.com/blog
If you are a subscriber to my blog feed, there is no reason to change the feed from the old url, http://lottalinuxlinks.com/cgi-bin/blosxom.cgi/index.rss (it will still work). But, if you want to, or if you are a new subscriber to my BLOG feed, here is a much easier url to remember:
http://lottalinuxlinks.com/blog/index.rss
Please, let me know if something isn't working right.
posted 21:43 []
permanent link
Discuss: 0 comments
Ogg Vorbis Feed
Starting with episode 17, I have an ogg vobis format version of the podcast.
Subscribe to this url for the ogg feed http://lottalinuxlinks.com/podcast/ogg.xml
Ogg is still new to me, it may take me a little while to get it just right.
posted 21:32 [/podcast]
permanent link
Discuss: 0 comments
latest (0.3.0-beta3) pcmanfm for ubuntu
Now in beta 3 pcmanfm file manager is an extreamly fast and lightweight file manager which features tabbed browsing and user-friendly interface. Latest package for ubuntu is here: pcmanfm_0.3.0-beta3_i386.deb.Link http://lottalinuxlinks.com/pcmanfm/ to download page is also on the right hand side of this page
posted 23:32 [/computers/linux/foss/pcmanfm]
permanent link
Discuss: 0 comments
More code (wget example this time) referred to in podcast 17
username to be substituted with your username
#!/bin/bash
cd /home/username/Newspaper/;
wget -r -nc -nd -A pdf -R html -I content/print/front_pdf -X content/print/multimedia,content/print/ni*content/print/spor*,content/print/pol*,story* http://www.newsobserver.com;
rm ./robots.txt;
mv ./1-A*.pdf nofp.pdf;
kpdf ./nofp.pdf
exit 0
This can be run from a cron job to get the front page pdf file http://www.newsobserver.com/content/print/front_pdf/1-A-Tue-August-1-06.pdf where 1-A-Tue-August-1-06.pdf changes name daily.
posted 15:34 [/podcast/shownotes]
permanent link
Discuss: 0 comments
Code referred to in podcast 17
This is just a simple example of how to easily backup crucial directories from a webserver to a remote backup computer
Assumptions made in this example: 2424 is the alternate port number, and public key has already generated and exchanged with remote computer. Substitute username with your username, substitute backup_computer_name with the name of the remote computer you are backing up to, and substitute /stuff/backup/ with the directory path on the remote computer where you will be storing the backups.
#!/bin/bash
# example backup script
tar zcf - /etc/apache/ | ssh -p2424 backup_computer_name "cd /stuff/backup;cat > apache.tgz";
tar zcf - /home/username/bin/ | ssh -p2424 backup_computer_name "cd /stuff/backup;cat > home_username_bin.tgz";
tar zcf - /home/username/download/ | ssh -p2424 bakup_computer_name "cd /stuff/backup;cat > home_username_download.tgz"
tar zcf - /var/www/ | ssh -p2424 backup_computer_name "cd /stuff/backup;cat > www.tgz"
# exit cleanly
exit 0
This script is best run from a cron job as root.
posted 15:24 [/podcast/shownotes]
permanent link
Discuss: 0 comments
KDE 3.5.4 for ubuntu
add this to your /etc/apt/sources.list:
#latest kde
deb http://kubuntu.org/packages/kde-354 dapper main
posted 01:54 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 17 shownotes
Topics include:
Network backup one liners scp, tar, and rsync over ssh; rootkit hunter, amarok, tunapie, new release news (gnome, kde, opera, quake4, pcmanfm) and listener email too. How to print man pages
Links:
lottalinuxlinks.com linux user podcast 17
lottalinuxlinks.com linux user podcast 17 ogg vorbis format
pcmanfm tabbed file manager
rootkit hunter
bashpodder
make kde look like osx
suse e17 howto
audio and video stream browser and recorder
funny 500 mile email story
wireless rookit vunerablity
posted 23:37 [/podcast/shownotes]
permanent link
Discuss: 0 comments
ogg feed coming soon (hopefully)
I should have done this sooner, but I am REALLY gonna try to have all future podcast to be available in both ogg AND mp3 formats. The goal will be to do this going forward with podcast 17, I may go back and make ogg formats available for 1 through 16 as well though.
posted 00:26 [/podcast]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 16 shownotes
Topics include:
sshfs, samba, gnump3, vlc, mpc, mpd, totem, amarok, banshee, totem, quod libet, beep-media-player and more. A very nice minimalistic tag editor, ex falso. New version of democracy player for linux released, and Fluxbox tips too. Updating to latest XFCE 4.4 beta 2.
Links:
lottalinuxlinks.com linux user podcast 16
updating ubuntu dapper's xfce to latest beta
wmdrawer
samba
tangerine daap server
conky
gnump3d
sshfs
google code hosting
linux brit blog
pimp my mpd
music player daemon
gkrellkam
new version of democracy player for linux
posted 21:16 [/podcast/shownotes]
permanent link
Discuss: 0 comments
latest (0.3.0-beta) pcmanfm for ubuntu
pcmanfm file manager is an extremly fast and lightweight file manager which features tabbed browsing and user-friendly interface. Latest package for ubuntu is here: pcmanfm_0.3.0-beta-1_i386.deb.Link http://lottalinuxlinks.com/pcmanfm/ to download page is on the right hand side of this page
posted 23:22 [/computers/linux/foss/pcmanfm]
permanent link
Discuss: 0 comments
Upgrading Ubuntu Dapper Xfce 4.4 beta 1 to Xfce 4.4 beta 2
Fisrt uninstall dapper's xfce:
sudo apt-get remove libthunar-vfs-1 libxfce4mcs-client3 libxfce4mcs-manager3 libxfce4util4 libxfcegui4-4 mousepad orage thunar thunar-media-tags-plugin xarchiver xfburn xfce4-appfinder xfce4-battery-plugin xfce4-clipman-plugin xfce4-cpugraph-plugin xfce4-fsguard-plugin xfce4-icon-theme xfce4-mailwatch-plugin xfce4-mcs-manager xfce4-mcs-plugins xfce4-mixer xfce4-mixer-alsa xfce4-mount-plugin xfce4-netload-plugin xfce4-panel xfce4-quicklauncher-plugin xfce4-screenshooter-plugin xfce4-session xfce4-systemload-plugin xfce4-taskmanager xfce4-terminal xfce4-utils xfce4-verve-plugin xfce4-weather-plugin xfce4-xkb-plugin xfdesktop4 xfmedia xfprint4 xfwm4 xfwm4-themes xubuntu-artwork-usplash xubuntu-default-settings xubuntu-desktop xubuntu-docs
Second, just to be on the safe side do the following:
sudo apt-get install libgtk2.0-dev libxml2-dev libvte-dev libxpm-dev libdbh1.0-dev
Then download the installer from xfce. Do a chmod a+x on it, then install (be sure not to check the alsa option or the build will fail.
For the record beta 2 is much better than the default xubuntu beta 1.
posted 10:20 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
Podcast update
Podcast 16 will (hopefully) be done this week.
posted 22:32 [/podcast]
permanent link
Discuss: 0 comments
Another laptop screenshot (feat. latest fluxbox)
Here is another screenshot of ubuntu dapper on my laptop, running the latest and greatest fluxbox. in this shot you can see see the slit with the gkrellkam plugin and the fbpager running. You can also see the easily customized menu. The latest fluxbox (ubuntu package downloadable at link on left) has a cool feature that allows you to automatically create fully populated menus in addition to other nice things like selecting backgrounds from the menu.
posted 22:28 [/personal]
permanent link
Discuss: 0 comments
Laptop screenshot (feat. latest fluxbox)
Here is a screenshot of ubuntu dapper on my laptop, running the latest and greatest fluxbox. in this shot you can see conky running in the bottom left hand corner, as well as a torn off fluxbox menu showing menu items linked to a script to mount an sshfs music directory and to mpc commands to navigate my music being played with the mpd.
posted 22:21 [/personal]
permanent link
Discuss: 0 comments
Debain Etch on Sparc, keeping my fingers crossed
From the Debian Etch release update issued today:
"For sparc, there used to be kernel failures on the buildds. Now an appropriate
patch exists, but we have yet to figure out how it is or will be
included into Debian. Though that is not final, we are confident enough
to also set back sparc to an release architecture (especially as the
bugs don't negatively affect any other architecture - the worst that can
happen is that we don't have a proper kernel on sparc and need to review
this decision again)."
This looks good! There is an ubuntu sparc distro now, but I'd rather run debian on my sparc server.
posted 20:18 [/computers/linux/distros/debian]
permanent link
Discuss: 0 comments
Progress
I made some significant progress on playing my samba shared music just now, and with an app I have never cared that much for too: totem.
As far as I can tell totem is the only multimedia app (granted I haven't tried vlc yet) in dapper that can play and save a playlist from s samba share without having to mount it first.
All I had to do was click on the movie menu, select open location then type smb://server_name/share_name
Minutes later (I have a lot of music) totem was playing the music!
Equally impressive is that I could click on the save icon and save and reopen the playlist.
It even has full screen visualizations that rival the ones in iTunes.
I am a happy camper (for the time being).
posted 00:12 [/computers/linux]
permanent link
Discuss: 0 comments
Links I left out of shownotes for podcast 15
Tango icons
My /etc/apt/sources. list additions:
#latest kde
deb http://kubuntu.org/packages/kde-353 dapper main
#latest amarok
deb http://kubuntu.org/packages/amarok-latest dapper main
#latest automatix
deb http://www.beerorkid.com/automatix/apt dapper main
posted 16:33 [/podcast/shownotes]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 15 shownotes
Topics include:
30 days with dapper, synaptics bug, udev fail to mount
root file system bug, latest amarok, kde, automatix,
emelfm2, pcmanfm(tabbed file manger), latest fluxbox too.
kde, gnome, fvwm, fluxbox. google earth and picassa too.
Links:
lottalinuxlinks.com linux user podcast 15
fvwm forums
pcmanfm home page
nuevat3k-glacier fluxbox theme
mt-daap howto
mt-daap article
fluxbox
emelfm2 two pane file manager deb package for ubuntu
pcmanfm tabbed file manager deb package for ubuntu
latest fluxbox deb package for ubuntu
posted 08:01 [/podcast/shownotes]
permanent link
Discuss: 0 comments
I am not dead.
I will do a podcast this week, I will do a podcast this week, I will do a podcast this week. I have been busy.
posted 21:21 [/podcast]
permanent link
Discuss: 0 comments
Latest and greatest fluxbox for ubuntu
fluxbox rocks, but the version that comes with ubuntu is behind the times. Download the latest ubuntu deb package here fluxbox-1.0rc2_1.0rc2-1_i386.deb. Link to download page http://lottalinuxlinks.com/fluxbox/ is on the right.
posted 21:20 [/computers/linux/foss/fluxbox]
permanent link
Discuss: 0 comments
pcmanfm for ubuntu
pcmanfm file manager is an extremly fast and lightweight file manager which features tabbed browsing and user-friendly interface. Latest package for ubuntu is here: pcmanfm-0.2.4_0.2.4-1_i386.deb.
Link http://lottalinuxlinks.com/pcmanfm/ to download page is on the right hand side of this page
posted 21:13 [/computers/linux/foss/pcmanfm]
permanent link
Discuss: 0 comments
Latest emelfm2 for ubuntu
Here it is emelfm2_0.1.7-1_i386.deb for ubunutu. Link to download page is on the right side of this page.
posted 21:08 [/computers/linux/foss/emelfm2]
permanent link
Discuss: 0 comments
Sound quality
In my rush to get the last podcast done, the sound quality was a lot worse than it should have been. I have done some experimenting, and the next pod/car cast will have better sound quality for sure. I know what I did wrong, and the same mistake will not be repeated.
posted 21:08 [/podcast]
permanent link
Discuss: 0 comments
dapper drake dazed and confused
Ubuntu's dapper drake (6.06) on my HP Pavillion dv5040us is driving me crazy!
The touchpad cursor has a mind of it's own! This wa NOT a problem with breezy (5.10). Since upgrading though, I have nothing but problems. It's a little better since disabling tap to click in xorg.conf, but it's still a problem. For the most part, I can use the laptop, but I still have to more than occasionally "reset" the touchpad's ability to select and click, by dropping out to a virtual console (ctrl-F1) and dropping back into to X-windows (ctrl-F7). This is WAY more than just a little irratating! I have tired everything short of a new kernel or a clean install (this was an upgrade from breezy). I have tried boot options: acoi=off, noapic, nolapic, pci=noacpi, pci=routeirq; I have tried module optons pcmouse=proto.bare, and pcmouse=proto.imps; I have tried 3 different synaptics drivers (including one outside the repositories); I have tried many different synaptics xorg.conf options as well. /var/log/messages keeps telling me stuff like:
laptop kernel: [4329915.038000] psmouse.c: TouchPad at isa0060/serio4/input0 lost sync at byte 1
and
laptop kernel: [4330728.139000] psmouse.c: TouchPad at isa0060/serio4/input0 - driver resynched
Those messages happen (almost always) at the same time I have to "reset" the cursor by dropping in and out of x-windows.
The most progress I have made is with the kernel boot option acpi=off, but this causes my wireless to stop working, and gives a message saying something about bcm43xx cannot registerirq
If anyone out there has the solution or knows someting I can try, please let me know. If there is a way to make this work, and still have wireless, life would be great. As it is now, life stinks!
posted 20:51 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 14 shownotes
lottalinuxlinks.com linux user podcast 14
;
dapper upgrades
ubuntu dapper guide
easyubuntu
automatix
picasa
gmail for domains
damn small linux embedded
ubuntu
beep media player
posted 01:08 [/podcast/shownotes]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 13 shownotes
lottalinuxlinks.com linux user podcast 13
elive: debian-based, live linux distro featuring enlightenment E16, and E17
kororaa: gentoo-based, live linux distro, with all the glx bells and whistles
Slax and Sun combine with Java for a unique 3D desktop experience
peer to peer voice service, skypeout for free
fish: Allows you to access another computer's files using SSH and KDE's konqueror.
posted 13:03 [/podcast/shownotes]
permanent link
Discuss: 0 comments
Podcast update
I am gonna start work on podcast 13 tonight, meaning right now in a minute (as soon as the wife goes to bed). It should be finished and posted before Monday.
If you are reading this, and haven't taken the time to sign my frappr map, then please do so now. Thanks!
posted 22:41 [/podcast]
permanent link
Discuss: 0 comments
Call for audio comments
If there are any readers of this blog who listen to my podcast, please send me some audio comments for my podcast. send them to linux.podcast@gmail.com
Comments on how you use linux, what distro you use, cool or neat things you do with linux, cool open source apps you use, or linux tips or tricks you can't live without, anything linux is welcome. Keep them clean and less than 3 minutes, and I will play them in the next podcast. Speaking of next podcast, it is coming - hopefully soon too. Real life/work is busy lately. I have been thinking about and planning the next podcast since the last one was posted. I hope to start/finish the podcast in the next 3 or 4 days. Thanks in advance!
posted 20:02 [/podcast]
permanent link
Discuss: 0 comments
Ubuntu Center Alpha 1 Released - Web Based Ubuntu Control
I don't know if I would use something like this or not; but this looks pretty cool:
Ubuntu Center is a web based interface for accessing all kinds of information that's being stored on your computer running Ubuntu Breezy, Kubuntu, XUbuntu, or even nUbuntu box. Ubuntu Center accomplishes all of this by integrating PHP software licensed under the GPL license in one giant package suitable for use on a Ubuntu computer. This release adds tons of new features and bug fixes and is suitable for everyday use. Read the rest
posted 23:40 [/computers/linux/distros/ubuntu]
permanent link
Discuss: 0 comments
Free Comic Book Day
On Saturday, May 6 - the comic book industry once again celebrates Free Comic Book Day!
The annual event is the perfect opportunity to introduce your friends and family to the many worlds of wonder available at your local comic book store. From super-heroes to slice-of-life to action/adventure and beyond, Free Comic Book Day has a comic book for everyone! Free Comic Book Day
posted 09:14 [/entertainment/books]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 12 shownotes
lottalinuxlinks.com linux user podcast 12
linux iso bittorrent site
Azureus plugins-get RSS feed scanner plugin here
Democracy Player for linux
Slax live linux slackware-based distro
Mounting iso files in linux
Huge number of online programming books.
posted 03:25 [/podcast/shownotes]
permanent link
Discuss: 0 comments
They Might be Giants : Beardo 2006 tour
The best $21.00 I ever spent! I saw my all time favorite music group perform live in concert Friday night at the Orange Peel in Asheville, NC. I have been a TMBG fan since 1984, and finally got to see them in concert. It was absolutely FANTASTIC. This concert was the most fun I think I have ever had in my entire life. They played for 2 hours and did three encores! They played an even misture of their old stuff and their newer stuff-including 3 brand new songs. They Might be Giants truely are the greatest rock band ever! I got a new TMBG hat, t-sirt, and a big yellow foam finger too! If you have never seen TMBG live, go see them; it's a musical party for your ears! If you have never heard them, leave this sight now and do a google search for They Might Be Giants. Check out their podcast, download their flash player, streaming music clock radio. I hope they never quit making music.
posted 14:09 [/entertainment/music]
permanent link
Discuss: 0 comments
Looking for testers
I am trying to figure out if the comment system is working. Please leave a comment.
posted 20:07 []
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 11 shownotes
Topics include: knoppix DVD 5.0; jazzing up your remote shell login screen; concert disaster; and rpn calculator update
Links:
lottalinuxlinks.com linux user podcast 11
knoppix
knoppix FAQ wiki
knoppix 5.0 DVD review
jazzing up yout remote login shell
fixing windows with knoppix
fixing linux with knoppix
and linux gamer's faq
posted 03:00 [/podcast/shownotes]
permanent link
Discuss: 0 comments
RPN calculator scare.
My trusty HP 11C has been resurrected (and on ironically enough, on Easter weekend) Here's the whole story: when I dropped my 11C, the display quit working i.e. pressing keys did nothing. I replaced the batteries with unopened one year old, silver oxide 357 batteries--still nothing. Saturday night, I tore my computer room apart, looking for an 13 year old h48gx I used to own, but hadn't seen in over a year. After an hour or so, I found it, an was satisfied. On Monday, just on a whim, I bought new batteries to try in the 11c; I put them in, and it came back to life. I was sooooo happy. I have my 11c back!!!! and to top it all off, I just found out today that the 48gx has an 8 layer stack! I am VERY happy now. I just knew it was gone forever, but after 23 years it lives anew :-)
posted 21:14 [/personal]
permanent link
Discuss: 0 comments
TMBG concert!!!
Speaking of concerts...the one that I am really excited about is They Might be Giants, at the Orange Peel in Ashville, NC Friday April 28th!!! I can hardly wait for that one.
posted 21:10 [/personal]
permanent link
Discuss: 0 comments
Doomed concert
Last friday, my brother-in-law and I went to see Coheed and Cambria in concert in Atlanta. We were stuck in traffic for over 2 hours, 100 miles north of the concert venue due to an 18-wheeler exploding on Interstate 85. We got to the concert just in time to see the last 4 minutes of Coheed and Cambria. We were under the impression that Coheed was the main act and that two groups that I had never heard of were the opening act. We were wrong. the first act Head Automatica, was a no show, Coheed was the second act, and the main act was Avenged Sevenfold.
I normally don't listen to music like this, but I do like Coheed (think Rush, Pink Floyd, and tragic epic science fiction combined with heavy metal thrown in for good measure). Aveneged Sevenfold was not anything to write home about. Based on the 4 minutes I got to hear live, I would travel again to see Coheed--as long as they are the main act.
posted 21:08 [/personal]
permanent link
Discuss: 0 comments
Podcast #10 from lottalinuxlinks.com.
Topics include: desktop icons with xfce4 with rox; dsl version 2.3
Links:
DSL Cheat Codes;
damn small linux DSL version 2.3;
DSL review;
Pen Drive linux;
DSL review at IBM developer works;
How to run dsl on a usb hard drive alternate method;
DSL review
posted 02:09 [/podcast/shownotes]
permanent link
Discuss: 0 comments
Solaris author Stanislaw Lem dies at 84
KRAKOW, Poland (Reuters) - Polish author Stanislaw Lem, one of the world's leading science-fiction writers, died on Monday in his home city of Krakow at the age of 84 after a battle with heart disease.
Lem, whose books have sold more than 27 million copies and have been translated into more than 40 languages, won widespread acclaim for The Cyberiad, stories from a mechanical world ruled by robots, first published in English in 1974. Read the Rest
posted 20:54 [/entertainment/books]
permanent link
Discuss: 0 comments
Reunion
27 years ago I worked as a staff member/couselor at a Boy Scout Camp. I did this 10 weeks a summer for 3 summers in a row. This was one of the best times of my life! I was 13 years old my first year as a staff member; I worked there until i was 15 years old. The camp was Camp Old Indian, near the North Carolina border, in the upsate of South Carolina. This weekened, there was a reunion of the satff past to present day. There were guys there I had known as a boy scout, and guys I worked with in the in 1979 through 1982. Words cannot describe the emotions that went trhough my mind, being in a place, that changed my life, where I had nothing but good memories, and to be with people that I hadn't seen in nearly 30 years, who shared the same experiences and memories with me. To walk at 40, where I had walked as a teenager, with the people I count among my greatest friends, was surreal to say the least. It was strange to be there with people that I had not seen in 30 years. Somethings had changed, but some things never change.
I have, intentionally, missed my 5, 10, 15, and 20 year high school class reunions. I am so glad I didn't talk myself into missing this camp staff reunion. Just like working at camp, going to this reunion was one of the best things I have ever done. An entirely positive and life changing experience. It was difficult leaving there in 1982; it was difficult to leave today.
posted 21:00 [/personal]
permanent link
Discuss: 0 comments
CORRECTED shownotes for podcast 6
Fixed broken link
My xplanet default file:
xplanet & weather scripts ymv. I run the cloudmap script via a cron job every 3 hours. The "default" file goes in your home directory; all the rest are made executable and placed in ~/bin
posted 16:12 [/podcast/shownotes]
permanent link
Discuss: 0 comments
lottalinuxlinks.com linux user podcast 9 shownotes
firefox memory faq
festival female voice package howto
Festival article
Festival Speech program
Screen
XFCE4
XFCE4 download page
XFCE4 graphical installer download page
torsmo
gkrellm
Pizza Party
posted 18:44 [/podcast/shownotes]
permanent link