welcome: please sign in
location: Diff for "Ubuntu"
Differences between revisions 23 and 24
Revision 23 as of 2016-04-19 10:26:02
Size: 3346
Editor: dhcp249
Comment:
Revision 24 as of 2016-04-19 11:05:21
Size: 3497
Editor: dhcp249
Comment:
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
 * Multiple workspaces, durch folgenden Befehl aktivieren , die Größe wird duch hsize (Anzahl horizontal), vsize (vertikal) festgelegt:  * Multiple workspaces, with the following two simple comands you can activate and configurate compiz. Arrangements of virtual desktops can be adjust with hsize (horizontal) and vsize (vertikal):
Line 42: Line 42:
 * Alternative kann man sich unity-tweak-tool installieren  * Alternative there is gui tool: unity-tweak-tool
Line 47: Line 47:
=== Drucker === === Drucker/ Printer ===
Line 53: Line 53:
=== Verwalten von ppa ===
 * eine kleine Geschichte zu ppa: https://ikhaya.ubuntuusers.de/2006/11/20/eine-kleine-geschichte-ueber-fremde-paketquellen/
=== Verwalten von ppa/ Management of ppa ===
 * eine kleine Geschichte zu ppa: https://ikhaya.ubuntuusers.de/2006/11/20/eine-kleine-geschichte-ueber-fremde-paketquellen/    Short story about ppa in German.
Line 56: Line 57:
==== Hinzufügen ==== ==== Hinzufügen/ add ====
Line 77: Line 78:
==== Entfernen ==== ==== Entfernen/ remove ====
Line 82: Line 83:
==== Anschauen von FremdPPAs ==== ==== Anschauen von FremdPPAs/ checking foreign ppas ====

Sammlung von Ubuntu Befehlen

Software unter Ubuntu

Programm Languages

Konfiguration

System Settings

  • Multiple workspaces, with the following two simple comands you can activate and configurate compiz. Arrangements of virtual desktops can be adjust with hsize (horizontal) and vsize (vertikal):
    gsettings set org.compiz.core:/org/compiz/profiles/unity/plugins/core/ hsize 4
    gsettings set org.compiz.core:/org/compiz/profiles/unity/plugins/core/ vsize 1
  • Alternative there is gui tool: unity-tweak-tool
    sudo apt-get install unity-tweak-tool

Drucker/ Printer

Verwalten von ppa/ Management of ppa

Hinzufügen/ add

  • sudo add-apt-repository ''ppa:benutzer/paketname''
    • Beispiel für java8: sudo add-apt-repository ppa:webupd8team/java
    sudo apt-get update
    oder
    sudo aptitude update
    sudo apt-get dist-upgrade
  • Installieren von software per commandline:
    sudo aptitude install ProgrammName

Entfernen/ remove

  • sudo ppa-purge ''ppa:benutzer/paketname''

Anschauen von FremdPPAs/ checking foreign ppas

  • find /etc/apt -name „*\.list“ -exec grep -v „\s*#“ ‚{}‘ \; | grep -v „deb-src“ | grep -Piso „ppa.launchpad.net/[^/]+/[^/ ]+“ | sed -r ’s~^ppa.launchpad.net/~ppa:~‘

Probleme mit google PPA:

  • sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list"

PPA - list

  • indicator-multiload/stable-daily  - paket: indicator-multiload

SSH -key

Generieren eines SSH-keys

  • ssh-keygen -t rsa

Ausgabe :

  • Enter file in which to save the key (/home/demo/.ssh/id_rsa):

Mit Enter wird eine Datei id_rsa im Verzeichnis .ssh erstellt.

  • Enter passphrase (empty for no passphrase):

Public key auf server kopieren

  • cat ~/.ssh/id_rsa.pub | ssh user@123.45.56.78 "mkdir -p ~/.ssh && cat >>  ~/.ssh/authorized_keys"

hepe: Ubuntu (last edited 2018-10-10 09:10:42 by 172)