Using GRUB as a Boot Loader

Filed in Information Technology | Linux System Leave a comment

Every hard disk partition has a boot record, but there is only one MBR at those hard disk, which will be loaded by BIOS every time computer starts. From this point, MBR (stage 1) will point into a partition where the active boot loader exist.

Boot loader may contain Grub, LILO, etc (e.g. boot loader from MS Windows). Here are some tips:
Continue Reading

Hard Disk on Linux

Filed in Information Technology | Linux System Leave a comment

FSTAB MOUNTING

/dev/hda5 /mnt/warehouse vfat rw,uid=500,gid=500 0 0
/dev/hda6 /mnt/overload vfat rw,uid=500,gid=500 0 0

Mode read write untuk user uid=500

0 terakhir berari file system tidak ada dicek integritasnya saat booting.

CHECK HARD DISK HEALTH PERIODICALLAY

Filesystem will be automatically checked every 23 mounts or180 days, whichever comes first.  Use tune2fs -c or -i to override.

Scheduling a Repetitive System Event (cron)

Filed in Information Technology | Linux System Leave a comment

Inside a crontab File

The cron daemon schedules system events according to commands found within each crontab file. A crontab file consists of commands, one per line, that will be executed at regular intervals. The beginning of each line contains date and time information that tells the cron daemon when to execute the command.
Continue Reading

TOP