Development Release: Fedora 13 Alpha

Jesse Keating has announced the availability of the first alpha release of Fedora 13: “The Fedora 13 ‘Goddard’ alpha release is available. Among the top features for end users, we have: automatic print driver installation so when you plug in a USB printer, Fedora will automatically offer to install drivers for it if needed; automatic installation of language packs; redesigned user management interface; color management to better set and control your colors for displays, printers, and scanners; NetworkManager improvements include …

Read On »

Restricting CRON and AT in Redhat, Fedora & CentOS.

Sometimes you want the root user or other trusted users to be able to run cronjobs or timed scripts with at. In order to lock these down, you will need to create a cron.deny and at.deny file inside /etc with the names of all blocked users. An easy way to do this is to parse /etc/passwd. The script below will do this for you.
echo “Locking down Cron”
touch /etc/cron.allow
chmod 600 /etc/cron.allow
awk -F: ‘{print $1}’ /etc/passwd | grep -v root > /etc/cron.deny
echo …

Read On »

Re-install bootstrap code(GRUB) in Redhat,Fedora,CentOS Linux

If you have repaired your system from a backup tape (by dump or tar), for example, you will need to repair the bootstrap area.You need to re-install the bootstrap code that is grub.
Please perform the following steps:

Boot from OS(Redhat,Fedora,CentOS) installation disc (for example, CD #1 or DVD).
Type “linux rescue” at the “boot:” prompt.
Mount all filesystems in read-write mode.
Change root to real root (‘/’) on your hard disk:
# chroot /mnt/sysimage

Re-install bootstrap code (GRUB).

If you wish to re-install GRUB to the MBR …

Read On »

Development Release: FreeBSD 7.3-RC2 Available

Ken Smith has announced the availability of the second release candidate for Freebsd7.3: “The third and what should be last of the test builds for the 7.3-RELEASE cycle, 7.3-RC2, is available for amd64, i386, pc98, and sparc64 architectures. The target schedule, as well as the current status of the release is available here. The schedule has slipped by a bit over a week so the actual target for the release announcement is really about a week and a half from …

Read On »

 Page 1 of 41  1  2  3  4  5 » ...  Last »