Welcome, Saudaraku


registri editor part II
August 29, 2007, 1:20 am
Filed under: Tutorials

Membuka Regedit yang terkunci / enabling
Buka Notepad trus copy/paste kode di bawah ini,saveAs : [ terserah.vbs ]

‘Enable Registry Editing’
‘A? Veegertx – 4/7/2004
‘This code may be freely distributed/modified
On Error Resume Next
‘Prevents errors from values that don’t exist
Set WshShell = WScript.CreateObject(”WScript.Shell”)
‘Delete DisableRegistryTools registry values

WshShell.RegDelete “HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools”
WshShell.RegDelete “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools”

‘display message
Message = “Kamu sekarang dah bisa buka Regedit, Powered by Yudhi Abe”

X = MsgBox(Message, vbOKOnly, “OK”)
Set WshShell = Nothing
Set fso = Nothing
[/code]



Compile dan Install Kernel di FreeBSD
August 20, 2007, 4:07 am
Filed under: FreeBSD

Compile dan install kernel biasanya dilakukan bila kita menambahkan hardware baru atau saat menginstalasi software tertentu yang membutuhkan penyesuaian pada kernel. Berikut sekilas tentang compile dan install kernel FreeBSD.
Pertama cek dulu apakah sudah ada source kernel FreeBSD nya, yaitu dalam /usr/src/sys yang berisi berbagai sub-direktori yang merupakan bagian-bagian dari kernel. Apabila source kernel-nya belum ada maka kita dapat menginstallnya terlebih dulu : root@bsd > /stand/sysinstall

Kemudian pilih menu “Configure” –> “Distributions” –> “src” –> “sys” . Baru kita akan diberi pilihan media instalasinya, lewat CD , FTP dan lain-lain. Pilih sesuai keinginan kita, then tunggu sampai selesai. Setelah install selesai :

root@bsd > cd /usr/src/sys/i386/conf/

backup dulu file konfigurasi kernel nya :

root@bsd /usr/src/sys/i386/conf > cp GENERIC KERNELBARU

Kemudian Edit file konfigurasi KERNELBARU sesuai kebutuhan, Jangan lupa mengganti baris “ident” dari GENERIC menjadi KERNELBARU (sesuaikan dengan nama file konfigurasinya). Setelah itu :

root@bsd /usr/src/sys/i386/conf > config KERNELBARU

root@bsd /usr/src/sys/i386/conf > cd ../../compile/KERNELBARU
root@bsd /usr/src/sys/compile/KERNELBARU > make depend
root@bsd /usr/src/sys/compile/KERNELBARU > make
root@bsd /usr/src/sys/compile/KERNELBARU > make install

Setelah Install selesai, reboot system.
Untuk dokumentasi lebih detil nya ada di http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html dan untuk troubleshooting bisa melihat di http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-trouble.html#KERNELCONFIG-NOBOOT

ORIGINAL POST



Gateway dgn FREEBSD
August 20, 2007, 3:05 am
Filed under: FreeBSD

Yang pertama install dulu, gw anggap udah pada bisa yah installnya ( nanti kalo sempet gw buatin tutorial instalasinya ).

Setelah kelar install kita kompile kernel, udah gw post cara kompile kernel di freebsd ( harap cari dan baca di forum ini dah di post ).

Setting ethernet ip public/local ( lakukan pada saat peng installan ) kalo gak bisa ya manual deh :

Contoh yah ( ip gw isi ngasal alias bukan ip gw sesungguhnya ) :

#AKTIFIN NATD
KET:
RL0–> WAN
RL1–> LAN

/sbin/natd -interface rl0

tampilan kalo natd berhasil

ps -aux | grep natd
root 190 0.0 0.1 1016 620 p0 R+ 3:52AM 0:00.00 grep natd
root 188 0.0 0.1 428 276 ?? Is 3:50AM 0:00.00 /sbin/natd -int

#Buat buktiin ipfw dah jalan ketik /sbin/ipfw , nanti keluar blalalala dari ipfw

Oh ya lupa , kalo saat lu ketik /sbin/ifconfig -a , gak keluar configurasi ip lu saat penginstalan yuk kita masukin manual .
rl0 = ip pub gw 202.159.32.2
rl1 = 192.168.0.6

Ketik ( biasanya gw kalo install dah kelar gw setting server pake putty hehe ) :

/sbin/ifconfig rl0 202.159.32.2 netmask 255.255.248
/sbin/ifconfig rl1 192.168.0.6 netmask 255.255.255.0

Ok dah kelar kita ngisi manualnya, klo masih gak bisa juga, skip dolo ntar pake jurus laen.

Kita kesini dulu
#ke /etc/rules , untuk memasukan rules firewall kita , eksekusi sh /etc/rules

ipfw=”/sbin/ipfw”
wan=”rl0″
lan=”rl1″
$ipfw -f flush
$ipfw -f pipe flush
$ipfw add 5 allow tcp from any to 192.168.0.6 80 via $lan
$ipfw add 10 fwd 127.0.0.1,8181 tcp from 192.168.0.0/24 to any 80 # aktif klo squid dah jalan
$ipfw add 20 divert natd all from any to any via $wan

