Displaying 20 results from an estimated 22 matches for "langsupport".
2008 Feb 06
2
kickstart %post not executed
...ation goes well but it completely ignores the %post
bit in the kickstart:
# Kickstart file for a generic VM
install
url --url http://server/mrepo/centos4-x86_64/disc1
cmdline
skipx
reboot
# Partition information
.....
# General system config
bootloader --location=mbr
keyboard uk
lang en_GB.UTF-8
langsupport en_GB.UTF-8
timezone --utc GMT
mouse none
# Network information
network --device eth0 --bootproto dhcp
# Security bits
authconfig --enableshadow --enablemd5 --enablecache
rootpw --iscrypted somepasswd
firewall --disabled
selinux --disabled
%packages
@core
%post
echo "Now starting post in...
2006 Mar 14
8
PXE boot, Kickstart NFS install and %include...
I was just wondering how (or indeed if) people use the %include
directive in Kickstart configuration files when building systems via
NFS. I've been trying to modularise our Kickstart files a little to
make things more readable, having generic defaults and role specific
stuff split out into separate configs.
I've tried this configuration...
[root at archive kickstart]# cat
2008 Jun 30
2
kickstart and lang
I have a line like:
lang en_US.UTF-8
in my kickstart file. However it stops on that screen to prompt me.
Everything else works fine... I am using centos 4.6.
Is this line no longer correct? I am sure I got it from a anaconda file
to start with.
Jerry
2007 Apr 13
2
Anaconda can't squeeze out the repomd.xml
...conda. I'm getting the error:
"Cannot open repomd.xml file...."
the file seems to be located in the repodata directory...
I'm using the following .cf taken directly from the CentOS 4.4 install :
install
url --url ftp://centos.westmancom.com/5.0/os/i386/
#cdrom
lang en_US.UTF-8
langsupport --default=en_US.UTF-8 en_US.UTF-8
keyboard us
network --device eth0 --bootproto static --ip 192.168.1.165 --netmask
255.255.255.0 --gateway 192.168.1.1 --hostname eagle.mydomain.com
firewall --enabled --port=22:tcp --port=80:tcp --port=21:tcp
--port=25:tcp --port=443:tcp
selinux --disabled
authc...
2005 Jan 15
1
Guide to stripping Centos 3
...its experimentation with fast test installs (under ten minutes per test
shot, even on a low RAM host (64M)) to 'tune' for a desired result.
-- Russ Herrold
[root at ftp kickstart]# cat ks.cfg-Centos_34
#
# Centos 34 server - built to be tiny as possible
#
install
lang en_US.UTF-8
langsupport --default en_US.UTF-8 en_US.UTF-8
keyboard us
mouse genericwheelps/2 --device psaux
url --url ftp://10.16.33.105/pub/install/ftpinstall
# xconfig --card "RIVA128" --videoram 4096 --hsync 31.5-35.1 --vsync 50-61
--resolution 1280x800 --depth 24
skipx
network --device eth0 --bootproto dhcp...
2006 Sep 28
4
Trimming the fat out of a Centos 4.4 Installation
Hi, just to avoid re-inventing the wheel, is there any document that
can help me reduce even further a "minimum" installation of Centos 4.4
(BTW can you say 600mb is minimum)?
I am in the process of creating a small Centos-4.4-based Asterisk box
and I need to boot it from a CF card. Deleting useless packages will
help me do what i want.
Example: even a minimum install of Centos 4.4 (or
2006 Sep 28
4
Trimming the fat out of a Centos 4.4 Installation
Hi, just to avoid re-inventing the wheel, is there any document that
can help me reduce even further a "minimum" installation of Centos 4.4
(BTW can you say 600mb is minimum)?
I am in the process of creating a small Centos-4.4-based Asterisk box
and I need to boot it from a CF card. Deleting useless packages will
help me do what i want.
Example: even a minimum install of Centos 4.4 (or
2005 Aug 03
1
Modify rescue mode boot?
Hi,
I have been able to boot with pxe and load linux rescue, it loads
loader and ask me lang, keyboard,load base from nfs, etc... then it
ask me about mount chroot or skip, I just choose skip to go to shell.
What I want is boot in rescue mode and get a shell directly without
having to enter lang, keyboard, nfs ip and dir, skip, etc... once
booted on shell I want it automatically run a script
2007 Jul 31
0
Upgrade mode with kickstart
...o,
I'll like to add rpms during a upgrade with kickstart installation.
I specified the name of rpm in "%package" section but the rpm isn't
installed.
This feature isn't supported with CentOS 4.4 ?
# Kickstart
upgrade
# Reboot after install
reboot
#cdrom
lang en_US.UTF-8
langsupport --default=en_US.UTF-8 en_US.UTF-8
.....
%packages
vsftpd
...
Thanks in advance,
Denis MACHARD
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20070731/5545f1bb/attachment.html>
2008 Mar 13
0
kickstart LANG issue
i sent this to the kistart list also - but i thought i may try my luck
here also ;)
Hi
In my kix file i have LANG set to the following
lang en_GB
langsupport --default=en_GB en_GB
however on install the box is
# env | grep LANG
LANG=en_GB.UTF-8
# cat /etc/sysconfig/i18n
LANG="en_GB.UTF-8"
SUPPORTED="en_GB.UTF-8:en_GB:en"
How can i make it so the default LANG is en_GB and not UTF-8 ?
thanks
2006 Apr 22
2
kickstart
...g - - - - - - - - - -
## :: uncomment the following to debug a Kickstart config file
## interactive
## - - language and input support - - - - - - - -
## :: language used during install
lang en_US.UTF-8
## :: mouse used during install
mouse generic3ps/2
## :: runtime language and keyboard support
langsupport --default en_US.UTF-8 en_US.UTF-8
keyboard us
## - - video card and monitor - - - - - - - - - -
xconfig --card "VMWare" --videoram 16384 --hsync 31.5-37.9 --vsync 50-70
--resolution 800x600 --depth 16
## - - network configuration - - - - - - - - - -
network --device eth0 --bootproto d...
2002 Aug 08
0
PXE Question....
...23
label linux
kernel vmlinuz
ipappend 1
append ks=nfs:192.168.104.97:/tftpboot/boot/10.0.111.35/ks.cfg
initrd=initrd.img load_ramdisk=1
ks.cfg
10.0.111.34 10.0.111.35
[root at orca boot]# cat 10.0.111.34
cat: 10.0.111.34: Is a directory
[root at orca boot]# cat 10.0.111.34/ks.cfg
lang en_US
langsupport en_US
keyboard us
mouse none
timezone --utc Europe/Amsterdam
rootpw --iscrypted $1$?9Qp?7?5$tlEzEyfBj9OLcdAOZhfUP.
#reboot
text
bootloader --useLilo --linear --location=mbr
install
nfs --server orca.graddelt.com --dir /tftpboot/redhat/7.3/en/os/i386
part /boot --fstype ext3 --onpart sda2
part / --f...
2006 Dec 25
2
Kickstart Questions
...mask
255.255.255.0 --gateway 192.168.25.1 --nameserver
192.168.25.2,192.168.25.3 --hostname myhost4.mydomain.com
it's right under these: (#question, it does go at the end, in the
position I have it in right?)
----snip----------
# KICKSTART FOR STANDARD SERVER
install
cdrom
lang en_US.UTF-8
langsupport --default=en_US.UTF-8 en_US.UTF-8
keyboard us
# what's this for? I found it in an example file.
# %include /tmp/netconfig
firewall --disabled
selinux --disabled
# what's this for? Also found in example file.
%include /tmp/authconfig
# xconfig --startxonboot
# #####Question: Do I jus...
2008 Aug 16
0
kickstart and 5.2 x86_64 giving errors.
...rmost frame:
self: <network.Network instance at 0x2aeccea6c638>
myns: 10.0.2.3
dev: DEVICE=eth0
BOOTPROTO=dhcp
DHCPCLASS=
HWADDR=52:54:00:12:34:56
ONBOOT=yes
------------------
# Kickstart file automatically generated by anaconda.
auth --useshadow --enablemd5
install
cdrom
lang en_US.UTF-8
langsupport --default en_US.UTF-8 en_US.UTF-8
# Clear the Master Boot Record
zerombr
firstboot --disabled
keyboard us
xconfig --startxonboot
network --device eth0 --bootproto dhcp --hostname MessageNet.msgnet.com
rootpw mnkickstart
firewall --enabled --http --ssh --smtp
authconfig --enableshadow --enablemd5...
2007 Mar 29
1
pxelinux.0...error: not a valid image; unable to load file
...-----------------------------------------------------------------------------------------
--------------------------
ks.cfg (kickstart)
--------------------------
#Generated by Kickstart Configurator
# Thu Feb 22 13:21:07 CST 2007
#linux vnc
#System language
lang en_US
#Language modules to install
langsupport --default en_US en_US
#System keyboard
keyboard us
#System mouse
mouse genericps/2
#System timezone
timezone America/Chicago
#Use text mode install
#text
#System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
#Device probing
device eth0 bcm4400
devi...
2011 Aug 14
4
Kickstart installation error
Hi,
I?m trying kickstart on CentOS
Below is my ks.cfg
*[root at localhost ~]# cat /root/ks.cfg*
*
*
#Generated by Kickstart Configurator
#platform=x86, AMD64, or Intel EM64T
#System language
lang en_US
#Language modules to install
langsupport en_US
#System keyboard
keyboard us
#System mouse
mouse
#Sytem timezone
timezone Asia/Dili
#Root password
rootpw --iscrypted $1$597tHcci$7GOVXzr92.Ce5IaqnXZA30
#Reboot after installation
reboot
#Use text mode install
text
#Install OS instead of upgrade
install
#Use Web installation
u...
2008 Mar 13
2
CentOS 5.1 install via PXE Failure
...##################################
# Start global configuration options #
######################################
# See the kickstart documentation for an explanation of these options
# http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/sysadmin-guide/s1-kickstart2-options.html
lang en_AU
langsupport en_AU
keyboard us
mouse
timezone Australia/Sydney
rootpw --iscrypted <crypted password here>
reboot
install
url --url http://<internal_install_server>/CentOS-5/os/x86_64
bootloader --location=mbr
# Wipe the MBR
zerombr yes
# Remove the existing partition table
clearpart --all --init...
2008 Apr 22
1
32-bit Centos 5.1 kickstart hangs on xen domU HVM installation
...ot;
sdl = 0
vnc = 1
vncunused = 0
vncdisplay = 1
disk = [
"file:/tmp/prod-xenl-2.img,hda,w","file:/tmp/kickstart-20080307.iso,hdc:cdrom,r"
]
vif = [ "bridge=xenbr0,type=ioemu,model=rtl8139" ]
*
Kickstart file:*
#System language
lang en_US
#Language modules to install
langsupport en_US en --default=en_US
#System keyboard
keyboard us
#System mouse
mouse none
#Sytem timezone
timezone America/Los_Angeles
#Root password
rootpw --iscrypted $1$zdTapqUj$q.NMaDmwi1CjOPiRsyILB1
#Install OS instead of upgrade
install
url --url http://10.200.250.11/kickstart/OS/centos_5_1_32/
#Clear t...
2006 Jul 28
4
Kickstart from floppy falling into regular install
I took my anaconda-ks.cfg file, cp to ks.cfg and copied to a floppy
The isos have been copied to an ftp server. So I had the following
lines in my ks.cfg
intall
url ftp://10.1.1.1// (yes the ftp server's directory is the Centos
directory)
This is along with all the appropriate network command to get the
ethernet setup.
I issue the linux ks=floppy (also tried linux
2005 Apr 17
5
MIrrored drives won't boot after installation
I have a p4 motherboard with 2 ide interfaces, I connect 2 40 GB drives as
hda and hdc, I install Centos 4 from a CDROM, and partition the drives as 2
x raid partition each plus a swap partition on hda, the make md0 and md1 to
install /boot and / respectively. Install goes well, everything looks great,
go to reboot from drives, and all I get is "grub" but no boot. I have tried
this ten