Jump to content

Ubuntu 7.10 takes ages to load [solved]


Recommended Posts

First,

sudo cat /etc/hosts

gives

# The following lines are desirable for IPv6 hosts
::1	   ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

 

Secondly, in var/log/messages there are two instances where

ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0, disabled

Pops up 9 times, when LNKA changes to LNKB, LNKC, LNKD, LNKE, LNKF, LNKG, LNKH and LNKU.

 

Thirdly, the only things connected to my laptp when its turned on are the power cable and the mouse (the touchpad stopped working)

Link to comment
Share on other sites

Heres what boot/grub/menu.lst says:

# menu.lst - See: grub(8), info grub, update-grub(8)
#			grub-install(8), grub-floppy(8),
#			grub-md5-crypt, /usr/share/doc/grub
#			and /usr/share/doc/grub-doc/.

## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
# WARNING: If you are using dmraid do not use 'savedefault' or your
# array will desync and will not let you boot your system.
default		0

## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout		3

## hiddenmenu
# Hides the menu by default (press ESC to see the menu)
hiddenmenu

# Pretty colours
#color cyan/blue white/blue

## password ['--md5'] passwd
# If used in the first section of a menu file, disable all interactive editing
# control (menu entry editor and command-line)  and entries protected by the
# command 'lock'
# e.g. password topsecret
#	  password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
# password topsecret

#
# examples
#
# title		Windows 95/98/NT/2000
# root		(hd0,0)
# makeactive
# chainloader	+1
#
# title		Linux
# root		(hd0,1)
# kernel	/vmlinuz root=/dev/hda2 ro
#

#
# Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST

### BEGIN AUTOMAGIC KERNELS LIST
## lines between the AUTOMAGIC KERNELS LIST markers will be modified
## by the debian update-grub script except for the default options below

## DO NOT UNCOMMENT THEM, Just edit them to your needs

## ## Start Default Options ##
## default kernel options
## default kernel options for automagic boot options
## If you want special options for specific kernels use kopt_x_y_z
## where x.y.z is kernel version. Minor versions can be omitted.
## e.g. kopt=root=/dev/hda1 ro
##	  kopt_2_6_8=root=/dev/hdc1 ro
##	  kopt_2_6_8_2_686=root=/dev/hdc2 ro
# kopt=root=UUID=dfe39b72-7dd2-4d0c-af58-5abd9badd4bf ro

## Setup crashdump menu entries
## e.g. crashdump=1
# crashdump=0

## default grub root device
## e.g. groot=(hd0,0)
# groot=(hd0,0)

## should update-grub create alternative automagic boot options
## e.g. alternative=true
##	  alternative=false
# alternative=true

## should update-grub lock alternative automagic boot options
## e.g. lockalternative=true
##	  lockalternative=false
# lockalternative=false

## additional options to use with the default boot option, but not with the
## alternatives
## e.g. defoptions=vga=791 resume=/dev/hda5
# defoptions=quiet splash

## should update-grub lock old automagic boot options
## e.g. lockold=false
##	  lockold=true
# lockold=false

## Xen hypervisor options to use with the default Xen boot option
# xenhopt=

## Xen Linux kernel options to use with the default Xen boot option
# xenkopt=console=tty0

## altoption boot targets option
## multiple altoptions lines are allowed
## e.g. altoptions=(extra menu suffix) extra boot options
##	  altoptions=(recovery) single
# altoptions=(recovery mode) single

## controls how many kernels should be put into the menu.lst
## only counts the first occurence of a kernel, not the
## alternative kernel options
## e.g. howmany=all
##	  howmany=7
# howmany=all

## should update-grub create memtest86 boot option
## e.g. memtest86=true
##	  memtest86=false
# memtest86=true

## should update-grub adjust the value of the default booted system
## can be true or false
# updatedefaultentry=false

## should update-grub add savedefault to the default options
## can be true or false
# savedefault=false

## ## End Default Options ##

title		Ubuntu 7.10, kernel 2.6.22-14-generic
root		(hd0,0)
kernel		/boot/vmlinuz-2.6.22-14-generic root=UUID=dfe39b72-7dd2-4d0c-af58-5abd9badd4bf ro quiet splash
initrd		/boot/initrd.img-2.6.22-14-generic
quiet

title		Ubuntu 7.10, kernel 2.6.22-14-generic (recovery mode)
root		(hd0,0)
kernel		/boot/vmlinuz-2.6.22-14-generic root=UUID=dfe39b72-7dd2-4d0c-af58-5abd9badd4bf ro single
initrd		/boot/initrd.img-2.6.22-14-generic

