Difference between revisions of "Membuat Distro Sendiri Secara Manual"

From OnnoWiki
Jump to navigation Jump to search
Line 32: Line 32:
 
  # mkdir extract-cd
 
  # mkdir extract-cd
 
  # rsync --exclude=/casper/filesystem.squashfs -a /mnt/cdrom/ extract-cd
 
  # rsync --exclude=/casper/filesystem.squashfs -a /mnt/cdrom/ extract-cd
 +
 +
 +
==Ekstrak Sistem Desktop==
 +
 +
# mkdir squashfs
 +
# mount -t squashfs -o loop mnt/casper/filesystem.squashfs squashfs
 +
 +
  
 
==Pranala Menarik==
 
==Pranala Menarik==

Revision as of 06:10, 8 July 2009

Di sini akan di jelaskan teknik membuat LiveCD berbasis Ubuntu. Anda dapat menambah, mengurangi paket program sehingga LiveCD tersebut lebih cocok untuk anda.


Kebutuhan Sistem Pendukung

  1. Harddisk kosong sebesar 3 – 5 GB (semakin besar ruang kosong, semakin dianjurkan)
  2. Memori 512MB dan swap 1 GB (semakin besar memori, semakin dianjurkan)
  3. Paket pendukung squashfs-tools, dchroot dan mkisofs
  4. Program Virtualisasi semacam Qemu, VirtualBox, VM Ware dan lainya
  5. Berkas ISO Ubuntu Live CD Desktop

Persiapan

Instalasi paket pendukung

$ sudo su -
# apt-get install squashfs-tools dchroot mkisofs qemu

Load module squashfs

# modprobe squashfs

Bisa dilihat apakah sudah terload dengan baik menggunakan perintah

# lsmod


Copy CD Ubuntu LiveCD Desktop Referensi

# mkdir /mnt/cdrom
# mount -o loop ubuntu-9.04-desktop-i386.iso /mnt/cdrom/
# mkdir extract-cd
# rsync --exclude=/casper/filesystem.squashfs -a /mnt/cdrom/ extract-cd


Ekstrak Sistem Desktop

# mkdir squashfs
# mount -t squashfs -o loop mnt/casper/filesystem.squashfs squashfs


Pranala Menarik