Saturday, April 19, 2014

Viewnior 1.4 deb package for Ubuntu 14.04 ----- 32 and 64bit

UPDATE - Jun 6 2016 - The below is outdated. There are now official builds of viewnior for Ubuntu which can be found here.

https://packages.debian.org/search?keywords=viewnior&searchon=names&suite=all&section=all

---------------------------------------------------------------------------------

Below is the download link you can use to find the pre-compiled Viewnior deb package. I made this deb by using checkinstall.

Enjoy!

Download Viewnior 64bit Here!

Download Viewnior 32bit Here!

Don't trust me? Just want to build Viewnior 1.4 from source for yourself? Follow the directions here but first make sure you install all the dependencies.

  • sudo apt-get install -y libexiv2-dev exiv2 libgtk2.0-dev intltool checkinstall build-essential 

In order to make a deb file yourself, follow the directions found in the link above, however when you reach the step where it says "sudo make install" instead type "sudo checkinstall" and follow the prompts. Afterwards you will find the .deb file in the Viewnior source folder which is located wherever you extracted it. 

Let me know in the comments below if this deb works for the operating system you use, it will make it easier for others as well. 

Wednesday, December 25, 2013

How to set up the Logitech F310 on Ubuntu!

How to set up the Logitech F310 on Ubuntu 13.10, so it actually works!

First things first. Check the back of the controller and make sure the switch is on the "X" position.

After that, plug it into your USB port and open up a terminal. Type in "lsusb" and you should see something like...

  • Bus 003 Device 004: ID 046d:c21d Logitech, Inc. F310 Gamepad [XInput Mode]
If you see the above then your are set to continue reading, if you do not see the above then check the switch on the back of the controller is definitely on the "X" position and re-plug the controller back in until you see the above is listed. You can keep doing lsusb over and over until you finally see the controller has been connected. 

Now you will need a program called "jstest" in order to make sure the controller actually works. Grab jstest by doing the following in a terminal.
  • sudo apt-get install jstest-gtk

Open up "jstest" and see if your controller is listed. If it looks like the pic below then you are all set! Chances are it will be empty, in which case don't worry, keep reading. 


If the controller isn't being recognized then all you have to do is enter the following into a terminal.
  • sudo modprobe xpad

Then fire up "jstest" again and see if your controller is there! It should be. 

To make this fix stick after a reboot you will need to edit a file. Simple copy and paste this into your terminal.
  • sudo gedit /etc/modules 
and type in "xpad" without  the quotes at the bottom of the document and save it. It should look like this when finished. 



Congratulations! You can now start using your controller with what you wanted it for! I use it for the pcsx emulator and find that it works great after I properly set up the buttons/controls via pcsx's controller plugin page. Make sure if using pcsx that you click the "device" box and choose "generic x-box pad". 


Wednesday, December 18, 2013

Fix Compiz refresh rate on Ubuntu!

Straight to the point, all you need to do is these three things... make two new "startup applications" and put this in the first one;


  •  sh -c "sleep 10 && dconf write /org/compiz/profiles/Default/plugins/composite/refresh-rate  "60"  &"

And this in the second one;


  •  sh -c "sleep 10 && dconf write /org/compiz/profiles/unity/plugins/composite/refresh-rate "60" &"

Then install the package "dconf-editor", you can do it in a terminal by;

  • sudo apt-get install -y dconf-editor  


Finally no more tearing on gnome classic! 

Just a note, if your refresh rate is higher/lower than 60 then please adjust the number in the code above. This has been tested on Ubuntu 13.10 using the gnome-fallback session 

Here is a picture showing you how the startup application box should look.