Tampilkan postingan dengan label Install. Tampilkan semua postingan
Tampilkan postingan dengan label Install. Tampilkan semua postingan
Minggu, 07 Oktober 2012

Instal Modem Venus Fast2 dan Huawei E1550/E153 di Ubuntu 12.04


Gausah pake lama-lama, langsung aja simak cara berikut untuk install modem Venus Fast2 dan Huawei E153/1550 di Ubuntu 12.04 LTS


Penampakan modem huawei

1. Buka terminal dan ketikkan perintah berikut :


VENUS:
sudo gedit /lib/udev/rules.d/76-venus.rules  > save

HUAWEI:
sudo gedit /lib/udev/rules.d/76-huawei.rules > save


Kemudian kopikan skrip ini kedalamnya :


VENUS:
ATTRS{idVendor}=="05c6", ATTRS{idProduct}=="1000", RUN+="/usr/bin/eject %k"

HUAWEI:
ATTRS{idVendor}=="12d1", ATTRS{idProduct}=="1446", RUN+="/usr/bin/eject %k"

Save lalu tutup file.                                                        

2. Buka terminal lagi dan edit file /etc/modules : 

sudo gedit /etc/modules

Ketikkan 2 skrip ini di baris paling bawah :


VENUS:
usbserial vendor=0x19f5 product=0x9909

HUAWEI
usbserial vendor=0x12d1 product=0x14ac

Save dan tutup filenya.

3. Reboot komputer.

Sekarang coba colok modem tersebut, tunggu beberapa saat nanti pasti langsung terdeteksi sebagai modem. Nah, setelah itu terserah mau kalian koneksikan menggunakan network manager atau wvdial, keduanya sama-sama bisa.
Sabtu, 29 September 2012

Install Apache, PHP, MYSQL and phpMyAdmin di Ubuntu


I will show the command and configuration to install Apache, PHP, MYSQL and phpMyAdmin in Ubuntu
1. Installing  Apache
  • Open your terminal and type the bellow command
       #sudo apt-get install apache2
install_apache
  • It will ask for your password, Type your ubuntu password and press  enter key, it will ask for confirmation
confirm_install
  • Type y and press enter key
  • When installation is done, open your browser and type   http://localhost/
  • I will print it works into the browser
2. Installing PHP
  • Open your terminal and type the bellow command
        #sudo apt-get install php5 libapache2-mod-php5
install_php
  • It will ask for your password, Type your ubuntu password and press  enter key, it will ask for confirmation
confirm_install
  • Type y and press enter key
  • After the successful installation restart Apache using the below command
        #sudo /etc/init.d/apache2 restart
  • Open your  /var/www/ directory  and create a php file  with any name like info.php file, write some php code into the file
test_php_and_apache
  • When installation is done and you have to created the php file into the /var/www/ directory, open your browser and type
  • It will   execute the file, which confirm that your apache and php installation was successful
3.  Installing MYSQL
  • Open your terminal and type the bellow command
         #sudo apt-get install mysql-server
install_mysql
  • It will ask for your password, Type your ubuntu password and press  enter key, it will ask for confirmation
confirm_install
  • Type y and press enter key
  • During the installation you will be prompted for a password. Choose a secure and type the password and press enter. It will also ask to re enter password
set_mysql_password
4. Installing phpMyAdmin
  • Open your terminal and type the bellow command
        #sudo apt-get install phpmyadmin
install_phpmyadmin
  • It will ask for your password, Type your ubuntu password and press  enter key, it will ask for confirmation
confirm_install
  • Type y and press enter key
  • During the installation you will be prompted for a web server configuration. Select Apache and press Enter
select_web_server_for_phpmyadmin
  • Now you will be prompted for phpmyadmin configuration, Select no
phpmyadmin_config_option
  • In terminal Run the bellow command
          #sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d
  • Restart your apache server
         #sudo /etc/init.d/apache2 restart
  • Open your browser and type
Your Apache, PHP, MYSQL and phpMyAdmin is ready in Ubuntu, start your coding…..