Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
ASUS A8N-SLI Delux
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Gentoo on AMD64
View previous topic :: View next topic  
Author Message
auspsx68
n00b
n00b


Joined: 08 Nov 2005
Posts: 5

PostPosted: Tue Nov 08, 2005 2:53 pm    Post subject: ASUS A8N-SLI Delux Reply with quote

I have an Asus A8N-SLI Delux motherboard with an AMS64 x 3200 CPU and 1 GIG of ram. I am trying to build a server using gentoo without any success. I want to use the Sli 3114 SATA Raid controller to raid 1 (2 x 80GIG WD SATA drives) I am using the gentoo 2005-1_x86_64 live cd. The cd boots and finds the sata drives but as two drives, I believe that this is fine and will be rectified after correct compliation of the lernel. The install goes perfect all the way to the end. I complle the SLI SATA drives into the kernel and all. The problem is when I reboot all I see on the screen is 99 99. How can I overcome this and get gentoo to work fine. Some additional information I am using reiserfs for the boot and root partitions and grub for the boot loader as lilo is masked out.
Back to top
View user's profile Send private message
mudrii
l33t
l33t


Joined: 26 Jun 2003
Posts: 789
Location: Singapore

PostPosted: Tue Nov 08, 2005 3:49 pm    Post subject: Reply with quote

Why Sil RAID is same as soft RAID and is SATA I generation use Nforce4 that is soft RAID too but have at least SATA II with NCQ support.
What you mean 99.99 > ?
_________________
www.gentoo.ro
Back to top
View user's profile Send private message
auspsx68
n00b
n00b


Joined: 08 Nov 2005
Posts: 5

PostPosted: Wed Nov 09, 2005 11:35 am    Post subject: Reply with quote

Thanks for the reply I will change to the nforce4 controller and give that a go. The 99 99 this is what is displayed on the screen when I attempt to reboot after install. Can you advise on how to install Gentoo on this board using the nforce chipset.
Back to top
View user's profile Send private message
mudrii
l33t
l33t


Joined: 26 Jun 2003
Posts: 789
Location: Singapore

PostPosted: Wed Nov 09, 2005 1:12 pm    Post subject: Reply with quote

I have ASUS A8N-SLI Premium same as your MB but not fun and SLI connector.
Just connect the hdd to nForce 4 SATA and boot from live CD and you will see sda drive recognize.
Do not use nForce4 LAN with LiveCD it has some problems just connect to MARVELL PCI Gbit LAN controller LAN cabel or modem etc.
Check if all modules are loaded with lsmod.
If your hardware is not recognize use
Code:
modeprobe sata_nv
modeprobe forcedeth
modeprobe skge


I made soft 2 x RAID
1. is RAID 1 /boot
2. is RAID 0 /
3. swap on booth hdd
First I partition my hdd with cfdisk ;-)
cfdisk /dev/sda
sda1 131.61 Boot ext2
sda2 163280.04 ext3
sda3 509.97 swap

cfdisk /dev/sdb
sdb1 131.61 Boot ext2
sdb2 163280.04 ext3
sdb3 509.97 swap

Second I change fs type with fdisk for make it RAID boot
Code:
fdisk /dev/sda
t>1>fd t>2>fd t>3>82 w
fdisk /dev/sdb
t>1>fd t>2>fd t>3>82 w


In step nr 3 I make a file raidtab for RAID matrix
Code:
 nano -w /etc/raidtab

# /boot (RAID 1)
raiddev                 /dev/md0
raid-level              1
nr-raid-disks           2
chunk-size              64
persistent-superblock   1
device                  /dev/sda1
raid-disk               0
device                  /dev/sdb1
raid-disk               1

# / (RAID 0)
raiddev                 /dev/md1
raid-level              0
nr-raid-disks           2
chunk-size              64
persistent-superblock   1
device                  /dev/sda2
raid-disk               0
device                  /dev/sdb2
raid-disk               1


In step nr 4 make RAID 0 and RAID 1 for /boot
Code:
modprobe md && cd /dev ; MAKEDEV md

mkraid --really-force /dev/md0 && mkraid --really-force /dev/md1

mkswap /dev/sda3 && mkswap /dev/sdb3 && swapon /dev/sda3 && swapon /dev/sdb3

