What comes after the second CHROMIUM_FLAGS=
in gedit?
I did the wrong thing when trying to install pepper flash. i went by confusing instructions and now i want to just return this file to normal, i get an error in terminal when i edit it if i dont get it right. here's my file:
# Default settings for chromium-browser. This file is sourced by /bin/sh from
# /usr/bin/chromium-browser
# Options to pass to chromium-browser
CHROMIUM_FLAGS=""
# part for pepperflashplugin-nonfree : begin
flashso="/usr/lib/pepperflashplugin-non...
if [ -f $flashso ]
then
flashversion=`strings $flashso|grep ^LNX|sed -e "s/^LNX //"|sed -e "s/,/./g"`
CHROMIUM_FLAGS=". /usr/lib/pepflashplugin-installer/pepfla...
fi
# part for pepperflashplugin-nonfree : end
. /usr/lib/pepflashplugin-installer/pepfla...
The file is called *default
( in /etc/chromium-browser
) and the line after CHROMIUM_FLAGS=
is where i messed up but i saved it without knowing, what goes after?
/etc/chromium-browser/default
has only the lineCHROMIUM_FLAGS=""
. You have messed it up while editing it. – heemayl Apr 06 '15 at 19:04/etc/chromium-browser
directory, rename the current file as something else than default e.g.default.bak
, then create a file nameddefault
having only the lineCHROMIUM_FLAGS=""
– heemayl Apr 06 '15 at 21:18sudo
at the start i.e.sudo mv default default.bak
– heemayl Apr 06 '15 at 21:51sudo
again....as this directory is owned by root..you need to impersonate root by usingsudo
to create a file or edit a file..open the file likesudo gedit default
– heemayl Apr 06 '15 at 22:02sudo apt-get purge chromium-browser && sudo apt-get install chromium-browser
– heemayl Apr 06 '15 at 22:41sudo apt-get install adobe-flashplugin
– heemayl Apr 07 '15 at 09:30E: Package 'adobe-flashplugin' has no installation candidate
– A1_Brownies Apr 07 '15 at 15:45sudo apt-get install flashplugin-installer
– heemayl Apr 07 '15 at 17:18