Archive

Archive for August, 2012

membuat shortcut aplikasi untuk membuka nautilus dengan akses root di ubuntu

sebenarnya cukup buka terminal terus ketik sudo nautilus untuk mendapatkan nautilus dengan aksess root. tapi akan merepotkan kalo harus sering-sering kayak gitu.

kenapa akses root? terkadang kita membutuhkannya untuk melakukan copy-paste, atau mendelete file.

langsung saja.

buka terminal, kemudian ketikkan:

sudo nano /usr/share/applications/Nautilus-root.desktop

Read more…

Categories: Ubuntu

wamp

WAMPs are packages of independently-created programs installed on computers that use a Microsoft Windows operating system.

WAMP is an acronym formed from the initials of the operating system Microsoft Windows and the principal components of the package: Apache, MySQL and one of PHP, Perl or Python. Apache is a web server. MySQL is an open-source database. PHP is a scripting language that can manipulate information held in a database and generate web pages dynamically each time content is requested by a browser. Other programs may also be included in a package, such as phpMyAdmin which provides a graphical user interface for the MySQL database manager, or the alternative scripting languages Python or Perl. Equivalent packages are MAMP (for the Apple Mac) and LAMP (for the Linux operating system).

WampServer’s functionalities are very complete and easy to use so we won’t explain here how to use them.

With a left click on WampServer’s icon, you will be able to:

  • manage your Apache and MySQL services
  • switch online/offline (give access to everyone or only localhost)
  • install and switch Apache, MySQL and PHP releases
  • manage your servers settings
  • access your logs
  • access your settings files
  • create alias

With a right click :

  • change WampServer’s menu language
  • access this page

bisa di download disini

 

Categories: Software

menambahkan XAMPP control panel GUI di Ubuntu 12.04

1. Sebelumnya instal python-glade2 untuk XAMPP control panel. buka terminal, kemudian ketikkan:

sudo apt-get install python-glade2

2. Buat file dengan nama XAMPP-Control-Panel.desktop di /usr/share/applications/ kemudian masukkan:

[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=XAMPP Control Panel
GenericName=Control Panel
Comment=XAMPP Control Panel
Exec=gksudo "/opt/lampp/share/xampp-control-panel/xampp-control-panel"
Icon=/opt/lampp/htdocs/favicon.ico
StartupNotify=true
StartupWMClass="xampp-control-panel.py"
Terminal=false
Type=Application
Categories=Developer;

3. Begini tampilannya:

Categories: Ubuntu

install xampp di ubuntu 12.04

1. Download xampp terbaru di sini.

2. Setelah download, pindahkan file xampp tersebut ke direktori Home

3. Buka terminal, lalu ketikkan :

sudo su

4. Ekstrak xampp ke direktori /opt, dengan cara mengetikkan :

tar xvfz xampp-linux-1.8.0.tar.gz -C /opt

(sesuaikan dengan versi xampp yg akan anda ekstrak, disini saya menggunakan versi 1.8.0)

5. Tunggu hingga selesai. untuk menjalankannya, buka terminal kemudian ketikkan :

/opt/lampp/lampp start

6. Untuk mengetesnya, buka browser anda kemudian ketikkan : localhost

7. Untuk menghentikannya, buka terminal, kemudian ketikkan:

/opt/lampp/lampp stop  Read more…

Categories: Ubuntu