cat /proc/mdstat

mke2fs /dev/md0 && mke2fs -j /dev/md1

mount -t ext3 /dev/md1 /mnt/gentoo && mkdir /mnt/gentoo/boot && mount -t ext2 /dev/md0 /mnt/gentoo/boot && mount


Next copy stage and portage from CD or from net after we edit /etc/make.conf
Code:
nano -w /mnt/gentoo/etc/make.conf

##this is my flags and if you do not know what are you doing put standard handbook cflags -O2 -pipe for CFLAGS
USE="amd64 multilib nptl nptlonly"
CFLAGS="-march=k8 -O3 -pipe -funroll-all-loops -fpeel-loops -ftracer -ffast-math -msse3 -fforce-addr"
CXXFLAGS="${CFLAGS} -fvisibility-inlines-hidden"
CHOST="x86_64-pc-linux-gnu"
LDFLAGS="-Wl,-O1 -Wl,--sort-common"
PORTDIR_OVERLAY=/usr/local/portage
GENTOO_MIRRORS="ftp://ftp.ecc.u-tokyo.ac.jp/GENTOO http://gentoo.gg3.net/ ftp://gg3.net/pub/linux/gentoo/"
MAKEOPTS="-j3"


After emerge system bootstrap compile kernel etc etc modify fstab
Code:
 nano -w /etc/fstab

/dev/md0                /boot           ext2         noauto,noatime            1 2
/dev/md1                /               ext3         noatime                   0 1
/dev/sda3               none            swap         sw,pri=1                  0 0
/dev/sdb3               none            swap         sw,pri=1                  0 0
/dev/cdroms/cdrom0      /mnt/cdrom      iso9660      noauto,ro                 0 0
/dev/fd0                /mnt/floppy     auto         noauto,users              0 0
none                    /proc           proc         defaults                  0 0
none                    /dev/shm        tmpfs        nodev,nosuid,noexec       0 0


And install run grub
Code:

grub
find /boot/grub/stage1

root (hd0,0)       
setup (hd0)

root (hd1,0)       
setup (hd1)

quit


Edit grub.conf > in my chase

Code:
nano -w /boot/grub/grub.conf

default 0
timeout 21
splashimage=(hd0,0)/grub/splash.xpm.gz

title=Gentoo 2.6.14 fb notsc
root (hd0,0)
kernel /boot/gentoo-sources-2.6.14 root=/dev/md1 video=vesafb:ywrap,mtrr,1280x1024-24@75 notsc clock=pmtmr

title Floppy
root (fd0)
chainloader +1

title Change the colors
color light-green/brown blink-red/blue

title Install GRUB into the hard disk
root (hd0,0)
setup (hd0)


and that’s all
I hope it helps
Regards
_________________
www.gentoo.ro
Back to top
View user's profile Send private message
auspsx68
n00b
n00b


Joined: 08 Nov 2005
Posts: 5

PostPosted: Wed Nov 09, 2005 1:48 pm    Post subject: Reply with quote

Thanks for your reply, however I am not really after a software raid I was going more along the line of a hardware raid utilising the bios raid function. At the moment I can achieve this in Fedora 3 x86_64 and the SLI 3114 controller but I am having loads of trouble with the SELinux profile and being able to config apache. Fedora allows me to run the 2 x SATA drives in a hardware raid config and only seees them as one drive, I am hoping to achieve this in gentoo. Any help would be much appreciated.
Back to top
View user's profile Send private message
mudrii
l33t
l33t


Joined: 26 Jun 2003
Posts: 789
Location: Singapore

PostPosted: Wed Nov 09, 2005 3:13 pm    Post subject: Reply with quote

It is not hardware RAID is soft RAID nForce4 is SOFT RAID, SIL is SOFT RAID this drv that you install is a soft part of the RAID.
If you wona true RAID go to adaptek SCSI or even SATA Arca PC-x RAID 6.
You can use dmraid utill if you wish but I am not shure if you can faind on Gentoo LiveCD 64 and is not other Live CD for 64 bit with dmraid as i know.
_________________
www.gentoo.ro
Back to top
View user's profile Send private message
auspsx68
n00b
n00b


