Dell Inspiron Duo Tablet Notebook Running Ubuntu (with Ubermix)

The video shows how cool Dell Inspiron Duo is when running Ubuntu.

This particular demo uses Ubuntu 10.10 (Maverick Meerkat) with Ubermix customization, which contains a collection of application suitable for netbook users.

Ubermix can be downloaded from its official website, please check the Netbook/table model specific instructions for proper installations.

Supported Netbooks

  • Dell Inspiron DUO iD-4495FNT Laptop
  • ASUS EEEPC 900 BK090XNetbooks)
  • ASUS Eee PC 1015PX
  • Dell Inspiron Mini 1018
  •  

    How to get Free Bitcoins from Bitcoin Faucet

    Good news to those who are looking to get their hands on Bitcoins, beside setting up a mining rig, one can get free bitcoin from Bitcoin Faucet, a website dedicated to hand free bitcoin.

    What you need is a Bitcoin receiving address, obtained by registering an account with either MyBitcoin, MTGox, or Vekja.

    Additionally, you may donate your excess bitcoin to the Faucet in order to share it with the rest of the world.

    p/s: Don’t be surprised if the amount you received is minuscule, hey — it’s free !

    How to login into OpenID sites Anonymously

    OpenID is a standard that allows users to be authenticated in a decentralized manner. OpenID enables user to be identified across the internet using a single unified OpenID identifier (or account).

    However some websites (particularly blog and forums) insist users to login in order to leave a short comment or remarks which sometimes is not convenient for some users that value anonymity.

    OpenID Tango

    The OpenID Anonymity service is an OpenID provider that helps you get around website or application that requires OpenID login. To use OpenID Anonymity service, the user only need to key in its URL Identifier – http://openid.anonymity.com/some_random_id and the user will be automatically authenticated, without the need to log-in or to enter password, which is very convenient if one needs to be anonymous.

    Try it!

    p/s: Additionally here’s a collection of Public Domain OpenID (tangofied) icons, created by Jakub Szypulka

    5 things that I look for when getting PHP / MySQL Web Hosting

    1. SSH Access
    Ftp access is not enough anymore as it is insecure (password is being transfered in plaintext). Besides, SSH access enables me to download updates and patch and updates directly inside the web server instead of having to upload it bit-by-bit from FTP server. Normally, some web hosting provider refuses to give SSH access out fear that their security would be compromised, well those providers aren’t for me.

    2. PHP / MySQL release
    Alot of webserver claimed to have the *latest* release of PHP and MySQL running on their webserver but is it true? Not all latest software are good/great, I will always ensure that the one offered by the web hosting is the most suitable for my application need.

    3. Customizable DNS Record (NS)
    A feature noticeably lacking in CPanel (I hate CPanel, with a passion). A customizable DNS record allows you to freely change your domain A, MX and CNAME record to point somewhere else. Sometime the domain registrar (ENOM comes in mind) lets you customize your own DNS Record without web hosting providers help. The ability to change DNS Record is important because it lets you host part of your web application somewhere else like by using Google Apps, etc.

    4. Shared Hosting or Virtual Private Server (VPS)
    Shared Hosting is probably the best choice if you are just starting to learn on how to host your own php/mysql application. Things to look in Shared Webhosting is whether you are within a ‘bad neighborhood’… meaning that whether my website has to share the same server/ip address with notorious spammers as this will affect website reputation. Plus, bad neighborhood is also the main cause for frequent downtime and website slow downs.

    VPS is probably a better choice, but it requires some administrative skills from the site operator (read: you!) side. Things to look for in VPS hosting option is the total RAM and processor slice. If you are hosting a busy website with more than 5000++ unique visitors per day, then do not take a VPS with less than 512MB RAM, because you may find that it won’t cut it. Busy websites require higher RAM, it would also help if you use lighttpd or nginx webserver instead of the resource-hungry Apache. One more thing, when surveying for VPS provider, I will almost certainly look for the one that allows on-the-fly resource resizing or at least offer the option of letting users to re-size resources by themselves.

    5. Mod Security Filters
    This is in case of shared hosting — Mod security in Apache enhances the security of Apache-hosting websites. Although this feature is rarely advertised on the web hosting providers’ site, It is actually one of the most important feature to have, especially if you are going to host high-risk web application. I would prefer one that allow customization in ‘.htaccess’ file.

    That’s it, the FIVE (5) things that I always look for when surverying for web hosting provider. Some of you might notice that I didn’t mention SLA (eg: 100% uptime guarantee or money back guarantee, etc). Well, to me SLA as promised by most Web Hosting provider aren’t even remotely realistic as it is not predictable, and most of the Web Hosting provider (including one that offers VPS) grossly oversell their service, so as a result, most of them fail to meet their own SLA. Don’t get me wrong, I rather host with a provider which have great track record with efficient service.

    Google Friend Connect is back at Mypapit GNU/Linux Blog

    Google Friends Connect (GFC) Widget is finally back at Mypapit GNU/Linux blog sidebar! Users now can elect to follow the blog updates publicly or privately on the GFC widget and can even invite friends to join in together.

    Why not Facebook fan pages?
    While I myself have a Facebook account, I strongly disagree with Facebook move to discontinue the use of certain of their older application API almost abruptly. This gives a bad impression to me that Facebook can suddenly changed their mind about Facebook Platform (the one that powered Facebook Fan Pages) and discontinuing part of the API in the future.

    On the other hand, please Follow my blog for the latest updates!

    How to back up files periodically using rsnapshot and NFS in Ubuntu Linux

    rsnapshot is a utility that uses rsync to synchronize files between two directories. rsnapshot makes it easier for system admin to backup crucial system data files regularly with minimal bandwidth and effort.

    This guide assumes that you’ve already installed nfs-client and rsnapshot via “apt-get” utility in your Debian/Ubuntu Linux system.

    Assumptions:
    The backup server is connected in the same LAN as the main computer. The backup server is mounted as NFS on the main computer, ip address of the backup server is 192.168.1.100.

    Step 1: Create a script to mount backup server filesystem
    This is to ensure that the backup server is available at least hourly (or daily, depending on your requirements), save the file as “mount-backup-server.sh”

    File content:

    #!/usr/bin/bash
    # mount-backup-server.sh
    mount 192.168.1.100:/backup-point/  /media/backup/
    

    Step 2: Ensure the mount script is run hourly

    sudo cp mount-backup-server.sh /etc/cron.hourly
    sudo chmod a+x /etc/cron.hourly/mount-backup-server.sh
    

    Continue reading “How to back up files periodically using rsnapshot and NFS in Ubuntu Linux”