Posts

SliTak and Damn Small Linux

Using Virtualbox, I've started playing around with the two mini-distributions of Linux: SliTak and Damn Small Linux (and I'm looking forward to playing around with more). Overall I'm really impressed with these two distributions! Here are my first impressions of how they compare. Damn Small Linux (DSL) I've been using this one for a while on an old 400MHz machine with 64mb of RAM. Its only a 50mb distribution that is very full-featured, including most everything you would expect from a Desktop distro (wordprocessor, browser, music player, etc). You can also install any number of apps through the MyDSL Browser. The developers of this distribution are constantly improving it, releasing new beta versions almost every month. The target audience seems to be older, slower computers. I thought, before trying SliTak, that the reason that a lot of the software on this distribution is dated is because it is less bloated, less resource intensive, and functions better on old hard...

How to incorporate WordFlashReader into your Ubuntu Main Menus

Ok, you've just installed WordFlashReader on your Ubuntu machine. And now you want an easy way to access it. Doing the following three things will make it very easily accessible: Aliasing it in your .bashrc alias wfr='[installation path]/wordflashreader.linux.bin' Launch it directly from your browser using Launchy (firefox addon). Insructions are here . Add it to your Ubuntu main menus. In order to do this, go to System->Preferences->Main Menu. Choose which category you wish to add you menu item to. I chose the 'Office' category. Click 'New Item' on the right side of the window. Name: WordFlashReader Command: [browse to the place where you installed the program and select wordflashreader.linux.bin] Next, click the button on the upper left and corner of the Create Lancher window. Again, browse to the WordFlashReader installation path and click 'Open'. Two icons will show up. Choose WFReader.ico and hit ok. Hit ok one more time and th...

Installing XP on SATA Harddrives

XP, even XP sp3 does not include support for SATA hard drives. Here is a great guide to getting it working.

Firefox crashing on Youtube in Ubuntu Hardy

If you've been surfing Youtube a lot using the default configuration of Ubuntu Hardy, chances are you've experienced an unusual amount of crashing. An absurd amount, in fact. It has been driving me crazy! I've finally been able to cobble together a solution from suggestions here and there on various forums (with special thanks to the works of Conn in these forums): Download the new Flash 10 beta player from here to your home directory and unzip it. Remove 'flashplugin-nonfree' and 'libflashsupport' using Synaptic Using the command line: mkdir ~/.mozilla/plugins/ (if it is not already there) cp ~/install_flash_player_10_linux/libflashplayer.so ~/.mozilla/plugins/libflashplayer.so Using Synaptic, make sure you have the latest of the following installed: 'alsa-base', 'pulseaudio', and 'libasound2-plugins' Then create and edit ~/.asoundrc and add: pcm.pulse { type pulse } ctl.pulse { type pulse } pcm.!default { type pulse }...

Conky and my .conkyrc file (on debian and fluxbox)

To install conky: sudo aptitude install conky Then create and modify ~/.conkyrc. Here is what I used: ----- # set to yes if you want Conky to be forked in the background background no cpu_avg_samples 2 net_avg_samples 2 out_to_console no # Use Xft? use_xft yes # Xft font when Xft is enabled xftfont Bitstream Vera Sans Mono:size=8 own_window_transparent no own_window_colour hotpink # Text alpha when using Xft xftalpha 0.8 on_bottom yes # mail spool mail_spool $MAIL # Update interval in seconds update_interval 1 # Create own window instead of using desktop (required in nautilus) own_window no # Use double buffering (reduces flicker, may not work for everyone) double_buffer no # Minimum size of text area #minimum_size 280 5 #maximum_width 150 # Draw shades? draw_shades no # Draw outlines? draw_outline no # Draw borders around text draw_borders no # Stippled borders? stippled_borders 10 # border margins border_margin 4 # border width border_width 1 # Default colors and also border colors d...

Installing Virtualbox's Guest Additions on Debian and getting shared folders to work

Follow these steps to install the Guest Additions on your Debian virtual machine: 1. Login as root; 2. Update your APT database with apt-get update; 3. Install the latest security updates with apt-get upgrade; 4. Install required packages with apt-get install build-essential module-assistant; 5. Configure your system for building kernel modules by running m-a prepare; 6. Click on Install Guest Additions… from the Devices menu, then run mount /media/cdrom. 7. Run sh /media/cdrom/VBoxLinuxAdditions.run, and follow the instructions on screen. Once you install and reboot, then you can add shared folders from the device menu, and mount it with the following command: # mount.vboxsf [the_name_of_the_shared_folder] /media/[name_of_mount_point]

Minimal Debian install with Fluxbox

Basic Installation Install only the base system (w/ networking) of the latest Debian (I don't select any of the package bundles when given the option). $ su - $ nano /etc/apt/sources.list Comment out the line with the CD in it with a #. Add these lines (adjust for the version of debian you're installing): deb http://ftp.debian.org/debian etch main contrib non-free deb-src http://ftp.debian.org/debian etch main contrib non-free Now is generally a good time to update your system with any security patches: # apt-get update # apt-get upgrade Installing sudo I have gotten really used to using sudo, so the first thing I do is: $ su - # aptitude install sudo Then I edit /etc/sudoers # export VISUAL="nano" # visudo Add the following line: username ALL=(ALL) ALL (Note ganked from somewhere: So the first part is the user, the second is the terminal from where the user can use sudo, the third is as which user he may act, and the last one, is which commands he may run.) I...