Monthly Archives: July 2015

Debian Start network

Start network after reboot Based on my configuration, after booting the linux machine it doesn’t automatically start the network manager and establish internet connection. I used to do /etc/init.d/network restart the above command doesn’t do anything my /etc/network/interfaces file looks like this auto lo iface lo inet loopback iface eth0 inet dhcp iface eth1 inet […]

Posted in Uncategorized

Note 4 unlock screen

Type in this code in the dialpad #7465625*638*# Then it will ask for the code that you purchased from somebody else.

Posted in Uncategorized

Automate Git Bash

Connect to Linux machine How to connect to a linux machine from a git bash terminal on Windows 7 machine. Git bash is already a batch command executed from the dos command prompt. So if you want to execute a linux shell script such as “connect_to_jc.sh” , then you need to create a batch file […]

Posted in Uncategorized

SFTP & SCP

SCP Git Bash has scp but not sftp. $scp -i <identity_file_name> -P <port_number> ./201* user_name@hot_name:<destination_directory> Now i can upload all the files that start with 201, and as long as i’m in the same folder where the files are. SFTP It is very easy to perform upload and download files once we get into the […]

Posted in SFTP