#!/bin/sh # This file contains the informations specific to the target system # onto which Linux-HV will be installed # This is the number of make jobs that can be executed # simultaneously. Normally, a value of 2 per processor # gives good results. MAKEJOBS=1 # Installation type: server, ltsp-server or workstation. INST_TYPE="ltsp-server" # New user to create REGUSER="hugo" # Destination path where to install new Linux-HV system LFS="/" # Destination partition where to install new Linux-HV system LFS_PARTITION="/dev/sda8" # Boot partition (if applicable) BOOT_PARTITION="/dev/sda1" # Swap partition (if applicable) SWAP_PARTITION="/dev/sda2" # Define this when cross-compiling to the desired target # architecture. Default is x86 32-bits architecture (i686). # x86 (i686) # x86_64 (AMD Athlon 64) HVL_TARGET="x86" # Used for setting '-march=xxx' option in CFLAGS and CPPFLAGS MACHINE_ARCHITECTURE="athlon-xp" DEFAULT_EDITOR="emacs" # Keyboard mapping (example: us) KEYBOARD="us" # Sound card support: yes or no SOUND_CARD="no" # Removable media drives CDROM="/dev/hdc" DVD="/dev/hdc" # Define this if you want to use a remote CUPS print server #CUPS_SERVER="server.hugovil.com" TIMEZONE="America/Montreal" # General network settings INTERFACES="eth0 eth1 eth2" # GATEWAY is not required if using DHCP GATEWAY="192.168.1.1" MACHINE_NAME="server64" DOMAIN="hugovil.com" LAN_NETWORK_MASK="192.168.0.0/24" # Utilise par sane in stage3 # Define to yes if you have a dynamic address and you use a dynamic dns # service. USE_DYNAMIC_DNS="no" # Network interface card eth0 settings BOOTPROTO[0]="dhcp" # DNS servers addresses (not required if using DHCP) #NAMESERVER[0]="192.168.1.1" # Define this if you want the mail addressed to the root user automatically # be forwarded to someone else MAIL_ADMIN="hugo" # Define to unix (mbox) or mbx MAILBOX_FORMAT=unix # Alternate port for Sendmail (comment this line to use the standard port 25) SENDMAIL_PORT="25" # Alternate port for Apache (comment this line to use the standard port 80) HTTPD_PORT="80" APACHE_USER="www" # Samba support USE_SAMBA="no"