Saturday, August 12, 2006

Swap Error

  1. Buka Terminal coi
  2. Masuk ke folder /root
  3. Create file swap manual dgn perintah:
    dd[spasi]if=/dev/zero[spasi]of=swapfile[spasi]bs=1024[spasi]count=524288 (enter)
    keterangan:
    a. 524288 dalam satuan byte (= 512 MB)
    b. Jika tidak bisa, untuk sementara gunakan 65536 (=64 MB)
  4. Ubah permission swapfile dgn perintah:
    chmod[spasi]600[spasi]swapfile (enter)
  5. Jadikan swapfile permanen dgn perintah:
    mkswap[spasi]swapfile (enter)

    --> Di layar akan muncul:
    Setting up swapspace version 1, size = ... Kb
    bla...bla...bla...
  6. Terakhir, apply swapfile menjadi swap beneran dgn perintah:
    swapon[spasi]swapfile (enter)

    atau :
    Masuk ke file /etc/rc.d/init.d/cups
    Cari entri kata “start” lalu edit baris dibawahnya & masukkan perintah:
    swapon[spasi]/root/swapfile &
    Contoh sebelum:
    start () {
    echo -n $"Starting $prog: "
    config
    Contoh sesudah:
    start () {
    swapon /root/swapfile &
    echo -n $"Starting $prog: "
    config
  7. Restart & Selesai gitu loh

Labels:

0 komentar:

Post a Comment