How to install xfce 4.8

Forums for the Xfce Edition
Forum rules
Before you post please read this

How to install xfce 4.8

Postby Mdyter on Fri Feb 11, 2011 8:29 pm

Hello to everyone!

I've found a script that will download and install (compile) xfce4.8 desktop environment.
I'm a linux newbie , so i you have particular questions, its very probably i will not be able to answer them, but I'll try as much as i can.

I installed xfce 4.8 with it on LMDE x64. Is working fine :D
Fell free to try it an please leave feedback.


my experience :
before running the script i used this command in terminal to install all required files:
Code: Select all
sudo aptitude install build-essential intltool libglib2.0-dev libdbus-glib-1-dev xserver-xorg-dev libgtk2.0-dev libstartup-notification0-dev libgladeui-1-dev libglade2-dev python-gtk2-dev libwnck-dev libexif-dev libfreetype6-dev libjpeg62-dev libpng12-dev libgudev-1.0-dev libnotify-dev libxklavier-dev libcanberra-dev libgconf2-dev libgnome-keyring1.0-cil-dev libgnome-keyring-dev libgamin-dev libhal-storage-dev

aptitude helped to remove conflicting packages

Code: Select all
#!/bin/bash
# Script - installazione automatizzata XFCE4.8.0 per ubuntu
# Script - Automatic Installation XFCE4.8.0 for ubuntu

#Testato su Ubuntu 10.04.1 (32bit) e Ubuntu 10.10 (64bit)
#Tested su Ubuntu 10.04.1 (32bit) and Ubuntu 10.10 (64bit)

#Utilizzo: copiare questo script nel punto dove si vogliono scaricare/compilare i sorgenti ed eseguirlo
#Usage: copy this script to the point where you want to download / compile source and run it

sudo apt-get install build-essential intltool libglib2.0-dev libdbus-glib-1-dev xserver-xorg-dev libgtk2.0-dev libstartup-notification0-dev libgladeui-1-dev libglade2-dev python-gtk2-dev libwnck-dev libexif-dev libfreetype6-dev libjpeg62-dev libpng12-dev libgudev-1.0-dev libnotify-dev libxklavier-dev libcanberra-dev libgconf2-dev libgnome-keyring1.0-cil-dev libgnome-keyring-dev libgamin-dev libhal-storage-dev

wget -c http://archive.xfce.org/xfce/4.8/fat_tarballs/xfce-4.8.tar.bz2
tar xfvj xfce-4.8.tar.bz2
cd src

tar xfvj libxfce4util-4.8.1.tar.bz2
cd libxfce4util-4.8.1/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfconf-4.8.0.tar.bz2
cd xfconf-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj libxfce4ui-4.8.0.tar.bz2
cd libxfce4ui-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj libxfcegui4-4.8.0.tar.bz2
cd libxfcegui4-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj exo-0.6.0.tar.bz2
cd exo-0.6.0/
./configure --prefix=/usr
make
sudo make install
cd ..

#Scarico garcon
wget -c http://archive.xfce.org/src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
tar xfvj garcon-0.1.5.tar.bz2
cd garcon-0.1.5/
./configure --prefix=/usr
make
sudo make install
sudo cp data/xfce/xfce-applications.menu /etc/xdg/menus/
cd ..

tar xfvj xfce4-panel-4.8.0.tar.bz2
cd xfce4-panel-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj Thunar-1.2.0.tar.bz2
cd Thunar-1.2.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce4-settings-4.8.0.tar.bz2
cd xfce4-settings-4.8.0/
./configure --enable-sound-settings --enable-pluggable-dialogs --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce4-session-4.8.0.tar.bz2
cd xfce4-session-4.8.0/
./configure --prefix=/usr --enable-libgnome-keyring
make
sudo make install
cd ..

tar xfvj xfdesktop-4.8.0.tar.bz2
cd xfdesktop-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfwm4-4.8.0.tar.bz2
cd xfwm4-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce-utils-4.8.0.tar.bz2
cd xfce-utils-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj xfce4-appfinder-4.8.0.tar.bz2
cd xfce4-appfinder-4.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj gtk-xfce-engine-2.8.0.tar.bz2
cd gtk-xfce-engine-2.8.0/
./configure --prefix=/usr
make
sudo make install
cd ..

tar xfvj thunar-vfs-1.2.0.tar.bz2
cd thunar-vfs-1.2.0/
./configure --prefix=/usr
make
sudo make install
cd ..

