Posts Tagged ‘ubuntu’

Scripts and methods to backup and restore all your android applications

14 Giugno 2009

we suppose that you can have the superuser privileges in your phone, aka root.
the following commands are for linux but removing the “./” should work also in windows (ot: why do you still use windows?!?!?).
after connecting the phone to the pc via USB, this command will copy (if you are in the tools folder of your android SDK) all your paid applications to the folder app-private:

./adb pull /data/app-private app-private

this command will copy all the free applications in another folder, called app:

./adb pull /data/app app

after you have all the apps in your folders simply make two new files:
one for restoring your free applications (assuming that you are always in the tools directory):

sudo gedit restore_apps.sh

with inside:

#!/bin/sh
for i in app/*.apk
do
./adb install $i
done

and one for restoring your paid apps:

sudo gedit restore_paid_apps.sh

with inside:

#!/bin/sh
for i in app-private/*.apk
do
./adb install $i
done

after you have made those two files executable, you can invoke their names (with ./ before) to execute them and restore selectively your paid or free apps back.

sono contento perchè l’instant messaging sta prendendo una bella piega

28 Dicembre 2008

ho appena scoperto dell’esistenza di un ottimo plugin per pidgin che permette di chattare con gli amici di facebook come se si tenesse la finestra in questione aperta con firefox… il tutto molto gnome-integrated, molto semplice, ed efficace… c’è solo una piccola pecca che ho riscontrato: il plugin deve andare a modificare non so in che maniera la chache di ffox (magari è una stupidata), fattosta che mi tocca spesso rifare il login su firefox….. poco male… password memorizzata ed è solo un colpo di clik.
chissà se in un futuro nascerà un pidgin col plugin già integrato, visto che ora è necessario scaricare un deb.

{De Ping.fm postatio}

28 Dicembre 2008

avendo settato GWIBBER su ubuntu come punto di partenza per diramare verso ogni possibile sito il mio istantaneo microblogging, sono per far apparire su anche qui su wordpress, incappato in un intermediario di nome PING.FM
la sua cnfigurazione sembra semplice: si richiede “add social network”, si inserisce “wordpress” , nome utente e password e via…
peccato che non si sa per quale motivo se si posta direttamete sulla bacheca di ping.fm, i messaggi vengono correttamente smistati, e n el caso presente inviati a wordpress, mentre se provengono da piu lontano (vedi il mio desktop con gwibber), si fermano insabbiati alla dashboard con i recent post di ping.fm…
queste sono le cose che a natale fanno veramente…..$%&£!!*?°ç@!!

How to get the max 3d performance in ubuntu intrepid on a eeePC

10 Dicembre 2008

after installing array.com kernel for obvious reasons =) , u need to seet your /etc/X11/xorg.conf like this:
Section “Device”
Identifier “Configured Video Device”
# abe ——————————————–
Driver “intel”
Option “HWCursor” “False”
Option “AccelMethod” “EXA”
Option “MigrationHeuristic” “greedy”
Option “ExaNoComposite” “true”

then there’s also an option to set in your sudo gedit /etc/environment

INTEL_BATCH=”1″

with the command glxgears you can test the FPS…

Per configurare manualmente la rete wi-fi su ubuntu

22 Luglio 2008

spesso succedono casini e con le interfacce grafiche non si riesce piu a risolvere nulla piu di una configurazione con dhcp…

i passi principali per avere una connessione al meglio autogestita (se si necessitano di porte aperte con un ip fisso etc..) sono:

sudo gedit /etc/network/interfaces

incollare nel file:

#auto lo
#iface lo inet loopback
#address 127.0.0.1
#netmask 255.0.0.0

#This is /etc/network/interfaces
auto lo
iface lo inet loopback

auto eth1
iface eth1 inet static
address 192.168.1.3
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255
#       name Wireless LAN card
wireless_essid XXXXXXX
wireless_key XXXXXXX
#       wireless_channell 11
#       wireless_mode managed
# Alternatively:
# iface eth1 inet dhcp

salvare e da terminale dare:

sudo /etc/init.d/networking restart