Out Here In The Field : Boost


Logitech unifying receiver on Ubuntu
May 27, 2012, 22:18
Filed under: Ubuntu | Tags:

So, I happened to umm…  own both the Logitech Performance MX, and the sleek Anywhere MX, both supporting Logitech Unifying receivers. Meaning a single usb receiver can be used to connect more multiple Logitech peripherals at once. To do that, Logitech has provided Windows and Mac users with the Logitech Unifying software.

Unifying receiver for Anywhere MX

Linux? Not so much.

Anyway, Benjamin Tissoires posted a program that we can compile and use to connect an existing usb receiver to additional logitech stuff. First, get the script here. Put it in a directory, let say /opt/unify, then compile the program

ikhsan@Mach5-NX:/opt/unify$ gcc -o pairing_tool pairing_tool.c

Next, we need to find out which hidraw device represents the unifying receiver. Unplug and replug the receiver, and type:

ikhsan@Mach5-NX:/opt/unify$ dmesg

You should see messages such as these:


[18675.906824] generic-usb 0003:046D:C52B.000F: hiddev99,hidraw8: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.6/input2

Unfortunately, it seems that, all of hidraw devices in my box (0 to 8) belong to the receiver, so I ended up trying each of them one by one. To start connecting, do this:

ikhsan@Mach5-NX:/dev$ sudo /opt/unify/pairing /dev/hidrawx

Where x is the number of hidraw device that belong to the receiver, in my case, it’s hidraw2. You should see this message:

The receiver is ready to pair a new device.
Switch your device on to pair it.

Turn on the new device, and it will be ready for use.



Ubuntu 12.04 Precise Pangolin Beta 2 on Vaio VPCEA36FG
April 15, 2012, 11:51
Filed under: *Nix, Ubuntu | Tags: , , , , , , , , , ,

Well, as you may know, my current ubuntu install, maverick meerkat will no longer be supported by Canonical, starting April 10th 2012… which sucks, since my attempts to like 11.xx version of ubuntu have been hindered by how sucky Unity and Gnome-Shell are, and foremostly, how kernel 2.6.8x to 3.x slash my battery life in half. I have also tried various versions of Mint, but nothing stick so far, and did not bother with suse and fedora.

Obviously, I have to inevitably pick something up, or stay on maverick sans security patches. Coincidently, Canonical has just released the 2nd beta for Ubuntu 12.04, Precise Pangolin with linux kernel 3.2 that supposedly fix the power management problem. So, here goes nothing!

Installation

Installation went okay, and I was greeted by the beautiful and aptly named Unity-Greeter login screen. Precise picked  up every single devices on the 36FG, including the multitouch touchpad. Very nice. My USB SB X-Fi 5.1 sound card is also supported out of the box. Just make sure that on Sound Setting, output tab, The X-Fi 5.1 is highlighted, and on hardware tab “Analog Surround 5.1 output” is selected

However, installing ATI binary driver turned out to be not as straight forward as other task. The restricted driver window shows two entries for ATI binary driver, with one labeled as post-release updates. I assume this one is the most update compared to the other. Pressing “activate” will start the download process, which will then stop and points me to look at /var/log/jockey.log to look for error messages. I didn’t bother with that, and proceed to download the driver directly from AMD

10 minutes later, the graphic chip is up and running with the latest driver from AMD.

Out with Unity, in with Gnome-Shell

After 30 minutes fussing with Unity, I can confirm myself that I really really really don’t like Unity. I then proceed to install Gnome-Shell. The installation is quite straight forward:

ikhsan@Mach5-NX-0:~$ sudo apt-get install gnome-shell gconf-editor gnome-tweak-tool

Next, log out, click on the litle “ubuntu logo on the top right of your name, select Gnome, and log back in. Now you’re on Gnome-Shell :)

Gnome it is!

I’m gonna make a separate post for what I did to my Gnome-Shell install, to make it bearable :D

What works and what don’ts

Well, I can happily says that battery life is now showing approximately 3 hours when fully charged, hibernate and wake up works. Switching from plugged in to battery oddly did not drop the brightness level of the screen, so you need to dim the screen manually to conserve power.

