Install pakage to compile source file
sudo apt-get install build-essential pkg-config libasound2-dev libcdio-dev libsdl1.2-dev libsdl-net1.2-dev libsndfile1-dev zlib1g-dev
Install pakage to compile source file
sudo apt-get install build-essential pkg-config libasound2-dev libcdio-dev libsdl1.2-dev libsdl-net1.2-dev libsndfile1-dev zlib1g-dev
sudo fdisk -l
sudo mount /dev/sda9 /mnt
sudo grub-install --root-directory=/mnt /dev/sda
Here "sda" is the hard disk on which your Linux distribution is installed!sudo update-grub
locales package installed. On Debian
you can do that with.$ dpkg -l locales Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad) ||/ Name Version Description +++-==============-==============-============================================ ii locales 2.7-18 GNU C Library: National Language (locale) daThe last line is the important one: if it starts with
ii, the
package is installed, and everything is fine. If not, install it. As root,
type$ aptitude install localesIf you get a dialog asking for details, read on to the next section.
$ dpkg-reconfigure localesYou'll see a long list of locales, and you can navigate that list with the up/down arrow keys. Pressing the space bar toggles the locale under the cursor. Make sure to select at least one UTF-8 locale, for example
en_US-UTF-8 is usually supported very well. (The first part of
the locale name stands for the language, the second for the country or
dialect, and the third for the character encoding).LC_ALL. If
you use bash as your shell, you can put these lines in your
~/.bashrc and ~/.profile files:export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LANGUAGE=en_US.UTF-8To make these changes active in the current shell, source the .bashrc:
$ source ~/.bashrcAll newly started interactive bash processes will respect these settings.
locale program. The output should be similar to
this:LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL=en_US.UTF-8If not you've made a mistake in one of the previous steps, and need to recheck what you did.
xterm, you can start
it as xterm -en utf-8, konsole and the Gnome Terminal can be
configured in their respective configuration menus.perl -Mcharnames=:full -CS -wle 'print "\N{EURO SIGN}"'
This should print a Euro sign € on the console. If it prints a
single question mark instead, your fonts might not contain it. Try installing
additional fonts. If multiple different (nonsensical) characters are shown,
the wrong character encoding is configured. Keep trying :-).-U option:$ screen -Uand also when detaching (
screen -Urd or so).Ctrl+a :utf8
on. If that doesn't work, exit your screen and start a
new one with -U
gconf-editor/apps/compiz-1/plugins/unityshell/screen0/options/show_launcher
Modify the show_launcher key to a single key value.space and now Super+space
opens the dash instead of Super. Note that if you use a key combo, it
seems to take a minute before you can use that to invoke the Dash. You
also need to complete the key combo quickly.gconftool --set /apps/compiz-1/plugins/unityshell/screen0/options/show_launcher --type=string "space"
Or use compizconfig-settings-manager Close without confirm Yes, you can just write a plugin to set the view as scratch and close it. Then create a keybinding for that c...