Jumat, 20 Februari 2009

BOOT IMAGE

How to change your boot image...

1. install grub-splashimages

2. edit menu.lst file, command:

>sudo gedit /boot/grub/menu.lst

3. add this command into the file:

splashimage=/boot/grub/splashimages/menu-sta.xmp.gz

4. restart your pc or notebook to take effect

note:
- menu-sta.xmp.gz is name of file image, you can change with other file image that
you have been installed, just check at : /boot/grub/splashimages
- you can change the list on your boot too in /boot/grub/menu.lst

UBUNTU 8.04 REFERENCE...

I have ever red a magazine about linux, and i found nice book to learn ubuntu.

UBUNTU KUNG FU
KEIR THOMAS
PRAGMATIC BOOKSHELF

US $ 34.95

happy reading...:)

C Programming on Ubuntu 8.04

How to Use C Programming on Ubuntu 8.04

1. check your gcc version: gcc --version
if the gcc is not installed yet, pliz install build-essential and gcc package

2. make .c file with editor text, you can use gedit or vim, for example
>vim test.c

#include
int main()
{
printf("welcome to c programming, enjoy it...:-) ");
return 0;
}

3. make gcc file to compile the program:
>vim maketest

test: test.c
gcc -o test test.c

4. do this command:
>make test
>./test

5. ====GOOD LUCK====