Skip to main content

Installing Lampp on LINUX

First of all, get your copy of Lammp in apachefriends.org
search for XAMPP Linux.
to extract the lampp: 
sudo tar xvfz xampp-linux-1.7.3a.tar.gz -C /opt

it will put lampp and its contents to /opt folder.

after you extract it out, you're ready to start your server.
to start apache server and its following components (mysql,etc.) all you have to do is type this command :

sudo /opt/lampp/lampp start

to make lampp autostart when Ubuntu start edit the rc.local file. You need to root access or sudoer as root to make it editable:
sudo gedit /etc/rc.local

then paste the sudo /opt/lampp/lampp start on that file.


Ok. now, you already have a web server on your Linux computer :)

Comments

Popular posts from this blog

10 Kesalahan yang Bikin Karir Stuck 10 Tahun (Dan Cara Menghindarinya!)

Hai teman-teman! 👋 Siapa yang pernah merasa karirnya stuck, gak naik-naik, atau bahkan merasa gak berkembang? 🙋‍♂️ 🙋‍♀️ Saya pernah mengalami hal itu, dan setelah evaluasi, saya menemukan beberapa kesalahan yang sering bikin karir mentok. Tapi tenang, saya juga punya solusinya! Berikut 10 Kesalahan yang Bikin Karir Saya Stuck 10 Tahun (Dan Cara Menghindarinya!): 1. Hanya Fokus pada Tugas Rutin Solusi: Cari peluang untuk proyek baru atau skill baru yang bisa dipelajari. 2. Tidak Punya Mentor atau Role Model Biasanya saat probation kita mendapat senior/atasan yg membimbing kita untuk adaptasi dengan task/pekerjaan kita. Akan tetapi selepas ini biasanya kita sudah dilepas untuk bekerja mandiri. Solusi: Tetap selalu bertanya jika ada kesulitan / sharing pengalaman / ilmu dengan atasan/senior. Jika bisa menjangkau sampai level CEO/direktur akan lebih baik karena dapat memberikan insight untuk perkembangan karir. 3. Gak Pernah Upgrade Skill Meskipun suka mengumpukan tutorial baik dari you...

Google Announces Coding Competitions Farewell

This year, 2023, Google announces the ending of Google Competition (CodeJam) after running it for 20 years. Google CodeJam is the place where young / new software engineer practice their skills to step up into professional engineer. It was very prestige competition since it held by Google, one of the biggest IT company in the world and also comes with interesting prices and opportunities, as we know, from this competition Google also uses it for talents/developers recruitment. But still, there are many coding competition skill you can attend such as: Codechef LeetCode TopCoder GoCoderz CodeGoda by Agoda Those might not giving big prices, perhaps CodeGoda will gives similar type of Google Code Jam since it held by big IT company (Agoda).

install JDK linux

1. download file .sh dari situsnya oracle 2. beri akses executable dengan peritah chmod +x 3. extract ./ 4. Set JAVA_HOME / PATH for all user You need to setup global config in /etc/profile OR /etc/bash.bashrc file for all users: # vi /etc/profile Next setup PATH / JAVA_PATH variables as follows: export PATH=$PATH:/usr/java/jdk1.5.0_07/bin export PATH=$PATH:/usr/java/jdk1.5.0_07/bin Save and close the file. Once again you need to type the following command to activate the path settings immediately: # source /etc/profile