von SuSE auf Debian

Du kommst mit der Installation nicht voran oder willst noch was nachfragen? Schau auch in den "Tipps und Tricks"-Bereich.
Antworten
c4stro
Beiträge: 9
Registriert: 16.03.2005 14:16:41
Wohnort: Berlin

von SuSE auf Debian

Beitrag von c4stro » 16.03.2005 14:49:01

Hallo,
da ich die Bugs in SuSE nun langsam leid bin möchte ich mein Fileserver auf debian umstellen.
Meine Daten liegen auf Reiserfs partitionen und haben ein Größe erreicht die ich nicht mehr auf andere Platten kopieren kann ca. 800GB, außerdem würde ich auch gerne bei Reiserfs bleiben.
- Daher nun meine Frage, welcher Kernel unterstützt per default Reiserfs?
Desweiteren würde ich gerne die Installationsquelle lokal haben aber welche Verzeichnisse brauche ich vom debian mirror?
als server dachte ich mir so: ftp://ftp.gwdg.de/linux/debian/
und Verzeichnisse: debian & debian-non-US
zu viel / zu wenig ? Hab einen AMD im Server würde aber auch gerne die Installationsquelle für Intel Cpus nutzen, reicht denn i386 oder ist das bei debian anders?
(Apt-get nutzt mir nicht viel hab ja noch kein debian installiert würde das ganze gerne unter SuSE über rsync erledigen)
Bedanke mich schon mal für Antworten
Gruß c4stro

kobler
Beiträge: 120
Registriert: 25.10.2004 21:38:49
Wohnort: Oberösterreich
Kontaktdaten:

Beitrag von kobler » 16.03.2005 15:59:16

hallo,

unter http://debiananwenderhandbuch.de/migrat ... ebian.html

solltest du dein informationen finden.



mfg


kobler alois

c4stro
Beiträge: 9
Registriert: 16.03.2005 14:16:41
Wohnort: Berlin

Beitrag von c4stro » 16.03.2005 17:55:05

danke erstmal für replay, hab mir das mal angeschaut aber die Partition für das root fs will ich schon vorher formatieren. Wenn dann soll die SuSE schon komplett weg ;).
Hab hier im Forum auch ein link für ein rsync script gefunden (thx too Athlux) und das ganze mal darauf angepaßt das ich woody und sarge habe

[code]
#! /bin/sh
set -e

# This script originates from http://www.debian.org/mirror/anonftpsync

# Note: You MUST have rsync 2.0.16-1 or newer, which is available in slink
# and all newer Debian releases, or at http://rsync.samba.org/

# Set the variables below to fit your site. You can then use cron to have
# this script run daily to automatically update your copy of the archive.

# Don't forget:
# chmod 744 anonftpsync

# TO is the destination for the base of the Debian mirror directory
# (the dir that holds dists/ and ls-lR).

TO=

# RSYNC_HOST is the site you have chosen from the mirrors file.
# (http://www.debian.org/mirror/list-full)

RSYNC_HOST=ftp.gwdg.de

# RSYNC_DIR is the directory given in the "Packages over rsync:" line of
# the mirrors file for the site you have chosen to mirror.

RSYNC_DIR=pub/linux/debian/debian/

# EXCLUDE is a list of parameters listing patterns that rsync will exclude.
# The following example would exclude mostly everything:
#EXCLUDE="\
--exclude binary-alpha/ --exclude binary-arm/ --exclude binary-i386/ \
--exclude binary-m68k/ --exclude binary-powerpc/ --exclude binary-sparc/ \
--exclude binary-ia64/ --exclude binary-mips*/ --exclude binary-hppa/ \
--exclude binary-sh/ --exclude binary-s390/ \
--exclude binary-hurd-i386/ \
--exclude *_alpha.deb --exclude *_arm.deb --exclude *_i386.deb \
--exclude *_m68k.deb --exclude *_powerpc.deb --exclude *_sparc.deb \
--exclude *_ia64.deb --exclude *_hppa.deb --exclude *_sh.deb \
--exclude *_mips.deb --exclude *_mipsel.deb --exclude *_s390.deb \
--exclude *_hurd-i386.deb \
--exclude disks-alpha/ --exclude disks-arm/ --exclude disks-i386/ \
--exclude disks-ia64/ --exclude disks-m68k/ --exclude disks-mips*/ \
--exclude disks-powerpc/ --exclude disks-s390/ --exclude disks-sparc/ \
# --exclude stable/ --exclude testing/ --exclude unstable/ \
--exclude source/ \
--exclude *.orig.tar.gz --exclude *.diff.gz --exclude *.dsc \
# --exclude /contrib/ --exclude /non-free/ \
# "

# With a blank EXCLUDE you will mirror the entire archive.

EXCLUDE=

# There should be no need to edit anything below this point, unless there
# are problems.

#-----------------------------------------------------------------------------#

# Note: on some non-Debian systems, hostname doesn't accept -f option.
# If that's the case on your system, make sure hostname prints the full
# hostname, and remove the -f option. If there's no hostname command,
# explicitly replace `hostname -f` with the hostname.
HOSTNAME=`hostname -f`

LOCK="${TO}/Archive-Update-in-Progress-${HOSTNAME}"

# Get in the right directory and set the umask to be group writable
#
cd $HOME
umask 002

# Check to see if another sync is in progress
if lockfile -! -l 43200 -r 0 "$LOCK"; then
echo ${HOSTNAME} is unable to start rsync, lock file exists
exit 1
fi
# Note: on some non-Debian systems, trap doesn't accept "exit" as signal
# specification. If that's the case on your system, try using "0".
trap "rm -f $LOCK > /dev/null 2>&1" exit

set +e
rsync --recursive --links --hard-links --times --verbose --compress --delete \
--exclude "Archive-Update-in-Progress-${HOSTNAME}" \
--exclude "project/trace/${HOSTNAME}" \
$EXCLUDE \
$RSYNC_HOST::$RSYNC_DIR $TO > rsync.log 2>&1
date -u > "${TO}/project/trace/${HOSTNAME}"

# Note: if you don't have savelog, use any other log rotation facility, or
# comment this out, the log will simply be overwritten each time.
savelog rsync.log > /dev/null 2>&1
[/code]
Ist nun nur die Frage ob das dann auch reicht nicht das da dann noch was fehlt.
Gruß und Dank
c4stro[/quote]

Antworten