Today I had to compile some tools from the source and since the developers used “jam” for their distribution I had a deeper look on it. Maybe its worth to change from compiling my cude with makefiles. The advantage from…
Today I had to compile some tools from the source and since the developers used “jam” for their distribution I had a deeper look on it. Maybe its worth to change from compiling my cude with makefiles. The advantage from…
Installing Flash under F10(64bit) is a little bit complicated so here’s the trick Change to “root” cd /usr/lib64/mozilla/plugins/ wget tar -xvzf libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz Restart Firefox. Done.
Assume you have a text file which looks like line 1line 2 …line n and you want to reverse it, which means that you need a file with line n…line 2line 1 A trivial problem if you know the right command.…