30 AugUpdate BIOS by building FreeDOS CD

BIOS updates on Linux can be a problem.  There are a very few BIOSes for which there are Linux utilities, and some for which the motherboard manufacturer provides ISOs, but for many, the only method provided is a DOS utility.  For these, the excellent Sean Reifschneider posted a method:

http://www.tummy.com/journals/entries/jafo_20080920_234755

which has just one buglet.  At the end of the third line of code:

-b isolinux/isolinux.bin

there needs to be an addition; it needs to look like this:

-b isolinux/isolinux.bin \

Hopefully I can obtain permission to repost a fuller set of instructions :-)

10 JulOptimize compilations on 64-bit AMD and Intel CPUs

The best I've found so far for generic use, is this:
-O3 -march=opteron -mtune=amdfam10 -m64 -mfpmath=sse -mcrc32 -ffast-math -fomit-frame-pointer
If you are using a latest-generation AMD64 CPU, made by AMD, the following is recommended:
-O3 -march=amdfam10 -m64 -mfpmath=sse -mcrc32 -ffast-math -fomit-frame-pointer
For many applications, especially graphics and math-oriented, the -ffast-math item will need to be removed.  -O3 may have to be replaced with -O2 for some code, too.

01 JulCheck WWW sites for broken links

This:http://linkchecker.sourceforge.net/works very well.  Its only issue is it doesn't understand mailto links, it thinks those are all bad.

17 AprNew problems with nVidia chipsets

In current distributions, there is a new nVidia driver, called "Nouveau".  Many nVidia video chipsets, even motherboard chipsets less than a year old, won't work under Nouveau.  For these, a procedure has been identified:http://linuxsoftwareblog.com/?p=232Curiously, I found that the video mode setting on the end of the kernel line is very important.

21 MarRebuild ‘yum’ database in Fedora, to fix weird package install problems

Lots of weird package install problems in Fedora, can be fixed by rebuilding the 'yum' database, thusly:

rm -f /var/lib/rpm/__db*
rpm --rebuilddb
yum clean all

These problems often come up at first install.

16 MarA good FTP server

Recommended:  ProFTPd.  It admits of easy install and config, unlike some others.http://www.debian-administration.org/article/Setting_up_an_FTP_server_on_Debian

04 MarUse all of your cores on multicore CPU (command line)

Here is an interesting project:http://code.google.com/p/ppss/producing a shell script, which makes it quite easy to use multiple cores at once for many command-line operations, e.g., file format conversions and the like.

02 MarFedora Desktop Needs

For an easiest route to many Fedora desktop needs, including MP3, DVD, etc., try here:The Unofficial Fedora® FAQ

20 FebWindows Domain Controller in Linux

So far as this writer knows, the only install-it-and-go Windows domain controller in Linux, is Calculate Linux:http://www.calculate-linux.org/enwhich appears to be a very well-established distro, Gentoo-based.  There are semiseparate client and server distros in this flavor.

01 FebQuick reset of root password with ‘grub’

If your boot loader is 'grub' (highly recommended), a very good method to reset your root password is described here:http://www.debianadmin.com/how-to-change-root-password-in-debian.html