Joined: 08 Nov 2005
Posts: 5

PostPosted: Wed Nov 09, 2005 10:09 pm    Post subject: Reply with quote

Thanks for the info I understand what you are saying about software raid seems a bit disappointing if the board raid is not a true raid but only soft raid (False Advertising) just could have got a cheaper board and raided of the normal bus if all I was going to end up with was soft raid. Anyway back to the install following your instructions do I still need to compile the Nvidia drivers into the kernel or do I load them as a module? Also when configuring the SATA drives should I configure them as a raid set or just leave them a individual drives? Is is possible to use lilo instead of grub? Or should I just use grub as you indicated. Thanks for all your help
Back to top
View user's profile Send private message
mudrii
l33t
l33t


Joined: 26 Jun 2003
Posts: 789
Location: Singapore

PostPosted: Thu Nov 10, 2005 2:34 am    Post subject: Reply with quote

auspsx68 wrote:
Thanks for the info I understand what you are saying about software raid seems a bit disappointing if the board raid is not a true raid but only soft raid (False Advertising) just could have got a cheaper board and raided of the normal bus if all I was going to end up with was soft raid.

It is not a big performance diff between soft RAID and hardware RAID on recent CPU.
And all onboard RAID for desktop MB are soft RAID.

auspsx68 wrote:
Anyway back to the install following your instructions do I still need to compile the Nvidia drivers into the kernel or do I load them as a module?

If you make reference to motherboard nForce driver answer is Yes you should compile in kernel.

auspsx68 wrote:
Also when configuring the SATA drives should I configure them as a raid set or just leave them a individual drives?

It is your choice if you want use RAID or not I will show you some benchmark on my system.
Code:
#For /dev/sda
hdparm -tT /dev/sda

/dev/sda:
 Timing cached reads:   2592 MB in  2.00 seconds = 1295.92 MB/sec
 Timing buffered disk reads:  170 MB in  3.00 seconds =  56.66 MB/sec

#For RAID 0
hdparm -tT /dev/md1

/dev/md1:
 Timing cached reads:   2480 MB in  2.00 seconds = 1239.92 MB/sec
 Timing buffered disk reads:  336 MB in  3.02 seconds = 111.40 MB/sec
##On my RAID 0 speed is double on ext3 fs

If you choice RAID you must compile it in the kernel.

auspsx68 wrote:
Is is possible to use lilo instead of grub? Or should I just use grub as you indicated. Thanks for all your help

I did not use Lilo for long time and I do not know how to cfg for RAID but you ca search more nfo on forum and you will find you answers.
Regards
_________________
www.gentoo.ro
Back to top
View user's profile Send private message
auspsx68
n00b
n00b


Joined: 08 Nov 2005
Posts: 5

PostPosted: Thu Nov 10, 2005 9:18 am    Post subject: Reply with quote

Thanks mate here is my total install sequence can you have a look and let me know it it will work. I will also need to compile the raid drivers into the kernel raid 0 and 1.


# modeprobe sata_nv
# modeprobe forcedeth
# modeprobe skge

# ifconfig eth0 ${IP_ADDR} broadcast ${BROADCAST} netmask ${NETMASK} up
# route add default gw ${GATEWAY}

# nano -w /etc/resolv.conf
nameserver ${NAMESERVER1}
nameserver ${NAMESERVER2}

# fdisk /dev/sda
sda1 200M /Boot ext2 fd
sda2 1024M swap 82
sda3 Remaining / ext3 fd

# fdisk /dev/sdb
sdb1 200M /Boot ext2 fd
sdb2 1024M swap 82
sdb3 Remaining / ext3 fd

# nano -w /etc/raidtab

# /boot (RAID 1)
raiddev /dev/md0
raid-level 1
nr-raid-disks 2
chunk-size 64
persistent-superblock 1
device /dev/sda1
raid-disk 0
device /dev/sdb1
raid-disk 1

# / (RAID 0)
raiddev /dev/md1
raid-level 0
nr-raid-disks 2
chunk-size 64
persistent-superblock 1
device /dev/sda3
raid-disk 0
device /dev/sdb3
raid-disk 1

