welcome: please sign in
location: Diff for "Ubuntu"
Differences between revisions 1 and 17 (spanning 16 versions)
Revision 1 as of 2016-03-09 13:47:58
Size: 914
Editor: dhcp144
Comment:
Revision 17 as of 2016-03-30 13:47:33
Size: 3180
Editor: dhcp249
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
== Konfiguration: == <<TableOfContents()>>
== Software unter Ubuntu ==
 * thunderbird
  * Pakete: thunderbird, thunderbird-locale-de
  * Add-ons: http://sogo.nu/download.html#/frontends
   * lightning
   * SOGo Connector
   * SOGo Integrator
 * Chrome
 * jitsi
  * Version: jitsi_2.8.5426-1_amd64.deb (stand 9.3.2016)
 * '''TeXstudio'''
 * Seafile
 * [[IntelliJ IDEA]]
 * Dropbox
 * gimp
 * skype
  * http://ubuntuhandbook.org/index.php/2015/10/install-skype-4-3-ubuntu-15-10/
  * https://wiki.ubuntuusers.de/Skype/
 * git

=== Sprachen ===
 * java8
 * python
 {{{
sudo aptitude install python-pip
}}}
 * nodejs https://nodejs.org/en/download/package-manager/
 {{{
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs
}}}

== Konfiguration ==
=== System Settings ===
 * Multiple workspaces, durch folgenden Befehl aktivieren , die Größe wird duch hsize (Anzahl horizontal), vsize (vertikal) festgelegt:
 {{{
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 kann man sich unity-tweak-tool installieren
 {{{
sudo apt-get install unity-tweak-tool
}}}

=== Drucker ===
 * download and extract to Downloads
 ftp://ftp.dell.com/printer/Dell-5130cdn-Color-Laser-1.3-1.noarch.rpm
 * open printer-window -> New printer -> Network Printer -> find Network Printer -> choose Dell 5130cdn Color Laser ... -> press Forward -> cancel driver search -> provide PPD file -> choose your extract ppd file and finish installation with a test page
Line 4: Line 53:
 * eine kleine Geschichte zu ppa: https://ikhaya.ubuntuusers.de/2006/11/20/eine-kleine-geschichte-ueber-fremde-paketquellen/
Line 5: Line 56:
 * {{{  . {{{
Line 9: Line 60:
 * {{{  {{{
Line 16: Line 67:
 * {{{  {{{
Line 21: Line 72:
  * {{{  {{{
Line 26: Line 77:
 * {{{  . {{{
Line 31: Line 82:
{{{  . {{{
Line 34: Line 85:
=== Probleme mit google PPA: ===
=
=== Probleme mit google PPA: ====
Line 38: Line 90:

==== PPA - list ====
 . {{{
ppa:indicator-multiload/stable-daily
}}}

=== 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"
}}}

Sammlung von Ubuntu Befehlen

Software unter Ubuntu

Sprachen

Konfiguration

System Settings

  • Multiple workspaces, durch folgenden Befehl aktivieren , die Größe wird duch hsize (Anzahl horizontal), vsize (vertikal) festgelegt:
    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 kann man sich unity-tweak-tool installieren
    sudo apt-get install unity-tweak-tool

Drucker

  • download and extract to Downloads

    ftp://ftp.dell.com/printer/Dell-5130cdn-Color-Laser-1.3-1.noarch.rpm

  • open printer-window -> New printer -> Network Printer -> find Network Printer -> choose Dell 5130cdn Color Laser ... -> press Forward -> cancel driver search -> provide PPD file -> choose your extract ppd file and finish installation with a test page

Verwalten von ppa

Hinzufügen

  • 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

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

Anschauen von FremdPPAs

  • 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

  • ppa:indicator-multiload/stable-daily

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)