Bearbeiten von „Benutzer Diskussion:Matthias Jakobi

Zur Navigation springen Zur Suche springen
Warnung: Du bist nicht angemeldet. Deine IP-Adresse wird bei Bearbeitungen öffentlich sichtbar. Melde dich an oder erstelle ein Benutzerkonto, damit Bearbeitungen deinem Benutzernamen zugeordnet werden. Ein eigenes Benutzerkonto hat eine ganze Reihe von Vorteilen.

Die Bearbeitung kann rückgängig gemacht werden. Bitte prüfe den Vergleich unten, um sicherzustellen, dass du dies tun möchtest, und veröffentliche dann unten deine Änderungen, um die Bearbeitung rückgängig zu machen.

Aktuelle Version Dein Text
Zeile 1: Zeile 1:
hier noch etwas zu sftp für nutzer: [http://www.denkrobat.de/wiki/index.php/Sftp_f%C3%BCr_bestimme_Benutzer link]
== SOGo / FreeBSD ==
Aktuell ist [http://www.sogo.nu/downloads/backend.html SOGo v. 1.3.16].
Es gibt 2 ältere, funktionierende Ports [http://people.freebsd.org/~bapt/sogo.tar.gz SOGO] und [http://people.freebsd.org/~bapt/sope.tar.gz SOPE] die evtl. als Ausgangsbasi genutzt werden können.
Des Weiteren gibt es einen [http://www.mail-archive.com/users@sogo.nu/msg03605.html Mailinglisteneintrag], der die erfolgreiche Installation von SOGo v. 1.3.4 auf FreeBSD v. 8.2 beschreibt.
Zusätzlich hier der Hinweis auf die [http://www.sogo.nu/files/docs/SOGo%20Installation%20Guide.pdf Installations- und Konfigurationsanleitung].
Der Nutzer [http://www.bsdforen.de/showpost.php?p=238272&postcount=22 'minimike'] von den bsdforen arbeitet zur Zeit an einer FreeBSD basierten VM zum betrieb von SOGo.
Evtl. reicht es diesen anzuschreiben.
Abschließend sei noch angemerkt, das die Appliance die von SOGo direkt angeboten wird (ZEG) massive Grütze ist.
== Beobachtungsseiten ==
== Beobachtungsseiten ==


* [[Server]]
* [[Server]]
* [[Diskussion:Server]]
* [[Diskussion:Server]]
* [[Datenkultur]]
* [[Server/Bacula]]
* [[Server/Bacula]]
* [[Server/Dokumentation]]
* [[Server/Dokumentation]]
* [[Diskussion:Server/Dokumentation]]
* [[Diskussion:Server/Dokumentation]]
* [[Server/Hauptsystem]]
* [[Server/Hauptsystem]]
* [[Diskussion:Server/Hauptsystem]]
* [[Server/Jails]]
* [[Disskusion:Server/Jails]]
* [[Server/mailman]]
* [[Server/mailman]]
* [[Jail/SRS1]] [[Plone 4]]
* [[Jail/SRS1]] Plone 4
* [[Jail/SRS2]] rsync
* [[Jail/SRS3]] Samba
* [[Jail/SRS13]] [[Wiki]] 
* [[Jail/SRS4]] Plone (old)
* [[Jail/SRS14]] [[mailman]]
* [[Jail/SRS5]] Wikis
* [[Jail/SRS17]] [[wiki]]
* [[Jail/SRS6]] Umfragen
* [[Jail/SRS18]] [[Plone 3]] (old)
* [[Jail/SRS8]] Test
* [[Jail/SRS19]] FSRs
* [[Jail/SRS13]] Awesome Jail
* [[Jail/SRS20]] Umfragen
* [[Jail/SRS21]] Mail
* [[Jail/SRS21]] Mail
* [[Jail/SRS28]]
* [[Website]]
* [[Website]]
* [[Diskussion:Website]]
* [[Diskussion:Website]]
Zeile 49: Zeile 26:
* [[Doktorandenstammtisch]]
* [[Doktorandenstammtisch]]
* [[FreeBSD/ThinkPad]]
* [[FreeBSD/ThinkPad]]
* [[Mail-Adresse]]


== weitere Admins ==
== weitere Admins ==
[[Benutzer:JohannesSchneemann]]
[[Benutzer:JohannesSchneemann]]


== Wunschliste von [[Benutzer:PaulRiegel|PaulRiegel]] ==
== Laptop ==
 
=== Load Geli ===
 
Fixit> kldload geom_eli
 
=== Festplatte ===
 
Fixit> gpart create -s GPT ada0
Fixit> gpart add -s 64K -t freebsd-boot ada0
Fixit> gpart add -s 1G -t freebsd-ufs ada0
Fixit> gpart add -s 55G -t freebsd-zfs ada0
Fixit> gpart set -a active -1 ada0 # funzt nicht
Fixit> gpart bootcode -b /dist/boot/pmbr -p /dist/boot/gptzfsboot -i 1 ada0
Fixit> newfs -O2 /dev/ada0p2
 
*aktuelle Festplatten Einteilung
-ad0 GPT
    |-1 freebsd-boot 64K
    |-2 freebsd-ufs 1G /boot
    |-3 freebsd-zfs 55G / (crypto)
 
=== Encrypt ===
 
Fixit> geli init -b -s 4096 -l 256 /dev/ada0p3
 
=== Attach ===
 
Fixit> geli attach /dev/ada0p3
 
=== ZFS ===
 
Fixit> kldload zfs
Fixit> zpool create tank /dev/ad0p3.eli
# Fixit> zpool create home
# Fixit> zpool set bootfs=tank tank
Fixit> mkdir /tank/bootdir
Fixit> mount /dev/ad0p2 /tank/bootdir
Fixit# zfs set checksum=fletcher4                                      zroot
Fixit# zfs create -o compression=on    -o exec=on      -o setuid=off  zroot/tmp
Fixit# chmod 1777 /zroot/tmp
Fixit# zfs create                                                      zroot/usr
Fixit# zfs create                                                      zroot/usr/home
Fixit# cd /zroot ; ln -s /usr/home home
Fixit# zfs create -o compression=lzjb                  -o setuid=off  zroot/usr/ports
Fixit# zfs create -o compression=off  -o exec=off    -o setuid=off  zroot/usr/ports/distfiles
Fixit# zfs create -o compression=off  -o exec=off    -o setuid=off  zroot/usr/ports/packages
Fixit# zfs create -o compression=lzjb  -o exec=off    -o setuid=off  zroot/usr/src
Fixit# zfs create                                                      zroot/var
Fixit# zfs create -o compression=lzjb  -o exec=off    -o setuid=off  zroot/var/crash
Fixit# zfs create                      -o exec=off    -o setuid=off  zroot/var/db
Fixit# zfs create -o compression=lzjb  -o exec=on      -o setuid=off  zroot/var/db/pkg
Fixit# zfs create                      -o exec=off    -o setuid=off  zroot/var/empty
Fixit# zfs create -o compression=lzjb  -o exec=off    -o setuid=off  zroot/var/log
Fixit# zfs create -o compression=gzip  -o exec=off    -o setuid=off  zroot/var/mail
Fixit# zfs create                      -o exec=off    -o setuid=off  zroot/var/run
Fixit# zfs create -o compression=lzjb  -o exec=on      -o setuid=off  zroot/var/tmp
Fixit# chmod 1777 /zroot/var/tmp
 
=== Install FreeBSD ===
 
Fixit> zfs set mountpoint=/tank/usr/home home
Fixit# cd /dist/8.2-*
Fixit# export DESTDIR=/zroot
Fixit# for dir in base catpages dict doc games info lib32 manpages ports; \
          do (cd $dir ; ./install.sh) ; done
 
*lib32 oder  proflibs
 
Fixit# cd src ; ./install.sh all
Fixit# cd ../kernels ; ./install.sh generic
Fixit# cd /zroot/boot ; cp -Rlp GENERIC/* /zroot/boot/kernel/
 
Fixit# zfs set readonly=on zroot/var/empty
 
=== post install ===
 
Fixit# chroot /zroot
 
*rc.conf
zfs_enable="YES"
hostname="beastie.mydomain.local"
ifconfig_re0="DHCP"
 
*loader.conf
zfs_load="YES"
vfs.root.mountfrom="zfs:zroot"
geom_eli_load="YES"
geli_ad0p4_keyfile0_load="YES"
geli_ad0p4_keyfile0_type="ad0p4:geli_keyfile0"
geli_ad0p4_keyfile0_name="/boot/key/ad0.key"
 
*fstab
# Device                      Mountpoint              FStype  Options        Dump    Pass#
/dev/ad0s2                    /bootdir                ufs    rw              0      0
 
 
Fixit> passwd
Fixit> tzsetup
Fixit> cd /etc/mail
Fixit> make aliases
Fixit> umount /dev
Fixit> exit
Fixit# cp /boot/zfs/zpool.cache /zroot/boot/zfs/zpool.cache
Fixit> mkdir /tank/boot/key
Fixtit> cp /boot/key/* /tank/boot/key
 
=== Finish install ===
 
Fixit# cd /zroot
Fixit# mv boot bootdir/
Fixit# ln -s bootdir/boot /zroot/boot
Fixit# chflags -h sunlink /zroot/boot
 
Fixit# export LD_LIBRARY_PATH=/mnt2/lib
 
Fixit# umount /zroot/bootdir
Fixit# zfs unmount -a


{| <!--class="wikitable"-->
Fixit# zfs set mountpoint=legacy zroot
|
Fixit# zfs set mountpoint=/tmp zroot/tmp
! hoch
Fixit# zfs set mountpoint=/usr zroot/usr
! Dringlichkeit
Fixit# zfs set mountpoint=/var zroot/var
! gering
Fixit# zfs set mountpoint=/usr/home home
|-
! hoch
|
* <u>[[Mailman]]: "Zulassen" von Mail-Adressen über die Domain <code>htw-dresden.de</code> hinaus</u>
|
* <u>[[KSS]]: Mailman über die Domain <code>kss-sachsen.de</code></u>
|
* <u>Dokumentation von allen "zu erledigende Dingen"</u>
|-
! Wichtigkeit
|
|
* [[AUS]]
|
|-
! gering
|
|
* <u>[[Admin:kurze URL | kurze URL]]</u>
|
|}
<u>besondere persönliche Präferenz</u>

Bitte beachte, dass alle Beiträge zu Wiki StuRa HTW Dresden von anderen Mitwirkenden bearbeitet, geändert oder gelöscht werden können. Reiche hier keine Texte ein, falls du nicht willst, dass diese ohne Einschränkung geändert werden können.

Du bestätigst hiermit auch, dass du diese Texte selbst geschrieben hast oder diese von einer gemeinfreien Quelle kopiert hast (weitere Einzelheiten unter StuRa HTW Dresden:Urheberrechte). ÜBERTRAGE OHNE GENEHMIGUNG KEINE URHEBERRECHTLICH GESCHÜTZTEN INHALTE!

Bitte beantworte die folgende Frage, um diese Seite speichern zu können (weitere Informationen):

Abbrechen Bearbeitungshilfe (wird in einem neuen Fenster geöffnet)