# modprobe md && cd /dev ; MAKEDEV md
# mkraid --really-force /dev/md0 && mkraid --really-force /dev/md1
# mkswap /dev/sda2 && mkswap /dev/sdb2 && swapon /dev/sda2 && swapon /dev/sdb2
# cat /proc/mdstat
# mke2fs /dev/md0 && mke2fs -j /dev/md1
# mount -t ext3 /dev/md1 /mnt/gentoo && mkdir /mnt/gentoo/boot && mount -t ext2 /dev/md0 /mnt/gentoo/boot && mount
# cd /mnt/gentoo
# tar -xvjpf /mnt/cdrom/stages/stage3-<subarch>-2005.1.tar.bz2
# tar -xvjf /mnt/cdrom/snapshots/portage-<date>.tar.bz2 -C /mnt/gentoo/usr
# mkdir /mnt/gentoo/usr/portage/distfiles
# cp /mnt/cdrom/distfiles/* /mnt/gentoo/usr/portage/distfiles/

# nano -w /mnt/gentoo/etc/make.conf

##this is my flags and if you do not know what are you doing put standard handbook cflags -O2 -pipe for CFLAGS
USE="amd64 multilib nptl nptlonly"
CFLAGS="-march=k8 -O3 -pipe -funroll-all-loops -fpeel-loops -ftracer -ffast-math -msse3 -fforce-addr"
CXXFLAGS="${CFLAGS} -fvisibility-inlines-hidden"
CHOST="x86_64-pc-linux-gnu"
LDFLAGS="-Wl,-O1 -Wl,--sort-common"
PORTDIR_OVERLAY=/usr/local/portage
GENTOO_MIRRORS="ftp://ftp.ecc.u-tokyo.ac.jp/GENTOO http://gentoo.gg3.net/ ftp://gg3.net/pub/linux/gentoo/"
MAKEOPTS="-j3"

# mount -t proc none /mnt/gentoo/proc
# cp -L /etc/resolv.conf /mnt/gentoo/etc/resolv.conf
# cp -L /etc/raidtab /mnt/gentoo/etc/raidtab

# chroot /mnt/gentoo /bin/bash
# env-update
# source /etc/profile

# ln -sf /usr/share/zoneinfo/GMT /etc/localtime
# emerge gentoo-sources
# cd /usr/src/linux
# make menuconfig

Processor type and features --->
Processor family (AMD-Opteron/Athlon64) --->
(*) AMD-Opteron/Athlon64
( ) Intel EM64T
( ) Generic-x86-64"

File systems --->
Pseudo Filesystems --->
<*> /proc file system support
< > /dev file system support (OBSOLETE)
<*> Virtual memory file system support (former shm fs)

(Select one or more of the following options as needed by your system)
< > Reiserfs support
<*> Ext3 journalling file system support
< > JFS filesystem support
<*> Second extended fs support
< > XFS filesystem support

Processor type and features --->
[ ] Symmetric multi-processing support

Device Drivers --->
SCSI device support --->
<*> SCSI device support
<*> SCSI disk support
<*> SCSI generic support
Device Drivers --->
SCSI device support --->
SCSI low-level drivers --->
[*] Serial ATA (SATA) support
< > ServerWorks Frodo / Apple K2 SATA support (EXPERIMENTAL)
< > Intel PIIX/ICH SATA support
<*> NVIDIA SATA support
< > Promise SATA TX2/TX4 support
< > Promise SATA SX4 support
< > Silicon Image SATA support
< > SiS 964/180 SATA support
< > VIA SATA support
< > VITESSE VSC-7174 SATA support


# make && make modules_install
# cp arch/x86_64/boot/bzImage /boot/kernel-2.6.12-gentoo-r6
# cp .config /boot/config-2.6.12-gentoo-r6

# nano -w /etc/fstab

/dev/md0 /boot ext2 noauto,noatime 1 2
/dev/md1 / ext3 noatime 0 1
/dev/sda2 none swap sw,pri=1 0 0
/dev/sdb2 none swap sw,pri=1 0 0
/dev/cdroms/cdrom0 /mnt/cdrom iso9660 noauto,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,users 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs nodev,nosuid,noexec 0 0

