I tried to get a screen shot from Motorolla RAZR and HTC Desire on Linux Mint 12. In previous version of this OS, this operation past without any problems. But this time I got and error “DDMS: insufficient permissions for device” solution was found in the article [SOLVED] Taking screenshots of android 1. get Vendor… Continue reading DDMS: insufficient permissions for device
Tag: linux
rsync and ssh mirroring
To make mirror copy of your directory on remote Linux/Unix box is very simple with rsync and ssh. Just run the command line: $ rsync –progress –delete -ae ssh user@remote.server:/remote/storage /local/storage Note: rsync doesn’t create missing directories, so make sure, your directory exists.
Chrome installation on Linux Mint 12 still beats visits records
In December 2011, I posted funny information about popularity of the post how to install Google Chrome to Linux Mint 12. I analyzed statistics for last 3 months and it turned out to be that search patterns are still the same and even more – it grows.
Browsers and OS statistics from various sites.
Working as a web developer, I often meet with a difficult choice, what set of browsers to support for definite site. Google analytics gives a very good possibility to make this consideration simple.
Bash script to resize images
To make sure that this script works correctly, check that ImageMagic pack is installed on your Linux machine. #! /bin/bash dir=$1 target_dir=$2 mkdir -p $target_dir list=`ls -1 $1` for i in $list do echo $i convert $dir/$i -resize 50% $target_dir/$i done Usage: ./convert_50.sh Pictures/temp/ Pictures/temp_new This will resize all images in location Pictures/temp/ for 50%… Continue reading Bash script to resize images