Include handling rar archive on Nautilus

I observed that people are looking for install rar on nautilus.

In fact, it’s very simple, first, we open rarlab page.

We have to choose between the ‘normal’ (x32) and ’64 bits’ (x64) version.

What is your architecture ?  You can know that by typing these command.

uname -i
x86_64

Here, is a 64 bits architecture and I will download the right file (x64) (32 bits version is here).

Open a CLI, and go to file. After that, you must extract and install.

$tar zxvf rarlinux-x64-3.9.2b1.tar.gz #extract

$cd rar/ #go into directorycreated

$su #switch in root mode

#make install #simply install

It finished, enjoy it.



Posted in Linux at January 31st, 2010. Comments Off on Include handling rar archive on Nautilus.

Installer Flash 64bits sous linux

Pour installer une version 64 bits de flash, le plus dur n’est pas l’installation proprement dite, mais bien la recherche du plugin flash en version 64bits.
Je vous évite tout ce travail libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz (provient de la page adobe suivante).

On ouvre un petit terminal et on tape :

cd ~/Telechargements/ #Attention vous avez surement des accents sur Téléchargements, je les ai supprimé pour cause de compatibilité avec des os virtuels.

tar zxvf libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz #On détargézette l’archive

mv libflashplayer.so ~/.mozilla/plugins/ #Et on déplace le plugin au bon endroit (cad le dossier plugins de mozilla)

N’oubliez pas de relancer firefox, pour qu’il tienne compte du plugin.

Voilà, c’est fini, vous pouvez utiliser le plug-in flash d’adobe sous votre système x64 maintenant ^^.

Posted in Linux at January 27th, 2010. Comments Off on Installer Flash 64bits sous linux.

Merge & convert AC3 5.1 in Mp3 Stereo lame

I consider that we have 3 AC3 files :

  1. Sample1.ac3
  2. Sample2.ac3
  3. Sample3.ac3

Merge files

We want to merge these 3 files. Simply use the cat command :

cat *.ac3 > All.ac3
#normally *.ac3 tell
“Sample1.ac3 Sample2.ac3 Sample3.ac3” properly sorted. If you have a doubt, you will be allowed to use the full sentence.
cat Sample1.ac3 Sample2.ac3 Sample3.ac3 > All.ac3

The 3 files merged in one All.ac3.

Decode AC3 file

Lame doesn’t be able to read AC3 files, so we must convert them. a52dec is a decoder of ac3 file to a lot of format (oss, ossdolby, oss4, oss6, wav, wavdolby, aif, aifdolby, peak, peakdolby, null, null4, null6, float).
Here, we use “wav” type output. The program decodes specified file to stdout and we must use operator ‘>’ like that :

a52dec -o wav All.ac3 > All.wav

This command downmix the 5.1 stream into full stereo stream (with channel level adjustment (-3, 0, + 3dB for instance) based on output mode). You can disable this with add a ‘-a’, use man for the rest.

Read More…

Posted in Vidéo & Audio at January 16th, 2010. 5 Comments.

GEOMETRY

When you have in options to a nautilus for instance :

–geometry=GEOMETRY
Create the initial window with the given geometry.


Read More…

Posted in Linux at January 10th, 2010. Comments Off on GEOMETRY.

nVidia Kmod install for fedora 11, 12

Don’t do like me. And install your KMod-Nvidia correctly :

Like that

Posted in Fedora 12 at January 8th, 2010. Comments Off on nVidia Kmod install for fedora 11, 12.

Wine 32 & 64 bits

If you have too the message following:

wine: ‘/home/xxx/.wine’ is a 32-bit prefix, it cannot be used with wow64 Wine

Do that :

rm -rf ~/.wine/drive_c/windows/syswow64

Bug has knowed from bugzilla

Posted in Linux at January 8th, 2010. Comments Off on Wine 32 & 64 bits.

Alias sympas sous Linux

Edit : une nouvelle version de ces alias est disponible ici.

Quelques alias sympas à glisser dans votre ~/.bashrc :

  • ?alias op=’gnome-open’ #si vous aimez bien lancer des fichiers depuis votre ligne de commande
  • alias rarpack=’rar a -v1g -m0 -t’ #crée un rar, le splitte en fichier de 1go (pour parer les vieux filesystem comme fat (limite de 4 go)), sans compression et avec test de l’archive à la fin
  • alias rarext=’rar x’ #extrait un rar en une commande (unrar le fait pas directement :()

Ces deux alias nécessitent l’installation préalable du binaire Rar disponible ici

  • alias s=’su -‘ #à force de taper `su -` on en a marre…
  • alias sdo=’su -c’ #un sudo sans sudo, pour faire une seule et unique commande
  • alias ll=’ls -hl’ #ajoute le h (human readable) à la très célèbre commande ll (`ls -l`)
  • alias term=’gnome-terminal &’  #pour ouvrir un autre terminal avec le même path
  • alias gr=’killall gnome-panel’ #comme j’ai souvent des problèmes d’artefacts au démarrage avec le gnome-panel, je le force à se relancer
Posted in Linux at January 3rd, 2010. 1 Comment.