J'ai utilisé iron un temps mais ça m'a vite fatigué! Rarement à jour le truc.
Depuis j'utilise chromium que je mets à jour avec un p'tit script bash que je place dans ~/chromium :
#! /bin/sh
ARCH="`uname -m`"
if [ $ARCH == "x86_64" ];
then
CHROME_URL="http://build.chromium.org/buildbot/snapshots/chromium-rel-li(...)
else
CHROME_URL="http://build.chromium.org/buildbot/snapshots/chromium-rel-li(...)
fi
export CHROME_URL
#="http://build.chromium.org/buildbot/snapshots/chromium-rel-li(...)
export CUR_DIR="`date "+%Y-%m-%d-%M"`"
export CHROME_DIR=~/chromium
#Does the folder not exist?
if [ ! -x $CHROME_DIR ];
then
mkdir $CHROME_DIR;
fi
#Create the new folder in /tmp
#Remember, Linux wipes this everytime your computer is rebooted :)
mkdir /tmp/`echo $CUR_DIR`
cd /tmp/`echo $CUR_DIR`
#Do the voodoo inside it
wget "`echo $CHROME_URL`/LATEST"
wget "`echo $CHROME_URL`/`cat LATEST`/chrome-linux.zip"
unzip chrome-linux.zip > /dev/null
cp -rf chrome-linux/* $CHROME_DIR/
#Allow the files to exec
chmod -R a+x $CHROME_DIR/chrome*
[^] # Re: Chromium : même fuites des données personnelle que Chrome ou on?
Posté par i M@N (site web personnel) . En réponse à la dépêche En vrac, les autres navigateurs. Évalué à 1.
J'ai utilisé iron un temps mais ça m'a vite fatigué! Rarement à jour le truc.
Depuis j'utilise chromium que je mets à jour avec un p'tit script bash que je place dans ~/chromium :
#! /bin/sh
ARCH="`uname -m`"
if [ $ARCH == "x86_64" ];
then
CHROME_URL="http://build.chromium.org/buildbot/snapshots/chromium-rel-li(...)
else
CHROME_URL="http://build.chromium.org/buildbot/snapshots/chromium-rel-li(...)
fi
export CHROME_URL
#="http://build.chromium.org/buildbot/snapshots/chromium-rel-li(...)
export CUR_DIR="`date "+%Y-%m-%d-%M"`"
export CHROME_DIR=~/chromium
#Does the folder not exist?
if [ ! -x $CHROME_DIR ];
then
mkdir $CHROME_DIR;
fi
#Create the new folder in /tmp
#Remember, Linux wipes this everytime your computer is rebooted :)
mkdir /tmp/`echo $CUR_DIR`
cd /tmp/`echo $CUR_DIR`
#Do the voodoo inside it
wget "`echo $CHROME_URL`/LATEST"
wget "`echo $CHROME_URL`/`cat LATEST`/chrome-linux.zip"
unzip chrome-linux.zip > /dev/null
cp -rf chrome-linux/* $CHROME_DIR/
#Allow the files to exec
chmod -R a+x $CHROME_DIR/chrome*
Avec ça on a le dernier built -> http://build.chromium.org
@+...
wind0w$ suxX, GNU/Linux roxX!