Launchpad PPA named mrw-gimp-svn for matthaeus123
sudo apt -get update
sudo apt -get install gimp
Launchpad PPA named mrw-gimp-svn for matthaeus123
There is only one package to install in order to connect to a cisco VPN: vpnc. Let's install it by typing:
$ sudo apt-get install vpnc
This will take care of installing every dependencies.
vpnc can either be used interactively or configuration files can be used.
When you try to connect to a cisco VPN by typing :
$ sudo vpnc
vpnc will look for the files /etc/vpnc.conf or /etc/vpnc/default.conf. If it does not find such files, vpnc will default to the interactive mode.
However, vpnc can support different configuration files and be called with the name of the file as an argument. For instance, if you create the configuration file /etc/vpnc/myconf.conf, you will be able to call vpnc like this:
$ sudo vpnc myconf
or
$ sudo vpnc myconf.conf
The configuration file has to be in /etc/vpnc/ and it need to have the extension .conf
The syntax of the configuration file need to be as follow:
IPSec gateway gateway.to.use
IPSec ID groupname
IPSec secret passwordforgroup
Xauth username myusername
Xauth password mypassword
Where equivalents in a .pcf file are:
vpnc enters interactive mode if you call it without any arguments and there is no /etc/vpnc/default.conf or /etc/vpnc.conf.
It will also prompted the user for any argument which was not supplied in the configuration file.
Here is the output when vpnc is called that way:
$ sudo vpnc
Enter IPSec gateway address: example.com
Enter IPSec ID for example.com: examplegroup
Enter IPSec secret for examplegroup@example.com:
Enter username for example.com: foobar
Enter password for foobar@example.com:
Arguments can be set or overridden by passing them though the command line. Use vpnc -h for more details.
Once connected, the client can be disconnected using:
$ sudo vpnc-disconnect
We have shown you how to install Google Chrome web browser in previous versions of Ubuntu using Software Center. This brief tutorial will show you an alternative way to install Google Chrome in Ubuntu via the command line using the apt-get command. Now, you can always to go www.google.com/chrome and download the deb package from there. However, if you prefer to install Chrome using apt-get from the command line, then this tutorial will show you how to do it.
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - When added, run the command below.
sudo gedit /etc/apt/sources.list.d/google.listThen copy and paste the line below into the file and save.
deb http://dl.google.com/linux/chrome/deb/ stable mainAfter saving the file, run the commands below to update your system.
sudo apt-get updateFinally, run the commands below to install Google Chrome Stable version.
sudo apt-get install google-chrome-stable
To install the beta version (latest version) run the commands below:
Trotz der großen Auswahl an Programmen, die heutige Linux-Distributionen von Haus aus mitbringen und über sogenannte “Repositories” anbieten, oder die sich für lau aus dem Netz besorgen lassen, kommt fast jeder so genannter “Normalbenutzer” mal in die Verlegenheit, ein Windows-Programm unter Linux starten zu wollen. In diesem Fall bleibt ihr oder ihm nur die Möglichkeiten, Windows in einer virtuellen Maschine zu installieren, oder das OpenSource-Programm Wine zu verwenden.
Wine steht dabei für “Wine Is Not an Emulator” und ermöglicht es, Programme, die für Windows bestimmt sind, unter Linux/Unix auszuführen. Leider funktioniert das längst nicht mit allen Programmen und manchmal klappt es nur mit zusätzlichen “Tricks”. Der Grund dafür kann daran liegen, dass immer mehr Windows-Programme zusätzliche Laufzeitkomponenten benötigen um selbst unter Windows zu arbeiten. Diese werden natürlich auch unter Linux mit Wine benötigt.
Winetricks ist eine Skript mit dem verschiedene Redistributable-Runtime-Bibliotheken, beispielsweise die MS Visual Basic und C++ Runtime Libraries, heruntergeladen und installiert werden können. Zusätzlich lassen sich mit diesem Skript auch einige Einstellungen, wie die Wahl der Windowsversion, anpassen. Winetricks wird nicht installiert, es genügt die Datei aus dem Internet herunterzuladen und an einem beliebigen Ort zu speichern. Das funktioniert über die Kommandozeile mit dem Befehl:
$ wget http://www.kegel.com/wine/winetricks
Gegebenenfalls wird noch cabextract benötigt, dass sich mit dem Befehl:
$ apt-get install cabextract
unter Debian-basierte Distributionen installieren lässt. Zum Ausführen von Winetracks genügt anschließend die Eingabe:
$ sh winetricks
Darauf erscheint ein Fenster, in dem man die gewünschten Bibliotheken und Einstellungen auswählt und mit OK bestätigt. Danach werden die ausgewählten Bibliotheken heruntergeladen und installiert. Das Auswählen und installieren kann auch durch z. B.:
$ sh winetricks corefonts vcrun6
direkt ausgeführt werden.
Ein Aktuelles Beispiel für Windows-Programme, die sich mit Winetricks zum Laufen bringen lassen, ist das Programm “AdWords Editor”, dass es nur für Windows gibt. Dieses Programm ist bis zur Version 7.0 relative problemlos unter Wine gelaufen. Mit der Version 7.5 ging das leider nicht mehr. Beim Starten kommt die Fehlermeldung “Microsoft Visual C++ Runtime Library – Runtime Error!”.
Erst mit der Installation der MS Visual C++ 2005 und MS Visual C++ 2005 SP1 Bibliotheken über
$ sh winetricks vcrun2005 vcrun2005sp1
startet das Programm wieder. Dabei ist auf die genaue Reihenfolge der Installationen zu achten!