 |
| Who's Online |  |
There are currently, 0 guest(s) and 0 member(s) that are online.
You are Anonymous user. You can register for free by clicking here | |
| Login |  |
|
Don't have an account yet? You can create one. As a registered user you have some advantages like theme manager, comments configuration and post comments with your name. | |
|  |
 | Compiling Linux Kernel |
I have included 2 different sections on compiling linux kernel. There's a slight difference between 2.4 and 2.6 kernel. Please follow the one that apply to your current kernel.
|
|
|
Posted by abb on Tuesday, March 07 @ 15:59:30 EST (2107 reads)
(Read More... | 2036 bytes more | 43 comments | Score: 5)
|
|
 | Create / Verify md5sum in Linux |
Verify md5sum using linux
md5sum -c linux.iso.md5
Create an md5sum using linux
md5sum linux.iso > linux.iso.md5
|
|
|
Posted by abb on Wednesday, January 26 @ 00:31:33 EST (6668 reads)
(Read More... | 275 comments | Score: 0)
|
|
 | Reinstall boot loader |
If for a reason, your linux boot loader does not function properly, or has gone because you reinstall windows ... all you need to do are the following:
1. Use rescue cd (usually Linux disk 1), and boot to rescue mode
2. # chroot /mnt/sysimage
3. # /sbin/grub-install /dev/hda (type "/sbin/lilo /dev/hda" if you want to use lilo as boot loader)
4. #exit
5. Reboot your system without the rescue CD
|
|
|
Posted by abb on Wednesday, January 19 @ 13:47:43 EST (3908 reads)
(Read More... | 351 comments | Score: 5)
|
|
 | Split a big file into smaller files |
To split a big files:
"split -b 1024k --verbose my.bin.tar.bz2 my.bin.tar.bz2. "
Result:
creating file `my.bin.tar.bz2.aa'
creating file `my.bin.tar.bz2.ab'
creating file `my.bin.tar.bz2.ac'
To combine the files back to a big file:
"cat my.bin.tar.bz2.a* > my.bin.tar.bz2"
|
|
|
Posted by abb on Wednesday, January 19 @ 13:37:51 EST (1463 reads)
(Read More... | 401 comments | Score: 0)
|
|
|  |
| 
|