wget -c http://archive.be2.xfce.org/src/xfce/libxfce4menu/4.6/libxfce4menu-4.6.2.tar.bz2
tar xfvj libxfce4menu-4.6.2.tar.bz2
cd libxfce4menu-4.6.2/
./configure --prefix=/usr
make
sudo make install



the script was originally found here (in italian): http://francobersani.blogspot.com/2011/01/xfce-480-installazione-da-sorgenti.html
p.s. sorry for poor English
Mdyter
Level 1
Level 1
 
Posts: 25
Joined: Mon Dec 21, 2009 4:21 am

Linux Mint is funded by ads and donations.
 

Re: How to install xfce 4.8

Postby Habitual on Fri Feb 11, 2011 9:07 pm

You have a recent backup, yes? :wink:
User avatar
Habitual
Level 7
Level 7
 
Posts: 1609
Joined: Sun Nov 21, 2010 8:31 pm
Location: uid=0(root) gid=0(root) groups=0(root)

Re: How to install xfce 4.8

Postby Mdyter on Fri Feb 11, 2011 9:29 pm

Habitual wrote:You have a recent backup, yes? :wink:

sure :) i made one with clonezilla and put it on another partition.
would be enough ?
Mdyter
Level 1
Level 1
 
Posts: 25
Joined: Mon Dec 21, 2009 4:21 am

Re: How to install xfce 4.8

Postby Habitual on Fri Feb 11, 2011 9:33 pm

Better safe than sorry considering your recent experiences with you system. :D
User avatar
Habitual
Level 7
Level 7
 
Posts: 1609
Joined: Sun Nov 21, 2010 8:31 pm
Location: uid=0(root) gid=0(root) groups=0(root)

Re: How to install xfce 4.8

Postby nanas on Wed Feb 01, 2012 7:47 pm

followed instructins, copied-pasted commands on command line, restarted computer, and ... why do i not have a different desktop now?

Thanks for any anwer ...
nanas
Level 1
Level 1
 
Posts: 2
Joined: Fri Jan 27, 2012 5:01 pm

Re: How to install xfce 4.8

Postby jeffreyC on Thu Feb 02, 2012 3:30 am

Umm.....because Linux Mint Debian Xfce already has Xfce 4.8 ?
Get Dropbox and an extra 250 mb http://db.tt/wAizqw0
jeffreyC
Level 4
Level 4
 
Posts: 318
Joined: Mon Jun 07, 2010 9:34 pm

Re: How to install xfce 4.8

Postby vrkalak on Thu Feb 02, 2012 10:54 am

And, the Fact that this Thread is a year old.

The entire Linux Universe has changed since then. :P

Every OS-distro that has Xfce as default, or in the Repros, already uses Xfce-4.8 (long time passing)
Image
. Image

Registered Linux User: #497031 | Fluxbox Forum | my DeviantART page
User avatar
vrkalak
Level 9
Level 9
 
Posts: 2822
Joined: Mon Jul 20, 2009 5:53 pm
Location: Santa Fe, NM, USA

Re: How to install xfce 4.8

Postby Hawkeye_52 on Thu Feb 02, 2012 2:16 pm

vrkalak wrote:And, the Fact that this Thread is a year old.

The entire Linux Universe has changed since then. :P

Every OS-distro that has Xfce as default, or in the Repros, already uses Xfce-4.8 (long time passing)

This thread is pretty ancient, but I believe that there is one pretty good Xfce distro that hasn't gone to 4.8 yet -- SalineOS. They just announced a new version, 1.6, but the way I read their forum, they will not be moving to 4.8 until version 2.0.

You are much more up on these DEs than I am, so if I am incorrect, please feel free to 'counsel' me :wink: .

Hawkeye
User avatar
Hawkeye_52
Level 3
Level 3
 
Posts: 137
Joined: Thu Mar 06, 2008 5:06 am
Location: USA

Re: How to install xfce 4.8

Postby sanda on Thu Feb 02, 2012 5:10 pm

I can confirm that SalineOS 6.1, released yesterday, includes an earlier Xfce version (not v4.8)
For any distro using the Debian stable repo, the most recent xfce version there, IIRC, is 4.6.2
sanda
Level 1
Level 1
 
Posts: 46
Joined: Mon Dec 19, 2011 5:05 pm

Linux Mint is funded by ads and donations.
 

Return to Xfce

Who is online

Users browsing this forum: No registered users and 8 guests