title		Ubuntu 7.10, memtest86+
root		(hd0,0)
kernel		/boot/memtest86+.bin
quiet

### END DEBIAN AUTOMAGIC KERNELS LIST

Link to comment
Share on other sites

Is pretty standard grub config for Ubuntu. No real things that stand out - at least to me.

 

Ubuntu uses usplash, probably why nothing is mentioned in the grub config for splashimage. But that too is also OK, since usplash is taking care of it all.

Link to comment
Share on other sites

Try editing /boot/grub/menu.lst and at the end of the kernel line just after splash put:

 

acpi=off

 

and reboot. Alternatively, you can do this on the fly by pressing ESC when the computer is booting, and then editing from the grub screen. This will allow you to make the change just for that boot, rather than then having to re-edit the grub config to remove it after.

 

And see if it boots any quicker. I only suggest this because of all the ACPI errors you mentioned.

 

Otherwise, post the /var/log/messages and also open a console and as root do a dmesg and post the results also. Without more info, we won't be able to say why it takes so long. But try the acpi thing first.

Link to comment
Share on other sites

Heres what var/log/messages says:

Feb 12 16:21:13 localhost kernel: [ 7043.768000] ACPI: PCI interrupt for device 0000:00:14.2 disabled
Feb 12 16:21:13 localhost kernel: [ 7043.784000] ACPI: PCI interrupt for device 0000:00:13.2 disabled
Feb 12 16:21:13 localhost kernel: [ 7043.800000] ACPI: PCI interrupt for device 0000:00:13.1 disabled
Feb 12 16:21:13 localhost kernel: [ 7043.800000] ACPI: PCI interrupt for device 0000:00:13.0 disabled
Feb 12 16:21:13 localhost kernel: [ 7043.800000] Disabling non-boot CPUs ...
Feb 12 16:21:13 localhost kernel: [ 7043.800000] swsusp: critical section: 
Feb 12 16:21:13 localhost kernel: [ 7043.800000] swsusp: Need to copy 51390 pages
Feb 12 16:21:13 localhost kernel: [ 7043.832000] ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 19 (level, low) -> IRQ 17
Feb 12 16:21:13 localhost kernel: [ 7043.832000] ACPI: PCI Interrupt 0000:00:13.1[A] -> GSI 19 (level, low) -> IRQ 17
Feb 12 16:21:13 localhost kernel: [ 7043.848000] ACPI: PCI Interrupt 0000:00:13.2[A] -> GSI 19 (level, low) -> IRQ 17
Feb 12 16:21:13 localhost kernel: [ 7043.848000] usb usb3: root hub lost power or was reset
Feb 12 16:21:13 localhost kernel: [ 7043.848000] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level, low) -> IRQ 18
Feb 12 16:21:13 localhost kernel: [ 7043.864000] ACPI: PCI Interrupt 0000:00:14.2[A] -> GSI 16 (level, low) -> IRQ 18
Feb 12 16:21:13 localhost kernel: [ 7043.976000] ACPI: PCI Interrupt 0000:06:04.2[B] -> GSI 23 (level, low) -> IRQ 21
Feb 12 16:21:13 localhost kernel: [ 7043.992000] ACPI: PCI Interrupt 0000:06:04.4[B] -> GSI 23 (level, low) -> IRQ 21
Feb 12 16:21:13 localhost kernel: [ 7044.524000] usb usb1: root hub lost power or was reset
Feb 12 16:21:13 localhost kernel: [ 7044.652000] Restarting tasks ... <4>usb usb2: root hub lost power or was reset
Feb 12 16:21:13 localhost kernel: [ 7044.656000] usb 1-1: USB disconnect, address 3
Feb 12 16:21:13 localhost kernel: [ 7044.712000] done.
Feb 12 16:21:13 localhost kernel: [ 7044.712000] swsusp: Basic memory bitmaps freed
Feb 12 16:21:13 localhost gnome-power-manager: (stuart) Resuming computer
Feb 12 16:21:13 localhost kernel: [ 7045.352000] usb 3-4: USB disconnect, address 3
Feb 12 16:21:13 localhost kernel: [ 7045.592000] usb 3-4: new high speed USB device using ehci_hcd and address 10
Feb 12 16:21:13 localhost kernel: [ 7045.728000] usb 3-4: configuration #1 chosen from 1 choice
Feb 12 16:21:14 localhost kernel: [ 7046.548000] usb 1-1: new low speed USB device using ohci_hcd and address 12
Feb 12 16:21:14 localhost kernel: [ 7046.756000] usb 1-1: configuration #1 chosen from 1 choice
Feb 12 16:21:14 localhost kernel: [ 7046.764000] input: Logitech USB Optical Mouse as /class/input/input9
Feb 12 16:21:14 localhost kernel: [ 7046.764000] input: USB HID v1.10 Mouse [Logitech USB Optical Mouse] on usb-0000:00:13.0-1
Feb 12 16:21:15 localhost kernel: [ 7047.272000] ath_pci: 0.9.4.5 (0.9.3.2)
Feb 12 16:21:16 localhost kernel: [ 7047.272000] ACPI: PCI Interrupt 0000:06:02.0[A] -> GSI 22 (level, low) -> IRQ 20
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: H/W encryption support: WEP AES AES_CCM TKIP
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: mac 7.8 phy 4.5 radio 5.6
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Use hw queue 1 for WME_AC_BE traffic
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Use hw queue 0 for WME_AC_BK traffic
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Use hw queue 2 for WME_AC_VI traffic
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Use hw queue 3 for WME_AC_VO traffic
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Use hw queue 8 for CAB traffic
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Use hw queue 9 for beacons
Feb 12 16:21:16 localhost kernel: [ 7048.008000] wifi0: Atheros 5212: mem=0xd0200000, irq=20
Feb 12 16:21:16 localhost kernel: [ 7048.104000] 8139too Fast Ethernet driver 0.9.28
Feb 12 16:21:16 localhost kernel: [ 7048.104000] ACPI: PCI Interrupt 0000:06:01.0[A] -> GSI 21 (level, low) -> IRQ 19
Feb 12 16:21:16 localhost kernel: [ 7048.212000] eth0: RealTek RTL8139 at 0xdca8c000, 00:16:d4:5b:25:a1, IRQ 19
Feb 12 16:21:16 localhost kernel: [ 7048.268000] eth0: link down
Feb 12 16:21:17 localhost kernel: [ 7049.696000] input: Power Button (FF) as /class/input/input10
Feb 12 16:21:17 localhost kernel: [ 7049.696000] ACPI: Power Button (FF) [PWRF]
Feb 12 16:21:17 localhost kernel: [ 7049.696000] input: Lid Switch as /class/input/input11
Feb 12 16:21:17 localhost kernel: [ 7049.700000] ACPI: Lid Switch [LID]
Feb 12 16:21:17 localhost kernel: [ 7049.700000] input: Power Button (CM) as /class/input/input12
Feb 12 16:21:17 localhost kernel: [ 7049.700000] ACPI: Power Button (CM) [PWRB]
Feb 12 16:21:17 localhost kernel: [ 7049.700000] input: Sleep Button (CM) as /class/input/input13
Feb 12 16:21:17 localhost kernel: [ 7049.700000] ACPI: Sleep Button (CM) [SLPB]
Feb 12 16:21:17 localhost kernel: [ 7050.236000] ACPI Exception (thermal-0400): AE_NOT_FOUND, Invalid active threshold [0] [20070126]
Feb 12 16:21:17 localhost kernel: [ 7050.252000] ACPI: Thermal Zone [THRM] (42 C)
Feb 12 16:21:18 localhost kernel: [ 7050.312000] ACPI: AC Adapter [ACAD] (on-line)
Feb 12 16:21:18 localhost kernel: [ 7050.456000] ACPI: Battery Slot [BAT1] (battery present)
Feb 12 16:21:35 localhost kernel: [ 7067.520000] ACPI: PCI interrupt for device 0000:06:02.0 disabled
Feb 12 16:21:35 localhost kernel: [ 7067.520000] ath_pci: driver unloaded
Feb 12 16:21:35 localhost kernel: [ 7067.576000] ACPI: PCI interrupt for device 0000:06:01.0 disabled
Feb 13 08:39:47 localhost kernel: [ 7069.856000] swsusp: Basic memory bitmaps created
Feb 13 08:39:47 localhost kernel: [ 7069.856000] Stopping tasks ... done.
Feb 13 08:39:47 localhost kernel: [ 7070.208000] Shrinking memory...  ^H-^Hdone (0 pages freed)
Feb 13 08:39:47 localhost kernel: [ 7070.248000] Freed 0 kbytes in 0.03 seconds (0.00 MB/s)
Feb 13 08:39:47 localhost kernel: [ 7070.248000] Suspending console(s)
Feb 13 08:39:47 localhost kernel: [ 7070.468000] ACPI: PCI interrupt for device 0000:06:04.4 disabled
Feb 13 08:39:47 localhost kernel: [ 7070.484000] ACPI: PCI interrupt for device 0000:06:04.2 disabled
Feb 13 08:39:47 localhost kernel: [ 7070.508000] ACPI: PCI interrupt for device 0000:00:14.2 disabled
Feb 13 08:39:47 localhost kernel: [ 7070.524000] ACPI: PCI interrupt for device 0000:00:13.2 disabled
Feb 13 08:39:47 localhost kernel: [ 7070.540000] ACPI: PCI interrupt for device 0000:00:13.1 disabled
Feb 13 08:39:47 localhost kernel: [ 7070.540000] ACPI: PCI interrupt for device 0000:00:13.0 disabled
Feb 13 08:39:47 localhost kernel: [ 7070.540000] Disabling non-boot CPUs ...
Feb 13 08:39:47 localhost kernel: [ 7070.540000] swsusp: critical section: 
Feb 13 08:39:47 localhost kernel: [ 7070.540000] swsusp: Need to copy 52729 pages
Feb 13 08:39:47 localhost kernel: [ 7070.576000] ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 19 (level, low) -> IRQ 17
Feb 13 08:39:47 localhost kernel: [ 7070.576000] ACPI: PCI Interrupt 0000:00:13.1[A] -> GSI 19 (level, low) -> IRQ 17
Feb 13 08:39:47 localhost kernel: [ 7070.592000] ACPI: PCI Interrupt 0000:00:13.2[A] -> GSI 19 (level, low) -> IRQ 17
Feb 13 08:39:47 localhost kernel: [ 7070.592000] usb usb3: root hub lost power or was reset
Feb 13 08:39:47 localhost kernel: [ 7070.592000] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level, low) -> IRQ 18
Feb 13 08:39:47 localhost kernel: [ 7070.608000] ACPI: PCI Interrupt 0000:00:14.2[A] -> GSI 16 (level, low) -> IRQ 18
Feb 13 08:39:47 localhost kernel: [ 7070.696000] ACPI: PCI Interrupt 0000:06:04.2[B] -> GSI 23 (level, low) -> IRQ 21
Feb 13 08:39:47 localhost kernel: [ 7070.712000] ACPI: PCI Interrupt 0000:06:04.4[B] -> GSI 23 (level, low) -> IRQ 21
Feb 13 08:39:47 localhost kernel: [ 7071.252000] usb usb1: root hub lost power or was reset
Feb 13 08:39:47 localhost kernel: [ 7071.368000] Restarting tasks ... <4>usb usb2: root hub lost power or was reset
Feb 13 08:39:47 localhost kernel: [ 7071.372000] usb 3-4: USB disconnect, address 10
Feb 13 08:39:47 localhost kernel: [ 7071.428000] done.
Feb 13 08:39:47 localhost kernel: [ 7071.428000] swsusp: Basic memory bitmaps freed
Feb 13 08:39:47 localhost kernel: [ 7071.612000] usb 3-4: new high speed USB device using ehci_hcd and address 11
Feb 13 08:39:47 localhost gnome-power-manager: (stuart) Resuming computer
Feb 13 08:39:47 localhost kernel: [ 7071.752000] usb 3-4: configuration #1 chosen from 1 choice
Feb 13 08:39:47 localhost kernel: [ 7071.940000] usb 1-1: USB disconnect, address 12
Feb 13 08:39:48 localhost kernel: [ 7072.324000] ath_pci: 0.9.4.5 (0.9.3.2)
Feb 13 08:39:48 localhost kernel: [ 7072.324000] ACPI: PCI Interrupt 0000:06:02.0[A] -> GSI 22 (level, low) -> IRQ 20
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: H/W encryption support: WEP AES AES_CCM TKIP
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: mac 7.8 phy 4.5 radio 5.6
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: Use hw queue 1 for WME_AC_BE traffic
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: Use hw queue 0 for WME_AC_BK traffic
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: Use hw queue 2 for WME_AC_VI traffic
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: Use hw queue 3 for WME_AC_VO traffic
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: Use hw queue 8 for CAB traffic
Feb 13 08:39:48 localhost kernel: [ 7073.052000] wifi0: Use hw queue 9 for beacons
Feb 13 08:39:48 localhost kernel: [ 7073.108000] wifi0: Atheros 5212: mem=0xd0200000, irq=20
Feb 13 08:39:48 localhost kernel: [ 7073.244000] 8139too Fast Ethernet driver 0.9.28
Feb 13 08:39:48 localhost kernel: [ 7073.244000] ACPI: PCI Interrupt 0000:06:01.0[A] -> GSI 21 (level, low) -> IRQ 19
Feb 13 08:39:48 localhost kernel: [ 7073.244000] eth0: RealTek RTL8139 at 0xdca8c000, 00:16:d4:5b:25:a1, IRQ 19
Feb 13 08:39:48 localhost kernel: [ 7073.272000] eth0: link down
Feb 13 08:39:49 localhost kernel: [ 7073.400000] usb 1-4: new low speed USB device using ohci_hcd and address 13
Feb 13 08:39:49 localhost kernel: [ 7073.608000] usb 1-4: configuration #1 chosen from 1 choice
Feb 13 08:39:49 localhost kernel: [ 7073.616000] input: Logitech USB Optical Mouse as /class/input/input14
Feb 13 08:39:49 localhost kernel: [ 7073.616000] input: USB HID v1.10 Mouse [Logitech USB Optical Mouse] on usb-0000:00:13.0-4
Feb 13 08:39:50 localhost kernel: [ 7073.944000] input: Power Button (FF) as /class/input/input15
Feb 13 08:39:50 localhost kernel: [ 7073.944000] ACPI: Power Button (FF) [PWRF]
Feb 13 08:39:50 localhost kernel: [ 7073.964000] input: Lid Switch as /class/input/input16
Feb 13 08:39:50 localhost kernel: [ 7073.964000] ACPI: Lid Switch [LID]
Feb 13 08:39:50 localhost kernel: [ 7073.976000] input: Power Button (CM) as /class/input/input17
Feb 13 08:39:50 localhost kernel: [ 7073.976000] ACPI: Power Button (CM) [PWRB]
Feb 13 08:39:50 localhost kernel: [ 7073.980000] input: Sleep Button (CM) as /class/input/input18
Feb 13 08:39:50 localhost kernel: [ 7073.980000] ACPI: Sleep Button (CM) [SLPB]
Feb 13 08:39:50 localhost kernel: [ 7074.248000] ACPI Exception (thermal-0400): AE_NOT_FOUND, Invalid active threshold [0] [20070126]
Feb 13 08:39:50 localhost kernel: [ 7074.264000] ACPI: Thermal Zone [THRM] (33 C)
Feb 13 08:39:50 localhost kernel: [ 7074.340000] ACPI: AC Adapter [ACAD] (off-line)
Feb 13 08:39:50 localhost kernel: [ 7074.480000] ACPI: Battery Slot [BAT1] (battery present)
Feb 13 08:41:10 localhost dhcdbd: message_handler: message handler not found under /com/redhat/dhcp/ath0 for sub-path ath0.dbus.get.reason
Feb 13 08:41:54 localhost kernel: [ 7197.828000] NET: Registered protocol family 17
Feb 13 08:42:34 localhost kernel: [ 7238.224000] NET: Registered protocol family 10
Feb 13 08:42:34 localhost kernel: [ 7238.224000] lo: Disabled Privacy Extensions
Feb 13 08:42:34 localhost kernel: [ 7238.224000] ADDRCONF(NETDEV_UP): eth0: link is not ready
Feb 13 08:42:42 localhost dhcdbd: Unrequested down ?:3
Feb 13 08:43:35 localhost kernel: [ 7299.400000] ADDRCONF(NETDEV_UP): ath0: link is not ready
Feb 13 08:43:53 localhost kernel: [ 7316.712000] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready
Feb 13 08:43:59 localhost dhcdbd: message_handler: message handler not found under /com/redhat/dhcp/ath0 for sub-path ath0.dbus.get.host_name
Feb 13 08:43:59 localhost dhcdbd: message_handler: message handler not found under /com/redhat/dhcp/ath0 for sub-path ath0.dbus.get.domain_name
Feb 13 08:43:59 localhost dhcdbd: message_handler: message handler not found under /com/redhat/dhcp/ath0 for sub-path ath0.dbus.get.nis_domain
Feb 13 08:43:59 localhost dhcdbd: message_handler: message handler not found under /com/redhat/dhcp/ath0 for sub-path ath0.dbus.get.nis_servers

As for dmesg, i can't log into root. Also, i dont know where to put acpi=off into menu.lst.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...