# nano -w /etc/conf.d/hostname
# nano -w /etc/conf.d/domainname
# nano -w /etc/conf.d/domainname
# rc-update add domainname default

# nano -w /etc/conf.d/net
config_eth0=( "192.168.0.2 netmask 255.255.255.0" )
routes_eth0=( "default gw 192.168.0.1" )

# rc-update add net.eth0 default
# passwd

# emerge syslog-ng
# rc-update add syslog-ng default
# emerge vixie-cron
# rc-update add vixie-cron default

# emerge grub
grub>> find /boot/grub/stage1
grub>> root (hd0,0)
grub>> setup (hd0)
grub>> root (hd1,0)
grub>> setup (hd1)
grub>> quit

# nano -w /boot/grub/grub.conf

default 0
timeout 21
splashimage=(hd0,0)/grub/splash.xpm.gz

title=Gentoo 2.6.14 fb notsc
root (hd0,0)
kernel /boot/gentoo-sources-2.6.14 root=/dev/md1 video=vesafb:ywrap,mtrr,1280x1024-24@75 notsc clock=pmtmr

# cp /proc/mounts /etc/mtab
# grub-install /dev/sda
# grub-install /dev/sdb

# exit
# cd
# umount /mnt/gentoo/boot /mnt/gentoo/proc /mnt/gentoo
# reboot
Back to top
View user's profile Send private message
mudrii
l33t
l33t


Joined: 26 Jun 2003
Posts: 789
Location: Singapore

PostPosted: Thu Nov 10, 2005 3:41 pm    Post subject: Reply with quote

Boot from 64 bit Gentoo 2005.1 LiveCD
Boot options
Code:
gentoo-nofb noapic

Checj modules and modeprobe drivers
Code:
#lsmod
# modeprobe sata_nv
# modeprobe forcedeth
# modeprobe skge

Config network
Code:
# ifconfig eth0 ${IP_ADDR} broadcast ${BROADCAST} netmask ${NETMASK} up
# route add default gw ${GATEWAY}

# nano -w /etc/resolv.conf
nameserver ${NAMESERVER1}
nameserver ${NAMESERVER2}
#ping www.yahoo.com[/code]
Prepare hdd
Code:
# fdisk /dev/sda
sda1 200M /Boot ext2 fd
sda2 1024M swap 82
sda3 Remaining / ext3 fd

# fdisk /dev/sdb
sdb1 200M /Boot ext2 fd
sdb2 1024M swap 82
sdb3 Remaining / ext3 fd

Prepare Raid config file
Code:
# nano -w /etc/raidtab

# /boot (RAID 1)
raiddev /dev/md0
raid-level 1
nr-raid-disks 2
chunk-size 64
persistent-superblock 1
device /dev/sda1
raid-disk 0
device /dev/sdb1
raid-disk 1

# / (RAID 0)
raiddev /dev/md1
raid-level 0
nr-raid-disks 2
chunk-size 64
persistent-superblock 1
device /dev/sda3
raid-disk 0
device /dev/sdb3
raid-disk 1

Make RAID and fs
Code:
# modprobe md && cd /dev ; MAKEDEV md
# mkraid --really-force /dev/md0 && mkraid --really-force /dev/md1
# mkswap /dev/sda2 && mkswap /dev/sdb2 && swapon /dev/sda2 && swapon /dev/sdb2
# cat /proc/mdstat
# mke2fs /dev/md0 && mke2fs -j /dev/md1
# mount -t ext3 /dev/md1 /mnt/gentoo && mkdir /mnt/gentoo/boot && mount -t ext2 /dev/md0 /mnt/gentoo/boot && mount

untar portage and stage 3
Code:
 # cd /mnt/gentoo
# tar -xvjpf /mnt/cdrom/stages/stage3-<subarch>-2005.1.tar.bz2
# tar -xvjf /mnt/cdrom/snapshots/portage-<date>.tar.bz2 -C /mnt/gentoo/usr
# mkdir /mnt/gentoo/usr/portage/distfiles
# cp /mnt/cdrom/distfiles/* /mnt/gentoo/usr/portage/distfiles/

Edit make.conf
Code:
# nano -w /mnt/gentoo/etc/make.conf

