Featured Posts

Sky Go Android App released It certainly has been a long time coming and even though it comes with strings, Sky's "Sky Go" app has finally been released for Android. Don't get too excited just yet though. Sky Go will only work on supported Android devices running 2.2x and 2.3x. Not only that but to "ensure that our rights contracts are fully upheld we are also unable to support any Android devices...

Read more

Asus Transformer TF101 not charging, SOLVED!Asus Transformer TF101 not charging, SOLVED! I purchased an ASUS Transformer TF101 a few months ago and I have been very happy with it. That was until recently. When I plugged it in it would no longer charge. I read on multiple forums that this was a common issue for Transformer owners and some fixes included putting the transformer plug into the freezer to cool it down and also to bend the pins slightly to try to...

Read more

Google’s response to Siri is codenamed Majel, could... Interesting. I've not tried Siri nor do I know anyone that has an iPhone 4GS that can give me reports on it. By all accounts it's the dogs nutsack so hopefully this app will be just as good. Google’s response to Siri is codenamed Majel, could be released by end of year | Android and Me.

Read more

Carrier IQ: How the Widespread Rootkit Can Track Everything on Your Phone, and How to Remove ItCarrier IQ: How the Widespread Rootkit Can Track Everything... This post is especially for the paranoid amongst us. Recently an Android Developer discovered a rootkit called Carrier IQ that is capable of logging everything you do and worst of all it comes pre-installed on almost all smartphones, including Android, iPhone and Blackberry. Click on the link below for more information Carrier IQ: How the Widespread Rootkit Can Track...

Read more

SSH Tunnel - keeping you safe onlineSSH Tunnel - keeping you safe online I own a HTC Desire HD and I find it extremely handy when it comes to banking online or checking out my social networks. With the emergence of software such as Firesheep and Faceniff I feel that mobile security is more paramount than ever. This is where SSH Tunnel comes in. SSH Tunnel allows you to connect to a secure SSH (secure shell) server and pipe all your internet...

Read more

How to add an additional local disk to your XenServer 5.5 host « XenDesktopMaster

Category : LAN, Linux

On the XenServer CLI you have to list your physical disk with fdisk.

fdisk -l

Disk /dev/sda: 250.0 GB, 250059350016 bytes

255 heads, 63 sectors/track, 30401 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System

/dev/sda1 * 1 499 4008186 83 Linux

/dev/sda2 500 998 4008217+ 83 Linux

/dev/sda3 999 30401 236179597+ 83 Linux

Disk /dev/sdb: 250.0 GB, 250059350016 bytes

255 heads, 63 sectors/track, 30401 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Disk /dev/sdb doesn’t contain a valid partition table

There you can see your new hard drive. In my case it shows up as /dev/sdb. For integrating the hard disk into your XenServer you first have to reveal the UUID of your host. This is done by the following command.

xe host-list

uuid ( RO) : ba3d140c-3de5-499b-b831-7c40d82958a9

name-label ( RW): xs-tarenz01

name-description ( RO): Default install of XenServer

The last step is to create a new XenServer storage repository. You have three options for doing so.

First option: create a normal LVHD storage repository. This is by the way the default storage repository type.

xe sr-create host-uuid=ba3d140c-3de5-499b-b831-7c40d82958a9 content-type=user type=lvm device-config:device=/dev/sdb shared=false name-label=”Local storage 2″

via How to add an additional local disk to your XenServer 5.5 host « XenDesktopMaster.

Install LAMP with 1 command in Ubuntu 10.10 and 11.04

Category : Linux

Open terminal and Type the command

sudo apt-get install tasksel

Now to install LAMP, type the taskel command in terminal :

sudo tasksel

And select LAMP Server. Then follow the on screen instructions to enter MySQL password etc.

 

Use Google Chromium to display PDF

Category : Chrome, Chromium, DIY, Linux

I love Ubuntu and also Google Chromium web brwoser but one thing that annoyed me was the fact that you could not view PDF documents from within the browser. Instead these documents had to be downloaded and opened with a PDF reader. I scoured the interweb and found a solution.

Download the file libpdf.so and follow the instructions below to install it. Once you have copied the file to the folder restart Chromium and you should find that you can view PDF’s from within your browser.

Copy the above file to /usr/lib/chromium-browser/ You may need to run a root nautilus window for this. Press ALT+F2 and type gksu nautilus /usr/lib/chromium-browser/ minus the apostrophes.

via Use Google Chromium to display PDF documents

How to bypass a restrictive firewall using a ssh tunnel

Category : DIY, General, Internet, LAN, Linux

If you are at work or school and you are trapped behind a strict firewall then why not create a tunnel to your home computer and route all the traffic through that tunnel giving you unrestricted internet access.

All these directions are based on using a Linux based computer. I’m sure it can be done in Windows too I just haven’t tried it.

This post describes how to ssh to a personal server using authenticated proxy. SSH (Secure Shell) is typically used to log into a remote machine and execute commands, but it also supports tunneling, forwarding TCP ports and X11 connections; it can transfer files using the associated SFTP or SCP protocols.

Normally we use NetCat to ssh outside using proxy server but if its not support proxy user / pass to authenticate by proxy server and then ssh outside. Here we will use a package called connect.c.

connect.c is the simple relaying command to make network connection via SOCKS and https proxy. It is mainly intended to be used as proxy command of OpenSSH. You can make SSH session beyond the firewall with this command.

This can be achieved by other methods too but this works for me.

1) Download connect.c software.

wget http://www.meadowy.org/~gotoh/ssh/connect.c

2) Compile connect.c Using GCC

gcc connect.c -o connect

and then copy to directory in your PATH i.e /usr/bin or /usr/local/bin

cp connect /usr/bin

3) Congiure ssh_config

append following line

ProxyCommand /usr/bin/connect -H proxy.yourserver.com:8080 %h %p

4) Export Proxy User / Pass as variable

It is insecure but we have to used it. If your proxy doesnt use user/pass for authenticatio, you can skip this.

export HTTP_PROXY_USER=your_username
export HTTP_PROXY_PASSWORD=your_password

Thats it now you can ssh outside without any restriction :)

 

Controlling Web Access with Squid

Category : DIY, LAN, Linux

 

 

 

 

 

An in depth article on setting up SQUID to control web access on your network.

Quick HOWTO : Ch32 : Controlling Web Access with Squid – Linux Home Networking.

Linux add a swap file howto

Category : Linux

Nice article on adding a swap file to Linux.

Linux add a swap file howto.