Skip to main content

Change Unity in ubuntu: 2 Steps

If you like other elements of Ubuntu, but you don't like the user interface (desktop environment or login screen) or if you want to try a different UI, you don't need to change to another distro!

You could install a new desktop environment or configure the new login screen. Also, you can get back to Unity if you like it better, every time you log in you will be able to choose between the installed desktop environments.
Steps:

Step 1. First, you need to install the desktop environment:

For Gnome Shell(gnome3 ):
sudo apt-get install gnome-shell
sudo apt-get install gnome-tweak-tool

Clasic Gnome (gnome2):
sudo apt-get install gnome-panel



KDE:
sudo apt-get install kde-standard
or

sudo apt-get install kubuntu-desktop
(Taken from: http://kde.org/announcements/announce_4.2-beta1/desktop.png)

Light and fast XFCE:
sudo apt-get install xfce4
A fork of Gnome 2 (MATE):
sudo add-apt-repository “deb http://packages.mate-desktop.org/repo/ubuntu $(lsb_release -cs) main”
sudo apt-get update
sudo apt-get install mate-archive-keyring
sudo apt-get update
sudo apt-get install mate-core
sudo apt-get install mate-desktop-environment

(http://mate-desktop.org/)

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

Step 2. Once you have installed the desktop environment, look at the icon next to the user name:


I installed Xfce, which is shown, also with the 2 default desktop environments:

Choose your desktop environment before login in. 

Take into account: when you install and set KDE as default you are changing:

A. The desktop environment 
B. The login screen 

If we want to change the log in screen, I hate the one that comes with KDE:

sudo dpkg-reconfigure kdm

A new menu will be prompted inside the terminal, choose which installed log in screen you prefer.
(Guided video dpkg-reconfigure: http://www.youtube.com/watch?v=tKkFVwHGY8I&feature=related)



NOTE:
"Warning: having KDE and Gnome together means you'll have cluttered application menus full of KDE and Gnome applications. There may be other minor integration issues, but none should impact functionality, and you can find help for those on the Ubuntu Forums." (http://www.psychocats.net/ubuntu/kde)


Remember that for any problem that you encounter, you can always execute the ctr+alt+F1 to work in Ubuntu without desktop environment and revert the changes that you made.

Comments

Popular posts from this blog

Crear un .doc desde página php en 5 minutos gratis

Primero descargar esta libreria gratuita: http://phpword.codeplex.com/ Mi ejemplo al final de la página ya la contiene. Descomprimirla donde quieran, lo importante es saber donde quedó el archivo PHPWord.php para después incluirlo en nuestro código con: require_once 'PHPWord.php'; Iniciando el código es:     // Para declarar un nuevo documento     $PHPWord = new PHPWord();     // Para crear seccion para escribir en ella     $section = $PHPWord->createSection(); Luego podemos crear formatos para los textos que introduciremos: // Formatos para los textos       $PHPWord->addFontStyle('rStyle', array('bold'=>true, 'italic'=>false, 'size'=>16));     $PHPWord->addParagraphStyle('pStyle', array('align'=>'both', 'spaceAfter'=>100));     $PHPWord->addFontStyle('estiloTexto', array('bold'=>false, 'italic'=>false, 'size'=>12));     $PHPWord->

Configurar pantalla de inicio de sesión Ubuntu

Configurar pantalla de inicio de sesión Si quieres personalizar el inicio de sesión (pantalla de logeo), puedes instalar un programa llamado Ubuntu Tweak muy intuitivo y que te permite modificar el fondo de la pantalla de logeo entre otras cosas, primero vamos a instalar Ubuntu Tweak: sudo add-apt-repository ppa:tualatrix/ppa  sudo apt-get update  sudo apt-get install ubuntu-tweak  Una vez instalado, al entrar en System Settings deberia aparecerte el icono de Ubuntu Tweak: Luego de darle click a Ubuntu Tweak, dale click a la pestaña de "Tweaks" y a Login Settings: Para modificar la pantalla de Login se requiere permisos de superuser, dale a la opcion de "Unlock" para que puedas realizar cambios: Le das click a la imagen para cambiar el background y al Gtk theme, por ejemplo; mi resultado fue: Espero haber sido de ayuda. Fue hecho en: Ubuntu 12.04

Usando DB2 10.1 desde JAVA en Netbeans en 5 Minutos

Recordemos que usualmente al trabajar con bases de datos y java, existe una API que es el JDBC. En pocas palabras, permite que el código del programa en JAVA haga operaciones SQL sobre la base de datos. (Al final de este articulo pueden ver las definiciones) En DB2 se utilizan 2 tipos de JDBC: Conexión a una fuente de datos utilizando la interfaz DriverManager con el Controlador JDBC de DB2 Universal (db2jcc.java) Conexión de aplicaciones DB2 a una fuente de datos utilizando la interfaz DriverManager con el Controlador JDBC de DB2 de tipo 2 (db2java.zip en Windows) Trabajaremos con el primero (db2jcc.java). Al final dejo un link de las diferencias. Pasos 1. Despues de haber instalado DB2, debemos importar la API JDBC que trae incorporada nuestra base de datos. En donde se haya instalado DB2 comprobar que existe:  ..\IBM\SQLLIB\java\db2jcc.jar En Windows 7 por default: C:\Program Files\IBM\SQLLIB\java\db2jcc.jar 2. Abrir NetBeans (o IDE de preferencia), abrir