Monday, November 17, 2008
Midnight Commander transparent color scheme
Here's how to do it. Edit the file ~/.mc/ini and add at the end the following:
Tuesday, September 2, 2008
Postfix on FreeBSD - Maildir delivery
Suppose you have a clean FreeBSD install and you want to get Postfix as your MTA.
Current setup:
- OS: FreeBSD 7.0-RELEASE
- SHELL: bash
- no previously installed MTA present on the system
Sunday, June 29, 2008
Triple boot pain
The HDD had 500 GB and we agreed to set up the partitions as follows:
* primary partition - 50 GB - Vista Business x64OK, so when all this was settled, I started the Vista install. It went OK, no troubles whatsoever. Then came Kubuntu - all went fine. I used GRUB in order to be able to choose between the two operation systems.
* primary partition - 50 GB - XP Professional x64
* primary partition - 25 GB - Kubuntu 8.04
* extended partition - ~375 GB
- 4 GB - Linux swap
- the rest - big storage partition
Thursday, June 26, 2008
Manually modifying a .deb package
From time to time, you might be facing a binary .deb package that you have to tweak for suiting your own needs or for testing purposes. By "a binary .deb package" I mean the final .deb, with a few configuration files and pre/post-inst/rm scripts and not the source files for the .deb themselves.
So, what to do if you only want to change, say, the behavior of a postinst file and then have the .deb prepared for installation?
First of all, the .deb itself is a kind of an archive. This is why you can browse its contents while in mc, for instance ("Midnight Commander").
Sunday, June 22, 2008
Ubuntu 8.04 Live CD and weird SATA HDD
XP came preinstalled so I burned a CD with Kubuntu 8.04 and booted from it... just to find out that there was no normal way of detecting the HDD as device.
Tuesday, June 10, 2008
Compiling Pidgin MTN
Compile Monotone from source
Monday, June 9, 2008
How to overlap two images using Gimp
Too bad there are a lot of idiots in this world - starting with myself - who don't have the slightest clue on how to use it. I mean, I always loved photography and as a kid I used to play with my grandfather's "borrowed" old Zenit camera, but since photographic films were not cheap and I had no means of editing the photos, I quit. Since then, I've been planning... and planning to get a camera of my own, but since I don't want anything below a SLR - and a decent one is around 1,000 EUR - it'll have to wait. But that's another story...
Getting back to Gimp. My concrete problem was how to get two images of exact size (after adjusting their size such that they "fitted" the dimensions) overlap with an amount of transparency. I'm aware this must be an extremely easy task for anyone just a little bit more photo editing savvy than myself, but anyways - I had no clue what to do so after googling and reading a little bit, I found out.
I'm posting here the "short version", suitable for my concrete issue. (Such that I'll know next time where exactly to go to for instructions.)
Sunday, June 8, 2008
Pidgin bug
While I have to admit that Pidgin is generally speaking a great multi-protocol IM (instant messaging) client, it's got its flaws too... just like any software. And I'm not talking here about the notorious developers / users scandal, resulting in a Pidgin fork because users just wanted a resizable text input field, while the developers said they don't care. I'm not even talking about the lack of voice and web cam support (there's a ticket from the beginning of time there... prioritized as minor).
Wednesday, April 9, 2008
Convert .flac files into .mp3
for x in *.flac ; do OUTF=`echo "$x" | sed s/\.flac$/.mp3/g` ; flac -c -d "$x" | lame -m j -q 0 -V 0 -s 44.1 - "$OUTF" ; done
Friday, February 29, 2008
Default charset in apache (2)
http://www.apache.org/dist/httpd/CHANGES_2.2
This file contains a paragraph I missed:
Thursday, February 28, 2008
Default charset in apache
Darn! I finally got over my problem... so let's get back to the very beginning...
I use apache 2.2.4. I've been using it without a problem for a long time. My needs for apache are very basic: I just need tons of directory listings (indexes) with the ability to follow symbolic links, and ~10 aliases. The files in the directory listings are on my local computer and they usually have "weird" encodings, so I needed to let apache know I need it to use UTF-8 as default charset/encoding. Simple to achieve... or so it seemed: I used to run apache installed via aptitude under /etc/apache2.
Wednesday, February 27, 2008
Webmin in FreeBSD
pkg_add -rv webmin
echo 'webmin_enable="YES"' >> /etc/rc.conf
/usr/local/lib/webmin/setup.sh
/usr/local/etc/rc.d/webmin start
Tuesday, February 26, 2008
Apache...
For a wealth of apache documentation: apache.org httpd docs. (Just change '1.3' in the URL into '2.0' or '2.2' for different flavors.)
Note to self: RTFM.
Basic apache configuration in FreeBSD
pkg_add -rv apacheAdded the lines:
vi /usr/local/etc/apache/httpd.conf
ServerName wwwSupposing my hostname is dvorak, I need to edit
BindAddress *
vi /etc/hostsand add the line:
127.0.0.1 dvorak
procfs and loadavg
Sendmail: Maildir format
...Using procmail for this example.
PACKAGESITE
After fiddling around I found out there's an environment variable called PACKAGESITE that instructs pkg_add to go to a "package site" designated by the user.
dpkg-reconfigure locales...
On a Debian system,
sudo dpkg-reconfigure localeswould prompt you with a nice menu allowing you to select new locales... Unfortunately, this is not the case with Ubuntu. You just get to generate or update the already selected locales. This is actually an Ubuntu bug, confirmed (with status: wishlist).
Monday, February 25, 2008
Make Konqueror remember the default view
One of those "features" is the fact that Konqueror doesn't seem to remember the default view I set up in any profile. Namely, when I use Konqueror as a file manager and type something in the address bar, such as ~/tmp, I really want it to display the contents of ~/tmp in "Detailed List View", the way I chose it as default! But it doesn't.
Convert .wma files into .mp3
Another thing that's been troubling me regarding audio files is those damn .wma-s that cannot be played by my iPod. So it's time for a handy script that will convert .wma into .mp3:
for x in *.wma ; do mplayer -vo null -vc dummy -af resample=44100 -ao pcm:waveheader "$x" ; lame -m s audiodump.wav -o "${x%wma}mp3" ; rm audiodump.wav ; done
Pretty impressive – lame's manual page deserves a good read.
Convert .m4a files into .mp3
One of the things that's been troubling me lately has been the fact that on a standard Debian/Ubuntu system I can't seem to be able to edit the tags for the .m4a files I have.
So, in order to edit the tags on the .m4a files... I'd rather convert them into .mp3-s. The way to do this is actually simple.
LSCOLORS
As stated earlier, I came back to the problem of LSCOLORS.
If using bash, in order to get colorful directory listings in FreeBSD the user needs to set the CLICOLOR environment variable to "YES" and export it and would also need to define (and export) the LSCOLORS variable, all inside ~/.bash_profile.So, how do we define LSCOLORS?
Sunday, February 24, 2008
First customizations
OK, first things first. For an 'experiment' with FreeBSD I first needed it installed somewhere... for the purpose of my own mental and psychical health, I choose to get FreeBSD running in a virtual machine first.
Since I'm not eager to see it (...yet) as a viable fully fledged desktop system, I was not interested in the X part of this install so I chose a minimal install, by using the "boot only" CD.