#ipfw show –> liat listing ipfw
65535 1390 144939 allow ip from any to any

#kemudian eksekusi ketik sh /etc/limit.rules

#file /etc/limit.rules di eksekusi oleh /etc/rules . jadi kita harus buat rule untuk manggil /etc/limiit.rules

#####################
ipfw=”/sbin/ipfw”
wan=”rl0″
lan=”rl1″
$ipfw -f flush
$ipfw -f pipe flush
sh /etc/limit-rules
$ipfw add 5 allow tcp from any to 192.168.0.250 80 via $lan
$ipfw add 10 fwd 127.0.0.1,8181 tcp from 192.168.0.0/24 to any 80
$ipfw add 20 divert natd all from any to any via $wan
##################

#supaya reboot gak ilang masukin ini di /etc/rc.local . ee /etc/rc.local

###############
wan=”rl0″
lan=”rl1″

/sbin/natd -interface $wan
sh /etc/rules

###################

Nah buat yang setingan ifconfignya blom masuk juga , mari kita set lewat rc.conf ( formal amat yah pake kata mari wakaka )

ee /etc/rc.conf

#####begin my rc.conf #########
# — sysinstall generated deltas — # Wed Apr 5 11:22:34 2006
# Created: Wed Apr 5 11:22:34 2006
# Enable network daemons for user convenience.
# Please make all changes to this file, not to /etc/defaults/rc.conf.
# This file now contains just the overrides from /etc/defaults/rc.conf.
amd_enable=”YES”
defaultrouter=”202.159.32.25″
gateway_enable=”YES”
hostname=”idunia.net”
ifconfig_rl0=”inet 202.159.32.2 netmask 255.255.255.248″
ifconfig_rl1=”inet 192.168.0.6 netmask 255.255.255.0″
ifconfig_lo0=”inet 127.0.0.1″
inetd_enable=”YES”
ipv6_enable=”YES”
kern_securelevel_enable=”NO”
keyrate=”fast”
linux_enable=”YES”
named_enable=”YES”
named_flag=”"
nfs_client_enable=”YES”
nfs_reserved_port_only=”YES”
saver=”logo”
sendmail_enable=”NO”
sshd_enable=”YES”
usbd_enable=”YES”
firewall_enable=”YES”
firewal_scripts=”/etc/fwrules”
natd_enable=”YES”
natd_interface=”rl0″
natd_flags=”-f /etc/natd.conf”

#### End of my rc.conf ######

Reboot dah biar gampang ngertiinnya.

Jgn lupa kalo ada error baca pesan errornya, kejar errornya dimana terus perbaiki .

Untuk settingan warnet agar bisa main battlenet dota , main di redirecting natd nya. btw dah gw post di www.ligagame.com/forum atau di forum www.indodota.com , lagi males nulis lage.

Kalo masih bingung, hal pertama yang mesti dilakukan coba terus, klo dah bener2 stuck boleh tanya di chanel #indofreebsd@irc.dal.net ( bukan promosi, tapi asli gw ngerti freebsd dari temen2 gw di sana )

Thanks to axal aka joko s , zen, petrix, chmod, splud, slax, sieko.

yang telah membantu proses instalasi box gw.

greetz to
#indofreebsd@irc.dal.net
www.indofreebsd.or.id

ORIGINAL POST



Install Kiba-Dock Ubuntu Feisty
August 18, 2007, 8:58 am
Filed under: Ubuntu

root@ubuntu-desktop:/home/ubuntu# pico /etc/apt/sources.list

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

deb http://id.archive.ubuntu.com/ubuntu/ feisty main restricted
deb-src http://id.archive.ubuntu.com/ubuntu/ feisty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://id.archive.ubuntu.com/ubuntu/ feisty-updates main restricted
deb-src http://id.archive.ubuntu.com/ubuntu/ feisty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://id.archive.ubuntu.com/ubuntu/ feisty universe
deb-src http://id.archive.ubuntu.com/ubuntu/ feisty universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://id.archive.ubuntu.com/ubuntu/ feisty multiverse
deb-src http://id.archive.ubuntu.com/ubuntu/ feisty multiverse

## Uncomment the following two lines to add software from the ‘backports’
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://id.archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse
# deb-src http://id.archive.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu feisty-security main restricted
deb-src http://security.ubuntu.com/ubuntu feisty-security main restricted
deb http://security.ubuntu.com/ubuntu feisty-security universe
deb-src http://security.ubuntu.com/ubuntu feisty-security universe
deb http://security.ubuntu.com/ubuntu feisty-security multiverse
deb-src http://security.ubuntu.com/ubuntu feisty-security multiverse

deb http://download.tuxfamily.org/3v1deb feisty eyecandy
deb-src http://download.tuxfamily.org/3v1deb feisty eyecandy