Multiple display is well .. a mess :D My 36FG is connected to a Samsung LCD tv with maximum resolution of 1920 x 1080. If you’re using the same hardware that I use, make sure that you set your display up using the Catalyst Control Center, as using the “display” app on Gnome froze my desktop. Also if you happened to encounter a desktop crash after mucking your display setting, and Gnome-Shell refuses to start after that, just log on to unity, and do:

ikhsan@Mach5-NX-0:~$ sudo aticonfig --initial -f

Log back in to Gnome-Shell, and start over. Another thing to note is that at least for HDMI, sometime, connecting the second monitor after you log in may also crash the desktop. This is with HDMI, and I haven’t tried this with the VGA connector

Conclusion

I have pretty mixed feelings about Ubuntu and Gnome-Shell. Yes it is beta, and I hope there will be significant improvements on the release version. As for now, I’m gonna keep my maverick install just a tad longer, until everything sorted out on Precise.



sending & receiving apk files on android devices via bluetooth
February 25, 2012, 10:32
Filed under: android, Go Go Gadget..Stuff!!, Ubuntu | Tags: , , ,

As you may have realized, your android device will block certain file to be transfered via bluetooth, namely the apk files. You can send them via usb storage file transfer,  via wifi with airdroid or Samsung’s Kies, but nope, no bluetooth.

But what if bluetooth is the only thing that available to you? Well, there are several ways to do that:

Bluetooth File Transfer

You can get this app on the market. It’s free and ad supported, works very well with all of my android devices except the Galaxy Nexus. It uses the OBEX FTP profile and enable you to send and receive any files with your phone.  It will also let you browse, explore, transfer and manage files of any paired bluetooth devices.

Zip it

Simply store the apks on a zip file. On a ubuntu box, simply select “send packed in” on the transfer dialog window, and select “.zip” as the format, and send it

"it was send packed.."

If you’re sending the file from another android device, you can use apps like ES File Explorer to store the apks in zip format, and send them via bluetooth like any other file. Just long press on the apk file, and select compress from the pop-up menu, then long press on the resulting zip file, select share, choose bluetooth as the method, and off you go :)

compress and send



Unmounting while “device is busy”
December 4, 2011, 07:36
Filed under: *Nix, Red Hat, Ubuntu | Tags: , , , ,

So, one of these days, you will find yourself wanting to unmount a partition on your linux box. Problem is, most of the time, the partition is most likely still being used by some process, or by someone. So first, you need to find out which processes are keeping the drive busy, by:



root@Mach5-NX:~# fuser -m /media/prison
/media/prison__:      3196c  3285c
root@Mach5-NX:~# ps -ef | grep 3285
ikhsan    3285  3196  0 07:07 pts/1    00:00:00 vi lgf.conf

With that information in hand, you can start shutting down services, or killing the process that’s preventing you from unmounting the partititon:

root@Mach5-NX:~# kill 3285

Repeat the step above for each process listed on the previous command.

Or, if you’re feeling nasty, you can always kill all the process that’s using the partition, by issuing:

root@Mach5-NX:~# fuser -km /media/prison
/media/prison__:      3350c  3437c

Unmount the drive normally

root@Mach5-NX:~# umount /media/prison

…And we’re done :)



11:11:11 11/11/11
November 12, 2011, 09:52
Filed under: Ubuntu



Humble Bundle Frozen Synapse
September 29, 2011, 09:39
Filed under: *Nix, gaming, Ubuntu | Tags: , ,

The Humble Bundle has released their newest Bundle. The Humble Frozen Synapse Bundle. Well Technically it isn’t a bundle since there is only one game, Frozen Synapse. But, if you pay more than the average (which is USD4.5) You will also receive the Humble Frozenbyte Bundle which includes Trine, Shadowgrounds, Shadowgrounds: Survivor, Splot, and Jack Claw.

I think I’m gonna skip this one, since I already have the Frozenbyte bundle, and Frozen Synapse.. well.. doesn’t excite me.



Surround sound on Ubuntu Maverick Meerkat, with Creative SB X-Fi 5.1 Surround Pro and Logitech Z506
August 24, 2011, 21:18
Filed under: *Nix, Ubuntu, time out | Tags: , , , , , , , ,

So I decided to spend my Ied bonus to beef up my PC audio setup. To do this, I need:

  • At least 5.1 capable sound card. Since I’m going to hook this up on my Vaio, VPCEA36FG, USB connectivity is a must
  • A 5.1 speaker set, analog or digital

