NavigationRecent UpdatesUpcoming events |
LinuxGrub-booting memtest86 on x86 hardwareIt is trivial to set things up so you are able to select memtest86 as a boot option in GRUB: Download the latest memtest source from http://www.memtest86.com. Extract and follow the instructions in the README that comes with it to compile. Copy the resulting memtest.bin to /boot and edit /etc/grub.conf to have the following 3 lines:
title Memtest86
root (hd0,0)
kernel /boot/memtest.bin
Make sure you reboot to test. In theory this should work with any x86 OS + bootloader. I am doing this with RHEL 4 + GRUB. nomad's blog | 1 comment | 17721 reads
How to remove IPv6 on Red Hat nodesSubmitted by Aleksey Tsalolikhin on Sun, 2008-02-03 14:52.Linux
Picked up this tid-bit on how to disable IPv6 (which aligns with the general sys admin philosophy of "if we are not using it, remove it or turn it off to simplify the system and increase security": (1) Edit /etc/sysconfig/network and set NETWORKING_IPV6=no. (2) Issue the following command as root: 'chkconfig ip6tables off'. (3) Reboot the host machine. Aleksey Tsalolikhin's blog | 2 comments | 36161 reads
Notes on *nix atimeSubmitted by ski on Thu, 2007-08-09 12:53.Linux | Performance Tuning | Unix
Read an interesting discussion on the lkml list where Linus and friends talked about atime's performance impacts (http://kerneltrap.org/node/14148). Ingo phrased the problem best with: ' For every file that is read from the disk, lets do a ... write to Solutions are to mount your file systems with the noatime, nodiratime options. The only time this may cause a problem is if you have a local mail spool (the mailer will not know that new email arrived) or possibly with some backup software. ski's blog | add new comment | 811 reads
Asking for Comments: Samba Server Setup Experience Under Fedora Core 6Submitted by ant on Wed, 2007-05-23 12:43.Applications | Filesystems | Linux | Networking | Windows
Solved -- The box didn't retain my permissiable SELinux environment after a yum update. With a 'sudo setsebool -P samba_enable_home_dirs=1' there was a mighty noise and it started allowing public read-only access to the share. Someone liked my work (that they help me do) so well, that recently they requested I share the file with everyone on the LAN. I set out to create a publicly readable Samba share for the file. As a user, I issued a 'sudo yum install samba' and soon after started working on the default config file in /etc/samba/smb.conf. Here's the mix I came up with (which, keep in mind, doesn't work; I could use some help!) ant's blog | add new comment | 50754 reads
DjangoSubmitted by eadmund on Mon, 2007-01-22 14:08.Applications | Database | Linux | Software Development | Unix | Windows | WWW
Excellent Python web development framework Stable I like to use this to throw together nice web frontends for the PHBs to look at stats & stuff. It's pretty simple to use, interfaces easily to a database--very useful for the sorts of sysadmin-plus stuff I tend to do. add new comment | 1085 reads
NMAPSubmitted by dklein on Sun, 2007-01-14 10:50.Communications | Linux | Network | Networking | Operating System | Operating System | Protocols | Security | TCP | UDP | Unix | User Security | Visualization | Windows
Fast enumeration of network services Active Nmap is a powerful tool for discovering hosts on a network and enumerating what service they are offering. This can be used to find vulnerable systems, to locate rogue services on your network or simply for a first step in troubleshooting. add new comment | 1548 reads
Fun with FC6 and acpi-cpufreq.Submitted by hcoyote on Wed, 2006-11-01 21:12.Linux
I finally discovered why I couldn't do cpu scaling on my Inspiron 6000. Apparently the default kernel for FC6 is an i586 kernel. It also doesn't work with acpi-cpufreq. It's broke. It no-workie. How do you make it work? Why, you install the i686 version of the kernel! Simple you say? Oh sure, you just download the rpm, -ivh it, and run! Right? Nope. It sees it as the same kernel rev so complains. Ok, so let's whip out the --force. Great, it chugs along, and chugs along, and ... chugs ... and ... continues ... and ... no disk light ... and ... and ... and ... and? Hmm. Apparently lvm.static doesn't like something about the stock LVM setup that anaconda gives you. It kept locking up in i/o wait trying to figure out what hte config was so it could do something with mkinitrd (atleast, I presume; it was in the post install for the kernel). hcoyote's blog | add new comment | 2448 reads
|