root@ubuntu-desktop:/home/ubuntu# wget http://download.tuxfamily.org/3v1deb/DD800CD9.gpg -O- | sudo apt-key add -
–15:20:55– http://download.tuxfamily.org/3v1deb/DD800CD9.gpg
=> `-’
Resolving download.tuxfamily.org… 88.191.250.18
Connecting to download.tuxfamily.org|88.191.250.18|:80… connected.
HTTP request sent, awaiting response… 200 OK
Length: 4,180 (4.1K) [text/plain]

100%[====================================>] 4,180 9.53K/s

15:20:57 (9.53 KB/s) – `-’ saved [4180/4180]
(more…)



Install Ubuntu Beryl
August 17, 2007, 5:56 pm
Filed under: Ubuntu

root@ubuntu-desktop:/etc/apt# pico sources.list
root@ubuntu-desktop:/etc/apt# sudo apt-get update && sudo apt-get upgrade
E: Type ‘gpg’ is not known on line 51 in source list /etc/apt/sources.list
root@ubuntu-desktop:/etc/apt# pico sources.list
root@ubuntu-desktop:/etc/apt# sudo apt-get update && sudo apt-get upgrade
Get:1 http://id.archive.ubuntu.com feisty Release.gpg [191B]
Ign http://id.archive.ubuntu.com feisty/main Translation-en_US
Ign http://id.archive.ubuntu.com feisty/restricted Translation-en_US
Ign http://id.archive.ubuntu.com feisty/universe Translation-en_US
Ign http://id.archive.ubuntu.com feisty/multiverse Translation-en_US
Get:2 http://id.archive.ubuntu.com feisty-updates Release.gpg [191B]
Ign http://id.archive.ubuntu.com feisty-updates/main Translation-en_US
Ign http://id.archive.ubuntu.com feisty-updates/restricted Translation-en_US
Hit http://id.archive.ubuntu.com feisty Release
Hit http://id.archive.ubuntu.com feisty-updates Release
Hit http://id.archive.ubuntu.com feisty/main Packages
Get:3 http://security.ubuntu.com feisty-security Release.gpg [191B]
Ign http://security.ubuntu.com feisty-security/main Translation-en_US
Hit http://id.archive.ubuntu.com feisty/restricted Packages
Hit http://id.archive.ubuntu.com feisty/main Sources
Ign http://security.ubuntu.com feisty-security/restricted Translation-en_US
Ign http://security.ubuntu.com feisty-security/universe Translation-en_US
Ign http://security.ubuntu.com feisty-security/multiverse Translation-en_US
Hit http://id.archive.ubuntu.com feisty/restricted Sources
Hit http://id.archive.ubuntu.com feisty/universe Packages
Hit http://id.archive.ubuntu.com feisty/universe Sources
Hit http://id.archive.ubuntu.com feisty/multiverse Packages
Hit http://id.archive.ubuntu.com feisty/multiverse Sources
Hit http://id.archive.ubuntu.com feisty-updates/main Packages
Hit http://id.archive.ubuntu.com feisty-updates/restricted Packages
Hit http://id.archive.ubuntu.com feisty-updates/main Sources
Hit http://id.archive.ubuntu.com feisty-updates/restricted Sources
Get:4 http://download.tuxfamily.org feisty Release.gpg [189B]
Ign http://download.tuxfamily.org feisty/eyecandy Translation-en_US
Hit http://security.ubuntu.com feisty-security Release
Get:5 http://download.tuxfamily.org feisty Release [14.2kB]
Hit http://security.ubuntu.com feisty-security/main Packages
Hit http://security.ubuntu.com feisty-security/restricted Packages
Hit http://security.ubuntu.com feisty-security/main Sources
Hit http://security.ubuntu.com feisty-security/restricted Sources
Hit http://security.ubuntu.com feisty-security/universe Packages
Hit http://security.ubuntu.com feisty-security/universe Sources
Hit http://security.ubuntu.com feisty-security/multiverse Packages
Hit http://security.ubuntu.com feisty-security/multiverse Sources
Ign http://download.tuxfamily.org feisty Release
Get:6 http://download.tuxfamily.org feisty/eyecandy Packages [14.3kB]
Get:7 http://download.tuxfamily.org feisty/eyecandy Sources [37B]
(more…)



Instal Beryl/AIGLX (Intel i915)
August 17, 2007, 8:03 am
Filed under: Ubuntu

Instal Beryl/AIGLX (Intel i915)

Ikuti how-to di Wiki Project Beryl.
* Jika tidak berhasil, periksa apakah direct rendering telah diaktifkan (ketik di dalam terminal):

glxinfo | grep direct

* Outputnya harus seperti ini

direct rendering: Yes

*

Jika hasilnya “No”, periksa apakah Anda memiliki direct rendering manager yang di-load

lsmod|grep 915

* Outputnya harus seperti ini

i915 21632 3
drm 74644 4 i915
tsdev 9152 0

*

Jika hanya menampilkan baris tsdev line, Anda dapat mencoba mengkonfigurasi xorg.conf memakai driver i810, lalu restart, CTRL-ALT-F1 masuk ke sesi terminal and konfigurasi ulang xorg.conf menggunakan i915. Selamat mencoba!