Profil de mdMy WorksBlogListes Outils Aide

Blog


25 octobre

How to Install Grub If corrupted or after windows installation.

Steps are given bellow:
1. Boot your system with Debian Bootable CD   
** Important: Let the boot process complete so the Hard Drive can Load.
2. Press ALT+F2 ie. go to console 2.

 mkdir /debian
 mount /dev/sdx /debian
 chroot /debian
 grub
 root (hd0,0)
 setup (hd 0)


9 octobre

hwclock Problem..in debian etch..

Hi all...i have continiously facing the thing that your clock setting may changed when your debian box reboot.

Here is the simple solution to get hold of it......

First Check using

hwclock

Output:

select() to /dev/rtc to wait for clock tick timed out 

So Lets Do the Trick....

mv /sbin/hwclock /sbin/hwclock.dist

touch /sbin/hwclock vi /sbin/hwclock

add the following:
#!/bin/sh /sbin/hw
clock.dist --directisa "$@"
save & exit
chmod +x /sbin/hwclock
vi /etc/default/rcS
append the following line
HWCLOCKPARS="--directisa"
save and exit
Thats all...done.