Tampilkan postingan dengan label Linux. Tampilkan semua postingan
Tampilkan postingan dengan label Linux. Tampilkan semua postingan

Senin, Februari 25, 2008

Samba PDC + LDAP + Smbladp-tools

CentOS tampaknya masih jadi pilihan yang bagus buat saya, secara jujur saja, belum pernah mendalami Debian yang sebenernya mungkin lebih bagus mengingat "pure free" linux tanpa embel2 sisi bisnis, walaupun di sana - sini banyak turunannya yang mencoba menjadikan produk komersial dari debian.

Kali ini saya mencoba kembali, tepatnya me-refresh ingatan saya akan setting Samba menjadi PDC dengan bantuan LDAP sebagai backend user dan data lainnya. Tutorial yang saya gunakan masih sama seperti yang dulu saya gunakan tepatnya waktu saya set untuk fedoracore 4, dari berbagai hal kesemuanya tampaknya masih sangat relevan, terkecuali file bantuan smbldap-tools yang tidak lagi di provide oleh IDEALX.ORG , Namun kini project-nya sudah di host oleh sourceforge.net.

Kali ini saya mencobanya dalam sebuah mesin virtual (thanks to VMware ) yang saya install CentOS 5.1. Dan semuanya berjalan dengan baik ( tutorial lengkap .. ntar yah.. klo sudah di pasang di mesin sesungguhnya )

Jumat, Januari 25, 2008

Copy hard disk or partition image to another system using a network and netcat (nc)

Another copy paste post :
--------------------------
netcat utility (nc command) considered as TCP/IP swiss army knife. It reads and writes data across network connections, using TCP or UDP protocol. It is designed to be a reliable “back-end” tool that can be used directly or easily driven by other programs and scripts. At the same time, it is a feature-rich network debugging and exploration tool, since it can create almost any kind of connection you would need and has several interesting built-in capabilities.

Read more here

Selasa, Januari 15, 2008

Install VMware Tools on Ubuntu Edgy Eft


Kalau ada yg bisa let me know yah.. :) , saya sudah coba install vmware tools di guest OS ubuntu 7.04, tapi gak bisa2...

----------------------------------------------------------

Update: If you have VMware Workstation version 5.5.3, you will want to follow the updated guide. If you are using version 5.5.2 or below, continue on.

Ubuntu continues to evolve, and the pre-compiled vmware tools just don't have the time to adapt. This makes it a little more difficult to install, but not impossible.

The first thing that is important is that you will need to know is that you have to install the compilation utilities, which aren't installed by default. Run these commands to get you started:

sudo apt-get install build-essential

sudo apt-get install linux-headers-`uname -r`

The first command installs gcc and all the compiler utilities. The second command installs the header files for your currently running kernel. Notice that the ` is the one next to the 1 key on your keyboard.

Now you'll want to navigate to the VM \ Install VMware Tools menu:

This will mount the vmware tools in Ubuntu so that you can begin the install. To install the tools, run the following commands:

cp /cdrom/*.gz /tmp/

cd /tmp

tar xvzf VM*.gz

cd vmware*

sudo ./vmware-install.pl

Select all of the defaults. It will prompt you that you need to compile the module for your system. Select yes and continue.

When you are all done, reboot your virtual machine, and that's all there is to it.

Tested on: Ubuntu Dapper, Ubuntu Edgy Eft

sumber : http://www.howtogeek.com/howto/ubuntu/install-vmware-tools-on-ubuntu-edgy-eft/