View deel2.sh
mount -o remount, rw / | |
cd /opt/ | |
#mp3,mp4 | |
cp /opt/chrome-unstable/opt/google/chrome-unstable/libffmpegsumo.so /usr/lib/cromo/ -f | |
cp /opt/chrome-unstable/opt/google/chrome-unstable/libffmpegsumo.so /opt/google/chrome/ -f | |
cp /opt/chrome-unstable/opt/google/chrome-unstable/libffmpegsumo.so /usr/lib/mozilla/plugins/ -f | |
cp /opt/chrome-unstable/opt/google/chrome-unstable/libpdf.so /opt/google/chrome/ -f |
View basis.sh
#!/bin/bash | |
#based on https://wiki.archlinux.org/index.php/Chromium | |
if [ `uname -m` == 'x86_64' ]; then | |
# 64-bit | |
export CHROME="https://dl.google.com/linux/direct/google-chrome-unstable_current_amd64.deb" | |
export TALK="https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb" | |
export JAVA="http://javadl.sun.com/webapps/download/AutoDL?BundleId=65687" | |
else | |
# 32-bit |
View maarten
#!/bin/bash | |
#based on https://wiki.archlinux.org/index.php/Chromium | |
if [ `uname -m` == 'x86_64' ]; then | |
# 64-bit | |
export CHROME="https://dl.google.com/linux/direct/google-chrome-unstable_current_amd64.deb" | |
export TALK="https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb" | |
export JAVA="http://javadl.sun.com/webapps/download/AutoDL?BundleId=65687" | |
else | |
# 32-bit |