USE="amd64 multilib nptl nptlonly"
CFLAGS="-march=k8 -O3 -pipe -msse3"
CXXFLAGS="${CFLAGS} -fvisibility-inlines-hidden"
CHOST="x86_64-pc-linux-gnu"
PORTDIR_OVERLAY=/usr/local/portage
GENTOO_MIRRORS="your mirror sites"
MAKEOPTS="-j2"

Mount and chroot
Code:
#mkdir /mnt/gentoo/usr/local/portage && mount -t proc none /mnt/gentoo/proc && cp -L /etc/resolv.conf /mnt/gentoo/etc/resolv.conf && cp /etc/raidtab /mnt/gentoo/etc/raidtab && chroot /mnt/gentoo /bin/bash && env-update && source /etc/profile


And rest as in installation manual with specific to your platform

# ln -sf /usr/share/zoneinfo/GMT /etc/localtime
# emerge gentoo-sources
# cd /usr/src/linux
# make menuconfig

Processor type and features --->
Processor family (AMD-Opteron/Athlon64) --->
(*) AMD-Opteron/Athlon64
( ) Intel EM64T
( ) Generic-x86-64"

File systems --->
Pseudo Filesystems --->
<*> /proc file system support
< > /dev file system support (OBSOLETE)
<*> Virtual memory file system support (former shm fs)

(Select one or more of the following options as needed by your system)
< > Reiserfs support
<*> Ext3 journalling file system support
< > JFS filesystem support
<*> Second extended fs support
< > XFS filesystem support

Processor type and features --->
[ ] Symmetric multi-processing support

Device Drivers --->
SCSI device support --->
<*> SCSI device support
<*> SCSI disk support
<*> SCSI generic support
Device Drivers --->
SCSI device support --->
SCSI low-level drivers --->
[*] Serial ATA (SATA) support
< > ServerWorks Frodo / Apple K2 SATA support (EXPERIMENTAL)
< > Intel PIIX/ICH SATA support
<*> NVIDIA SATA support
< > Promise SATA TX2/TX4 support
< > Promise SATA SX4 support
< > Silicon Image SATA support
< > SiS 964/180 SATA support
< > VIA SATA support
< > VITESSE VSC-7174 SATA support


# make && make modules_install
# cp arch/x86_64/boot/bzImage /boot/kernel-2.6.12-gentoo-r6
# cp .config /boot/config-2.6.12-gentoo-r6

# nano -w /etc/fstab

/dev/md0 /boot ext2 noauto,noatime 1 2
/dev/md1 / ext3 noatime 0 1
/dev/sda2 none swap sw,pri=1 0 0
/dev/sdb2 none swap sw,pri=1 0 0
/dev/cdroms/cdrom0 /mnt/cdrom iso9660 noauto,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,users 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs nodev,nosuid,noexec 0 0

# nano -w /etc/conf.d/hostname
# nano -w /etc/conf.d/domainname
# nano -w /etc/conf.d/domainname
# rc-update add domainname default

# nano -w /etc/conf.d/net
config_eth0=( "192.168.0.2 netmask 255.255.255.0" )
routes_eth0=( "default gw 192.168.0.1" )

# rc-update add net.eth0 default
# passwd

# emerge syslog-ng
# rc-update add syslog-ng default
# emerge vixie-cron
# rc-update add vixie-cron default

# emerge grub
grub>> find /boot/grub/stage1
grub>> root (hd0,0)
grub>> setup (hd0)
grub>> root (hd1,0)
grub>> setup (hd1)
grub>> quit

# nano -w /boot/grub/grub.conf

default 0
timeout 21
splashimage=(hd0,0)/grub/splash.xpm.gz

title=Gentoo kernel-2.6.12-gentoo-r6. fb notsc
root (hd0,0)
kernel /boot/ kernel-2.6.12-gentoo-r6 root=/dev/md1 notsc clock=pmtmr

# cp /proc/mounts /etc/mtab
# grub-install /dev/sda
# grub-install /dev/sdb

# exit
# cd
# umount /mnt/gentoo/boot /mnt/gentoo/proc /mnt/gentoo
# reboot

And after reboot make some changes in make.conf USE flags
and the rest
_________________
www.gentoo.ro
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Gentoo on AMD64 All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum