Disable IPV6 di Fedora

>> Selasa, 18 Desember 2012

edit file /etc/modprobe.d/blacklist.conf

tambahkan baris berikut kemudian restart

blacklist ipv6
install ipv6 /bin/true

Read more...

SSH passwordless

>> Jumat, 14 Desember 2012

Berikut adalah trik passwordless di linux


root@mail:~# ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
7a:b0:b6:ff:52:97:9d:d0:9a:a4:d9:2a:6c:03:6a:c9 root@mail
The key's randomart image is:
+--[ RSA 2048]----+
|                 |
|                 |
|             .   |
|            o .  |
|      . S  = * . |
|      .+  + * o  |
|   . o+o.. o     |
|    E. o* .      |
|   .  .o.=.      |
+-----------------+
root@mail:~# ssh-copy-id -i /root/.ssh/id_rsa.pub
ssh: Could not resolve hostname /root/.ssh/id_rsa.pub: Name or service not known
root@mail:~# ssh-copy-id -i /root/.ssh/id_rsa.pub root@proton
root@proton's password:
Now try logging into the machine, with "ssh 'root@proton'", and check in:
  .ssh/authorized_keys
to make sure we haven't added extra keys that you weren't expecting.
root@mail:~# ssh root@proton
Last login: Fri Dec 14 12:48:55 2012 from mail.ns.maspion.net
[root@proton ~]# exit
logout
Connection to proton closed.
root@mail:~#

Read more...

Mengatasi error no space left pada linux

>> Kamis, 15 Maret 2012

Perintah df -H memberikan informasi bahwa free space pada harddisk masih tersisa banyak tapi tidak dapat digunakan lagi untuk menyimpan. waktu dicek menggunakan df -i terlihat inodenya habis, seperti tampak pada gambar dibawah ini
hal ini disebabkan di harddisk tersimpan file kecil-kecil dalam jumlah yang sangat banyak. untuk itu harus dicari dahulu folder apa yang menyimpan banyak file menggunakan perintah
$ for i in /*; do echo $i; find $i wc -l; done
ganti /* dengan path folder, misalnya /var/spool/*
setelah ketemu, hapus file tersebut menggunakan perintah
find . -name "*" xargs rm -rfv

Read more...

Menampilkan user logged dan server load pada GDM Chooser

>> Senin, 06 Februari 2012

Ketika kita menggunakan XDMCP untuk aplikasi thinclient maka pada gdm chooser akan terlihat versi kernel dibawah nama host, hal ini dijumpai pada distro fedora. Informasi kernel tentu saja tidak banyak berguna untuk client, maka kita harus mengubahnya menjadi sebuah tampilan informasi yang berguna salah satunya adalah jumlah user yang sudah login sehingga client bisa memilih server yang tingkat loadnya paling sedikit

buat sebuah file bernama Xwilling di /etc/gdm/ yang berisi:

#!/bin/sh# $XFree86$
# The output of this script is displayed in the chooser window
# (instead of "Willing to manage")

load="`uptimesed -e 's/^.*load[^0-9]*//'`"
nrusers="`whocut -c 1-8sort -uwc -lsed 's/^[ ]*//'`"
s=""; [ "$nrusers" != 1 ] && s=s
echo "${nrusers} user${s}, load: ${load}"

Read more...

  © Blogger templates Sunset by Ourblogtemplates.com 2008

Back to TOP