LibreOffice 4.0.3

I am completely shifted from OpenOffice to LibreOffice. And pretty happy with new 4.0.3 release.

clear recent opened files in cinnamon

echo -n ~/.local/share/recently-used.xbel

aircrack-ng airolib-ng ubuntu 13.04

sudo apt-get install build-essential libssl-dev
wget http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz
tar -xzvf aircrack-ng-1.1.tar.gz
cd aircrack-ng-1.1
nano common.mak

In your editor remove the option -Werror and the string should be like:
CFLAGS ?= -g -W -Wall -O3
Compile and instlall
make sqlite=true
make sqlite=true install

to install or to update Airodump-ng OUI file
airodump-ng-oui-update

Installing Aircrack-ng from Source
12.04 – Cannot install aircrack-ng – Ask Ubuntu

sqlite3 sqliteman ubuntu 13.04

sudo apt-get install sqlite3 libsqlite3-dev sqliteman

12.10 – Need help installing sqlite3 – Ask Ubuntu

noip ubuntu 13.04

sudo apt-get install noip2 could not found the package in a repository. So, to install noip2 you have to:

cd /usr/local/src/
wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz
tar xf noip-duc-linux.tar.gz
cd noip-2.1.9-1/
make install

Read the rest of this entry »

get rid of Unity Ubuntu 13.04

I) Cinnamon desktop
sudo add-apt-repository ppa:gwendal-lebihan-dev/cinnamon-stable
sudo apt-get update
sudo apt-get install cinnamon

cinnamon desktop shuvalov
II) Gnome fallback desktop
sudo apt-get install gnome-session-fallback

fallback mode gmone shuvalov
Logout current session and do not choose Unity for next login
gnome-session-quit
sudo pkill -u username

windows 2003 server cannot connect through RDP after reboot

After reboot I unexpectedly lost ability to connect to windows 2003 server via RDP. Normal stop/start TermServece did not help me:
cmd
net stop TermService
net start TermService

So I killed service TermService and start it again:
cmd
tasklist /FI "SERVICES eq TermService"
takskill /F /PID 5892
net start TermService
PID termservice

ubuntu hide system reserved windows 7 partition

To hide system reserved windows 7 partition and mount permanently windows partition on dual boot system

make a backup of /etc/fstabsudo cp /etc/fstab /etc/fstab-`date +%y%m%d`create mount pointssudo mkdir /mnt/reserverd
sudo mkdir /mnt/win
add UUID to the /etc/fstabsudo blkid >> /etc/fstabedit /etc/fstab accordingly. The keyword is NOAUTOsudo nano /etc/fstabreboot system. I guess “mount -a” is enough but I always restart systemsudo rebootOr togethersudo -i
cp /etc/fstab /etc/fstab-`date +%y%m%d`
mkdir /mnt/reserverd
mkdir /mnt/win
blkid >> /etc/fstab
nano /etc/fstab
reboot
=== original /etc/fstab looks like:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda5 during installation
UUID=8eea37c4-1421-458b-a3c2-96171a2fe2cc / ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
UUID=0cf26b23-f5d3-4788-a56c-7af1fd15a260 none swap    sw              0       0
=== part added after “blkid >> /etc/fstab”:
/dev/sda1: LABEL="reserved" UUID="42A05734A0572E23" TYPE="ntfs"
/dev/sda2: LABEL="ssd-w7" UUID="AAFE83F3FE83B5DB" TYPE="ntfs"
/dev/sda5: UUID="8eea37c4-1421-458b-a3c2-96171a2fe2cc" TYPE="ext4"
/dev/sda6: UUID="0cf26b23-f5d3-4788-a56c-7af1fd15a260" TYPE="swap"
=== final /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda5 during installation
UUID=8eea37c4-1421-458b-a3c2-96171a2fe2cc / ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
UUID=0cf26b23-f5d3-4788-a56c-7af1fd15a260 none swap    sw              0       0
## added 130326
UUID=42A05734A0572E23 /mnt/reserved ntfs default,noauto 0 0
UUID=AAFE83F3FE83B5DB /mnt/win ntfs default 0 0

disable hibernate / remove hiberfil.sys

under local administrator
powercfg.exe /hibernate off
opposite operation to enable hibernate
powercfg.exe /hibernate on

Android app stores alternative play.google list

Unlike the iOS, Android users are free to download apps from various sources, e.g.:

http://yaam.mobi/
http://www.appbrain.com/
http://www.getjar.com/
http://www.appia.com/
http://www.appslib.com/
http://www.mobango.com/
http://slideme.org/
http://www.androidpit.com/
http://apps.opera.com/en_cy/
http://www.amazon.com/mobile-apps/b?ie=UTF8&node=2350149011

←Older