After a bit of googling and browsing, I have two choices for sound card. The first one is Creative Sound Blaster X-Fi 5.1 Surround Pro, and the second one is a cheap C-Media 5.1 external sound card. I heard much success with the later, while installing the former might require me to ditch Pulse Audio, updating ALSA, etc etc. Also I can’t find a single forum post regarding the X-Fi and Maverick. There are a lot of posts about the X-Fi with Jaunty or Lucid, but no Maverick.

Anyway, finding shops or stores that sell the C-Media or the X-Fi card turned out to be quite a task. The X-Fi has not been in stock for quite sometime, and my search for the C-Media on every local brick and mortar and online shops in Indonesia, came out with empty. At the end, I asked a friend to get me the C-Media via dealextreme.com (since I don’t own a credit card)

Next, the speakers. There are several choices available on my price range from Creative, Edifier and Logitech, and I went with Logitech Z506. It’s cheap and quite easy to setup, and has a very decent sound output for the price. Plus, it support multiple inputs, so I can hook up the 36GF and my TV at the same time. Luckily, during my speaker hunt, I found one shop that carry the X-Fi 5.1!

Setting up the Logitech Z506 is very easy and straight forward, since everything is color coded. The Z506 can accept sound input via 2 RCA connector or from 1 (for stereo) or 3 (for analog 5.1 Surround) audio jacks from a sound card. Connecting the front audio jack to the 36FG internal sound card produced stereo output from all of the satellites, so everything is working. Next, surround sound

The X-Fi SP 5.1 connects and draws power via USB, so you need to plug it directly to the notebook, or like me, hook it to a powered USB hub ( mine is a Roccat Apuri). The X-Fi should be automatically detected by Maverick, you can check it by typing “lsusb”

ikhsan@Mach5-NX:~$ lsusb 
Bus 002 Device 118: ID 046d:c52b Logitech, Inc. Unifying Receiver 
Bus 002 Device 117: ID 1058:1102 Western Digital Technologies, Inc. 
Bus 002 Device 116: ID 041e:30df Creative Technology, Ltd 
Bus 002 Device 115: ID 05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB 
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 
Bus 001 Device 004: ID 0489:e00f Foxconn / Hon Hai 
Bus 001 Device 003: ID 0c45:6409 Microdia 
Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

or go to System > Preferences > Sound, and open the “hardware” tab. The X-Fi is listed, but on the profile dropdown menu, you will see that no profile for 5.1 sound is available… yet.

Sound Preferences

To make things easier, install the Pulseaudio Volume Control by opening terminal, and do:

ikhsan@Mach5-NX:~$ sudo apt-get install pavucontrol

Next, edit the /etc/pulse/daemon.conf

ikhsan@Mach5-NX:~$ sudo nano /etc/pulse/daemon.conf

Find “; default-sample-channels = 2″ and change it to “; default-sample-channels = 6″, save, and restart Pulseaudio. Open the “pavucontrol” by pressing Alt+F2, and type “pavucontrol”. On the configuration tab, select “Analog Surround 5.1 Output + Analog Stereo Input” for the X-Fi profile. You can also do this via Sound Preferences.

5.1 Surround profile for X-Fi

..Next, connecting the X-Fi to the Z506. This is straight forward, as everything is color coded. Connect all of the three audio jacks from the Z506 to its corresponding port on the X-Fi. Now to test the 5.1 output, open System > Preferences > Sound, select the hardware tab, select the X-Fi from the list, make sure the 5.1 Surround profile is selected, and then press the “Test Speakers” button. Press each “test” button to test all of the speaker components

Speakers test

..And done. To set the X-Fi as the default sound output, go to System > Preferences > Sound, and select the X-Fi on the output tab.

Default output

To individually set the output level of the satellites and the sub, open “pavucontrol”, and find the X-Fi entry on the “Output Devices” tab

Output level

Next on the list is to try some 5.1 encoded videos. I’ll report back as soon as I’m done! :)



Cannot boot Virtualbox VM: Start tag expected, ‘<’ not found
August 23, 2011, 10:48
Filed under: Ubuntu | Tags: , ,

So one day, my Windows 7 VM failed to boot, and the virtualbox console throw me this error:

