Supprimer
gnome-mines gnome-sudoku gmusicbrowser parole xchat xchat-common xchat-indicator thunderbird thunderbird-locale-en thunderbird-locale-en-us thunderbird-locale-fr dictionaries-common pidgin xfce4-weather-plugin xfce4-dict xubuntu-wallpapers xubuntu-community-wallpapers xubuntu-desktop software-center abiword abiword-plugin-grammar abiword-common abiword-plugin-mathview gnumeric gnumeric-common gnumeric-doc
xfce4-verve-plugin xfce4-notes xfce4-notes-plugin
plymouth-theme-ubuntu-text
apport
apport-gtk
fonts-tibetan-machinefonts-dejavu-core
fonts-freefont-ttf
fonts-kacst
fonts-kacst-one
fonts-khmeros-core
fonts-lao
fonts-liberation
fonts-lklug-sinhala
fonts-lyx
fonts-nanum
fonts-opensymbol
fonts-sil-abyssinica
fonts-sil-padauk
fonts-takao-pgothic
fonts-thai-tlwg
fonts-tibetan-machine
fonts-tlwg-garuda
fonts-tlwg-kinnari
fonts-tlwg-loma
fonts-tlwg-mono
fonts-tlwg-norasi
fonts-tlwg-purisa
fonts-tlwg-sawasdee
fonts-tlwg-typewriter
fonts-tlwg-typist
fonts-tlwg-typo
fonts-tlwg-umpush
fonts-tlwg-waree
humanity-icon-theme
gimp-help-common gimp-help-en gimp-help-fr
menulibre
** Recuperation de données **
* photorec
* testdisk
* safecopy
** Monitorer **
* htop
* glances https://github.com/nicolargo/glances
** Infos materiel **
* I-nex
sudo add-apt-repository ppa:i-nex-development-team/stable
sudo add-apt-repository ppa:gambas-team/gambas3
sudo apt-get update
sudo apt-get install i-nex
* hardinfo
* gsmartmontools
* gsmartcontrol
* gnome-disks
** Stress **
* cpuburn
** Internet **
* wget
* Filezilla
* wireshark
* zenmap
** Utilitaires **
* multisystem
* baobab
** cmd **
* mc midnight commander gestionnaire de fichiers
* ncdu ( baobab en ligne de commande )
sudo apt-add-repository 'deb http://liveusb.info/multisystem/depot all main'
wget -q http://liveusb.info/multisystem/depot/multisystem.asc -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install multisystem
* bleachbit
* synaptic
* gparted
* parted
* vlc
* mplayer2
* rsync
* terminator
* p7zip p7zip-full
* gksudo
* zenity
* chntpw
* boot-repair
sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair
sudo apt-get purge -y boot-repair* clean clean-ubiquity* glade2script*
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update; sudo apt-get install -y boot-repair && boot-repair
** Remplacement
* thunar > nemo
* mousepad > gedit ( la selection de texte est trop pénible avec mousepad )
=== Liens web ===
* [[http://crypt-webgl.unigine.com/game.html#prclt-N0h1swpY|stress/bench gpu]]
* [[http://www.lagom.nl/lcd-test/|test écran]]
* [[http://tim.id.au/laptops/|documentation portables]]
=== Apparence ===
* /usr/lib/plymouth/xubuntu-theme/wallpaper.png > fond noir 800*600
* wallpaper
* erobase menu
* couleurs menus
* raccourcis applicatifs
=== Scripts à rajouter ===
* whatisthissoft
#/bin/bash
appli=`ps w --no-header -o command -p $(xwininfo -all | grep "Process id:" | cut -d":" -f2 | cut -d" " -f2)`
zenity --info --text="
L'application sélectionnée a été lancée par la commande :
$appli"
* Installer une version de flash
#!/bin/bash
#
# Flash
#
# Installer une version de flash
if [ ! $EUID -eq 0 ]
then
echo "[ ERROR ] script a executer en sudo/root"
exit 1
fi
case $# in
0) flashtype='adobe' ;;
1) flashtype=$1 ;;
*) echo "[ ERROR ] flashinstall [adobe|gnu|shumway|pipelight]" ;;
esac
# Remove all flash things related
aptitude remove --purge -y flashplugin-installer gnash lightspark browser-plugin-lightspark pipelight-multi
# Install only what is wanted
case $flashtype in
'adobe')
# Adobe
aptitude install -y flashplugin-installer
;;
'gnu')
# Gnash + Lightspark
aptitude install -y gnash gstreamer0.10-ffmpeg gstreamer0.10-plugins-bad lightspark browser-plugin-lightspark
;;
'shumway')
# Shumway
wget http://mozilla.github.io/shumway/extension/firefox/shumway.xpi
unzip shumway.xpi -d {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
cp -rf {ec8030f7-c20a-464f-9b0e-13a3a9e97384} /usr/lib/firefox-addons/extensions
;;
'pipelight')
# Pipelight
add-apt-repository ppa:pipelight/stable -y
aptitude update
aptitude install --with-recommends -y pipelight-multi
echo Y | pipelight-plugin --enable flash
;;
'remove'|'rm')
add-apt-repository -r ppa:pipelight/stable -y
echo "[ INFO ] Suppression des version pipelight shumway gnu et adobe"
;;
*)
echo "[ ERROR ] Flash version non valide"
;;
esac
exit 0
et la mini interface
#!/bin/bash
flashType=$(
zenity --list \
--height=350 \
--text "\
Selection du type d'installation pour flashplayer :
- Adobe : version 11.2, developpement arrete , fonctionnel,
pour les sites ne necessitant pas une version plus recente
- Gnash+Lightspark : Implementation libre du plugin, Gnash pour les versions
anciennes, Lightspark pour les versions récentes
- Shumway : Plugin fourni par Mozilla, developpement recent
- Pipelight : Utilisation du plugin flash pour Windows via wine
" \
--radiolist \
--hide-column=3 \
--column "Pick" --column "options" --column="id" \
'TRUE' "Adobe" "adobe" \
'FALSE' "Gnash+Lightspark" "gnu" \
'FALSE' "Shumway" "shumway" \
'FALSE' "pipelight" "pipelight" \
'FALSE' "Supprimer toutes les versions" "remove" \
--print-column=3 \
);
exitZenity=$?
if [ $exitZenity != 0 ]
then
zenity --warning --text "Annulation lors de la selection de la version de flash"
exit 1
fi
flashInstall $flashType