J'ai effecuté l'installation d'IPCOP sur un boitier Soekris Net5501, paramétrage spécifique pour les fichiers suivant:
grub.conf
- Code: Tout sélectionner
serial --unit=0 --speed=38400
terminal --timeout=1 serial
timeout 3
default saved
foreground = 16064e
background = ffffff
#splashimage (hd0,0)/grub/ipcop.xpm.gz
title IPCop
root (hd0,0)
kernel /vmlinuz root=/dev/hda4 panic=10 acpi=off console=tty0 console=ttyS0,38400 ro
savedefault
title IPCop old (2.4.34)
root (hd0,0)
kernel /vmlinuz-2.4.34 root=/dev/hda4 panic=10 acpi=off ro
savedefault
title IPCop old (2.4.34 ACPI enabled)
root (hd0,0)
kernel /vmlinuz-2.4.34 root=/dev/hda4 panic=10 ro
savedefault
inittab:
- Code: Tout sélectionner
#
# $Id: inittab,v 1.6.2.1 2006/01/24 15:25:35 franck78 Exp $
#
id:3:initdefault:
l0:0:wait:/etc/rc.d/rc.halt halt
l6:6:wait:/etc/rc.d/rc.halt reboot
si::sysinit:/etc/rc.d/rc.sysinit
# Trap CTRL-ALT-DELETE
ca::ctrlaltdel:/sbin/shutdown -r now
# Run gettys in standard runlevels
#1:2345:respawn:/sbin/mingetty tty1
#2:2345:respawn:/sbin/mingetty tty2
#3:2345:respawn:/sbin/mingetty tty3
#4:2345:respawn:/sbin/mingetty tty4
#5:2345:respawn:/sbin/mingetty tty5
#6:2345:respawn:/sbin/mingetty tty6
S0:2345:respawn:/sbin/mingetty ttyS0 38400
# Going single user mode for maintenance
xx:S1:respawn:/bin/bash
modules.conf
- Code: Tout sélectionner
# USB HID Settings
above hid keybdev
# ISDN Settings
alias char-major-43 hisax
alias char-major-44 hisax
alias char-major-45 hisax
alias ippp0 off
alias ippp1 off
# PPP Settings
alias char-major-108 ppp_generic
alias /dev/ppp ppp_generic
alias tty-ldisc-3 ppp_async
alias tty-ldisc-13 n_hdlc
alias tty-ldisc-14 ppp_synctty
alias ppp-compress-21 bsd_comp
alias ppp-compress-24 ppp_deflate
alias ppp-compress-26 ppp_deflate
alias net-pf-8 atm
alias net-pf-24 pppoe
alias char-major-144 pppox
alias char-major-166 acm
keep
alias usb-controller usb-ohci
et securetty
- Code: Tout sélectionner
ttyS0
tty1
tty2
tty3
tty4
tty5
tty6
ttyp0
ttyp1
ttyp2
ttyp3
ttyp4
ttyp5
ttyp6
ttyp7
ttyp8
ttyp9
ttypa
ttypb
ttypc
ttypd
ttype
ttypf
porfile
- Code: Tout sélectionner
# /etc/bashrc
export TERM=vt100
umask 022
unset i
# are we an interactive shell?
if [ "$PS1" ]; then
if [ -x /usr/bin/tput ]; then
if [ "x`tput kbs`" != "x" ]; then # We can't do this with "dumb" terminal
stty erase `tput kbs`
elif [ -x /usr/bin/wc ]; then
if [ "`tput kbs|wc -c `" -gt 0 ]; then # We can't do this with "dumb" terminal
stty erase `tput kbs`
fi
fi
fi
fi
# Path manipulation
PATH="/sbin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/usr/local/bin"
# No core files by default
ulimit -S -c 0 > /dev/null 2>&1
USER=`id -un`
LOGNAME=$USER
HOSTNAME=`/bin/hostname`
HISTSIZE=250
if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
INPUTRC=/etc/inputrc
fi
export PATH USER LOGNAME HOSTNAME HISTSIZE INPUTRC
# LS Colors
alias dir='ls'
alias ll='ls -l --color=tty'
alias ls='ls --color=tty'
# IPCop language settings
LANG=en_US.utf8
PS1='\[\033[1;33m\]\u\[\033[1;37m\]@\[\033[1;32m\]\h\[\033[1;37m\]:\[\033[1;31m\]\w \[\033[1;36m\]\$ \[\033[0m\]'
echo -n -e '\033%G'
export LANG PS1
Le systeme fonctionne à merveille sauf que dès que je lance le setup via le port serie l'affichage est tout en bordel, j'ai essayé differents type d'emulation (vt100.ansi, linux..)
Quelqu'un aurai-t-il une idée ?
Merci d'avance