Start tag expected, '<' not found.
Location: '/home/ikhsan/VirtualBox VMs/itiay-win7/itiay-win7.vbox', line 1 (0), column 1.
/home/vbox/vbox-4.0.4/src/VBox/Main/src-server/MachineImpl.cpp[679] (nsresult Machine::registeredInit()).
Result Code: NS_ERROR_FAILURE (0x80004005)
Component: VirtualBox
Interface: IVirtualBox {d2de270c-1d4b-4c9e-843f-bbb9b47269ff}

It seems that during a recent restart, the .vbox configuration file for the corresponding vm was screwed. Luckily the virtual hardisk file (.vdi) was still intact, and I was able to recover the data from the damaged VM by creating a new VM, and point the new VM to use the old .vdi from the previous VM.



Grub 2: Change default OS to boot to
August 21, 2011, 04:57
Filed under: Ubuntu

This is fairly a simple task.

First, on your grub screen, locate the entry that you want to setup as the default choice. In my case, it was my Maverick install, located at 7 from the top.

Next, open the /boot/grub/grub.cfg,

ikhsan@Mach5-NX:/$ sudo nano /boot/grub/grub.cfg

Find the line that says set default=”0″ , change it to set default=”7″  or whatever the correct number on your system is

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
set default="7"

…and then reboot.


	
	

Ubuntu 11.04 Natty Narwhal. On Unity and Gnome-shell
August 3, 2011, 01:19
Filed under: *Nix, Ubuntu | Tags: , , , , , , , ,

So I screwed up my maverick install, and had to start from scratch. The problem is, I didn’t have the CD (and the .ISO file) with me, and due to electricity problem, my attempt at downloading the image stopped when it reached 80%. ARGH! . And to make it worse, I need to bring the laptop with me to work the next day, so I had to fix it that night

So I look around my drives, and found an .ISO for Natty. I was planning to skip Natty, since the review for Unity is so bad, and Maverick provides everything that I need. But It can’t be helped. So burned the .ISO to a DVD, and away I.. went.

Anyway, on my fairly-specced VPCEA36FG, Natty installed smoothly. Everything is automatically detected and just work. And to my surprise, hibernate works perfectly. On the negative side, operating feels a bit sluggish and everything seems so slow. And I just can’t stand Unity. I can’t stand that the launcher bar hides and reveals ever so slowly, and sometimes refuses to show at all. I can’t stand how it stutters when shifting between workspaces, and I can’t stand Firefox needing a full 5 seconds to launch. To sum up:

Improvement from Maverick:

  • All of the VPCEA36FG peripherals are detected
  • Hibernate works perfectly
  • …that’s about it

What I hate:

  • Unity sucks. Or maybe require more that a lil bit of getting used to
  • Slow. Frustratingly slow
  • Battery life down from more than 3 hours to over one and a half hours. I managed to bump it to a little over 2 hour by installing laptop-mode-tools package (which remove acpi-support and pm-utils) from Synaptics
  • It seems that the laptop run hotter that it used to. The fans are almost always active
  • Lot’s of tool that I use extensively on Gnome2 such as the global proxy setting tool are missing

So, finally, I was able to restore my Maverick install, but then decided to keep Natty to toy around. Since I hate Unity,  and since Gnome 2 will stop receiving updates, I think it’s time for me to explore the alternatives. My first choice went to Gnome 3′s Gnome Shell.

Equally despised just like Unity, I’ve read a lot of bad things about the dumbed down interface of Gnome-shell. To my surprise, I quite like it. Yes, it’s not as versatile as Gnome2, but it has it’s own charm. One major problem though. Currently Gnome-Shell does not work with FGLRX, so I need to use the open source ati drivers, which admirably works quite well for Google Earth and a few 2D games that I throw at it.

Gnome-Shell's Activites

Gnome-Shell's Calendar

I like how everything seems to work together and behave in similar manner. It didn’t feel like someone took desktop components from here and there and created a mash-up. Yes, currently it lacks a proper configuration tool like Emerald theme manager or CCSM, but that didn’t keep some people from making customization in the form of Gnome-Shell extensions.

I think I’m going to keep Gnome-Shell for a while, and went to XFCE next.




Follow

Get every new post delivered to your Inbox.

Join 104 other followers