Tag Archives: ubuntu

Install BBM di Laptop (ubuntu)

http://hptekno.com/2013/10/23/install-bbm-di-laptop-ubuntu/   Install BBM di Laptop (ubuntu) Oct. 23 Android, Aplikasi, Slider, tutorial 11 comments Baru bangun tidur udah dikejutkan dengan berita BBM di android, saking penasaranya dan karena ane kaga punya HH yang support BBM, akhirnya coba pake emulator dan berhasil. begini langkah-langkah  yang ane lakuin: 1. Instal emulator untuk Android, dalam artikel ini kami mengunakan emulator dari Google. Cara instalasinya seperti di sini (ubuntu) dan di sini (windows), perlu diingat bahwa BBM berjalan pada OS 4 ke atas dan mengunakan prosesor ARM7. 2. Buka avd yang telah anda

Setup L300, in Ubuntu 12.04

http://ubuntu-indonesia.com/forums/ubbthreads.php/topics/127486/install_print_epson_L200_dan_L   Use this manual: Jike ketemu masalah dependesi saat install *.deb dalam link tsb di atas, coba anda simak link ini = https://wiki.linuxfoundation.org/en/OpenPrinting/Database/DriverPackages download RPM package. Dalam kasus ini, saya menggunakan epson-inkjet-printer-201207w-1.0.0-1lsb3.2.src.rpm untuk ubuntu server 12.04 (cups-samba) lanjutkan dengan = Code: ~#alien -ck epson-inkjet-printer-201207w-1.0.0-1lsb3.2.src.rpm epson-inkjet-printer-201207w_1.0.0-1lsb3.2_amd64.deb generated ~#dpkg -i *.deb masuk ke webGUI CUPS untuk adding printer dan pilih Driver: Epson L300 Series – epson-inkjet-printer 1.0.0-1lsb3.2 (Seiko Epson Corporation LSB 3.2) Jika menghendaki file *.ppd bisa anda dapatkan pada dir “/usr/share/ppd/epson-inkjet-printer-201207w/Epson” dan ‘/etc/cups/ppd” Hasilnya

How To Set Up ProFTPD on Ubuntu 12.04

https://www.digitalocean.com/community/articles/how-to-set-up-proftpd-on-ubuntu-12-04 How To Set Up ProFTPD on Ubuntu 12.04 inShare About ProFTP ProFTPD is a popular ftp server. Because it was written as a powerful and configurable program, it is not necessarily the lightest ftp server available for virtual servers. Step One—Install ProFTP You can quickly install ProFTP on your VPS in the command line: sudo apt-get install proftpd While the file is installing, you will be given the choice to run your VPS as an inetd or standalone server.

How to install webmin on ubuntu 12.04 (Precise) server

www.ubuntugeek.com/how-to-install-webmin-on-ubuntu-12-04-precise-server.html How to install webmin on ubuntu 12.04 (Precise) server May 23, 2012 · Server · Email This Post Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Webmin removes the need to manually edit Unix configuration files like /etc/passwd, and lets you manage a system from the console or remotely. We have already discussed how to install ubuntu 12.04 LAMP server

Controlling LIRC From the Web

http://alexba.in/blog/2013/02/23/controlling-lirc-from-the-web/ Controlling LIRC From the Web FEB 23RD, 2013 | COMMENTS In this post I will cover how to create a web interface + API for LIRC, the Linux Infrared Remote Control project. I will be using NodeJS and a RaspberryPi in this post, but the ideas generalize to other languages and hardware. This post will serve as Part 3 of my open source universal remote project posts. If you haven’t had an opportunity to read the first two posts, I suggest checking

Raspberry Pi + Dropbox Sync

http://cttoronto.com/03/16/2013/raspberry-pi-dropbox-sync/ March 16, 2013 by Marc Pelland For Pi Day, we decided that it would be fun if we built a system that would auto-post photos from the Raspberry Pi to our Facebook and Twitter accounts.  We knew that it would be easier to just run all of it from the computer that was running the game, but this seemed like a good opportunity to learn something about the Raspberry Pi.  As a result, we setup a system that would save images from the webcams in Flash to

Python Joystick Test

  Instalasi & Testing Koneksi Joystick   import pygame as p p.init() stick = p.joystick.Joystick(0) stick.init() print(“initialized:”,bool(stick.get_init())) print(stick.get_name()) while stick.get_axis(0)*100 < 399: print(round(stick.get_axis(0)*100)) #need for right detection otherwise stick.get_axis always returns 0 for event in p.event.get(): None p.quit()