Re-install ubuntu-desktop metapackage and reinstall its dependencies

•27 September 2009 • Leave a Comment

Ubuntu-desktop is a meta-package in ubuntu that connects all the packages that are installed by default in a fresh ubuntu install. For that reason you can remove it without any damage to other packages or your system. It can be automatically removed if you remove ekiga or gnome-games.

But what if at some point you want to revert all the changes so you have the default packages reinstalled again?

Running :

sudo apt-get install --reinstall ubuntu-desktop

does not reinstall its dependencies. So the solution is :

sudo apt-cache depends ubuntu-desktop | awk -F ":" '{print $2}' | \
sed '/^$/d' | xargs sudo apt-get \
install --reinstall --install-recommends --yes

(yes this is one line :))

Enjoy

fix firefox 3.5 crash with full-screen flash

•22 July 2009 • 1 Comment

This is an annoying nvidia bug with the latest Firefox (Shiretoko) version 3.5.
To fix it you need to load the flash plugin before firefox.
To do this you have to find the firefox startup script (mine is in /usr/lib/firefox-3.5.1/firefox.sh) and add the following line at the beginning of it (be careful to not wipe the “#!/bin/sh” line!):

export LD_PRELOAD=/usr/lib/libGL.so.1

Now you can have full-screen videos again in youtube ;) 

Via:http://ubuntuforums.org/showpost.php?p=7487421&postcount=14

Create a list of installed packages for automatic re-install

•21 July 2009 • Leave a Comment

Here is how i create a package list with the current software installed :

dpkg --get-selections > package.list

To restore the list after a new clean install and automatically re-install the packages :

sudo dpkg --set-selections < package.list
 sudo apt-get dselect-upgrade

As simple as that!

Post to wordpress from my Ubuntu with gnome-blog!

•14 July 2009 • Leave a Comment

This is the first post directly through my desktop!

Really !!

If you use gnome you can do it also. All you have to do is install gnome-blog package.

For ubuntu users do :

sudo apt-get install gnome-blog

and then follow this instructions to blog.

*editing from within wordpress now :

Gnome-blog rocks! I wish it supported categories and tags.

Firefox and middle click scroll

•16 March 2009 • Leave a Comment

To enable scrolling with middle click all you have to do is :
edit -> preferences
go to the advanced tab, and check “use autoscrolling

it is working under ubuntu linux 9.04

Ubuntu: first things after install

•16 March 2009 • Leave a Comment

I installed ubuntu, now what ?

I asked myself the same question today, after a clean Ubuntu Jaunty 9.04 install

So i’ve decided to keep a big one line install command (aka donwload the world!) just to make things easier

Here it is

sudo apt-get update && sudo apt-get upgrade && sudo apt-get install vim banshee gnome-do-plugins
fusion-icon emerald compiz-fusion-plugins-unsupported compizconfig-settings-manager openssh-server
flashplugin-nonfree padevchooser wallpaper-tray wine gparted

i ‘ll updating the above one line command regularly

How to download multiple files from anywhere (including rapidshare) in Ubuntu Linux

•8 June 2008 • 2 Comments

this is an easy way to download multiple file (batch download) from anywhere including rapidshare with or without premium accounts using command line.

Create a file named “down.txt” and paste the rapidshare links there, one link per line.

Next create a bash file named “multidown” and paste the following in it, replacing the “YourUsername” and “YourPassword” with your data :

#!/bin/bash
for i in $(cat down.txt); do
wget   -nc  --user=YourUsername  --password=YourPassword "$i"
done

then alter permissions for this fileto make it executable

chmod u+x multidown

and run it

./multidown

or you can also put a launcher in your desktop ;)

Ελληνικό Forum για τα Ubuntu

•2 June 2008 • Leave a Comment

Δημιουργήθηκε το ubuntu – gr forum και ήδη υπάρχει αρκετό υλικό για διάβασμα.

Επισκευφθείτε το

http://ubuntu.opengr.net/index.php

How to install showmouse plugin, Compiz Fusion

•8 February 2008 • 2 Comments

Fist of all , what this plugin is all about ??

It just displays the current mouse/cursor position a little more eyecandy.

Lets take a look :

Nice !!! what to do now ??

Just continue reading .. ;)

i use ubuntu hardy alpha 4 and i already have installed master git
here is how i installed mousepoll and showmouse plugin:

1) run “Alt+F2” and type “gksudo gnome-terminal
this will open gnome-terminal with superuser priviledges
2) type :

mkdir compiz_plugins
cd compiz_plugins

3) clone both plugins through git :

git clone git://anongit.compiz-fusion.org/fusion/plugins/mousepoll mousepoll
git clone git://anongit.compiz-fusion.org/fusion/plugins/showmouse showmouse

4 )

cd mousepoll
make
BUILD_GLOBAL=true make install
cd ..

5)

cd showmouse
make
BUILD_GLOBAL=true make install

done

i hope this helps you

Important : you need master git for both plugins to work !!

Master git is the latest version of compiz.

If you are looking for a way to install compiz fusion from git take a look at this (look at Makefusion script)

Note : if you are going to use makefusion script to install compiz then you don’t need this , as both plugins are already in plugins-extra category

Compiz 0.7.0 Released !

•7 February 2008 • 1 Comment

Opencompositing.org announced the release of Compiz 0.7.0

What’s new :

1) Multi-display support.
2) A KDE4 port of the kde-window-decorator has been added
3) Frequent crashes of kde-window-decorator for some people have been fixed.
4) Middle and right click actions have been made configurable in gtk-window-decorator.
5) Gtk-window-decorator now optionally allows mouse wheel title bar actions, such as shading.
For complete changelog about compiz 0.7.0 look at the official announce here.

    How to install (Git) :

    git clone git://git.freedesktop.org/git/xorg/app/compiz compiz0.7.0

    of course you need git to be installed ;)

    Also there is a script called “Makefusion” which you can use to install compiz and compiz-fusion plugins (main extra unsupported atlantis2 bs cubedbus filedebug freewins fireflies maximumize mousegestures photowheel rubik screensaver stars snowglobe shelf visualevent wallpaper).

    This script is for ubuntu users 7.10 and below.You can find the script and more instructions about it here and here.

    If you have Ubuntu Hardy Heron 8.04 Alpha4 installed there is already an update available!

    Just run the update-manager or run in terminal “sudo apt-get update” and install the available updates :D