Table des matières

xubuntu 14.04 LTS : trusty

Installation

Partitions, démarrage

Liens http://itsfoss.com/solve-ntfs-mount-problem-ubuntu-windows-8-dual-boot/
http://askubuntu.com/questions/499102/ubuntu-will-not-boot-from-hard-drive-after-installation
http://members.iinet.net.au/~herman546/p20/GRUB2%20Bash%20Commands.html#install_update_and_repair
http://www.howtogeek.com/114884/how-to-repair-grub2-when-ubuntu-wont-boot/

Logiciels

pd-extended

télécharger

arduino, processing, fritzing

liste logiciel

sudo apt-get install synaptic xul-ext-lightning unetbootin filezilla grsync libreoffice camorama arduino screen vlc blender subversion git-core git openssh-server openssh-client qjackctl inkscape apache2 mysql-client mysql-server audacity libmp3lame0 sox geany sysinfo xournal audex bluefish libreoffice-l10n-fr libreoffice-help-fr linux-headers-generic build-essential vlc-plugin-jack midisport-firmware kdenlive

Autres : iw aptitude flashplayer-installer thunderbird-locale-fr codeblocks gparted freemind scribus texlive-latex-base txt2tags freecad vmpk ardour umbrello planner fritzing hydrogen transmageddon geogebra vinagre

LAMP pour pluxml

http://www.howtoforge.com/ubuntu_lamp_for_newbies
http://linuxandfriends.com/how-to-enable-mod_rewrite-in-ubuntu-linux/

OPENSCAD

OPENFRAMEWORKS

http://www.openframeworks.cc/download/

ofBook http://forum.openframeworks.cc/t/how-to-install-ofbook/17002

NODE

METEOR

KICAD

SKYPE

EAGLE

http://www.cadsoftusa.com/download-eagle/

ANDROID STUDIO ou SDK

Configurations

.HTACCESS / APACHE

Audio

Git

SCRIPT THUNAR

Thunar > Editer > Action personnalisée > Ajouter > Resize > bash ~/Softs/resize/resize.bash %N 1200×1200 sur les dossiers

 #! /bin/bash
# argument folder
 
folder="$1"
folder_dest="$folder-web"
size="$2x$2"
 
# Test argument $1
if [ -d $1 ]
then
	echo "Folder $1 ok"	
else
	echo "Usage example : ./resize folder size"
  	echo "Folder $1 doesn't exist"
	exit 0
fi
 
 
if [ -d $folder_dest ]
then
	rm -rf $folder_dest
	mkdir $folder_dest
else
	mkdir $folder_dest
fi
 
 
for file in $folder/*
do	
	file_export=$(basename $file)
	convert $file -quality 95 -resize $size\> +profile "*" $folder_dest/$file_export
done
 
exit 0