Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Riabilitare CTRL+ALT+BACKSPACE e disabilitare DPMS
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Tue Nov 17, 2009 11:13 am    Post subject: Riabilitare CTRL+ALT+BACKSPACE e disabilitare DPMS Reply with quote

Salve a tutti,

dopo essere incappato qui per quanto riguarda il DPMS, qui e qui per quanto riguarda invece la riabilitazione del CTRL+ALT+BACKSPACE, non mi resta che chiedere a voi.
Ho due necessita: la prima è quella di riabilitare appunto il restart di X tramite la pressione di CTRL+ALT+BACKSPACE. La seconda invece è quella di fare in modo che il monitor non mi si spenga dopo un periodo di tempo non meglio precisato.

Per quanto riguarda la prima questione, ho provato a fare come dice, ma facendo specialmente come dice la guida ufficiale, aggiungendo quell'opzione allo xorg.conf, X non parte proprio.
Mentre invece la riga di comando
Code:
setxkbmap -option terminate:ctrl_alt_bksp
abilita la cosa e infatti funziona. Il problema è il renderlo permanente. Aggiungo inoltre che sto utilizzando xorg-server-1.6.3.901-r2.

Per quanto riguarda la seconda questione invece, è che sebbene io non abbia impostato alcuna opzione "OffTime" nel file xorg.conf, il monitor comunque si spegne dopo un tempo che ancora non ho capito.
Fra l'altro a proposito di questo, ho letto in giro che:
Code:
Option  "OffTime"  "15"  # Turn off after half an hour

Non ho capito la relazione fra il 15 e la mezz'ora. Boh!

Inoltre anche impostando nella sezione ServerFlags le seguenti opzioni:
Code:
Option "BlankTime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
    Option "DPMS" "off"

facendo xset q ottengo sempre (ovviamente dopo aver restartato x):
Code:
DPMS (Energy Star):
  Standby: 1200    Suspend: 1800    Off: 0
  DPMS is Enabled
  Monitor is On

L'unico modo per disabilitarlo è quello di fare un
Code:
xset dpms 0 0 0

Ma ovviamente non è permanente.

Quindi riepilogando, per il primo problema l'opzione per il CTRL+ALT+BACKSPACE per rendere permanente la cosa, causa un fallimento nel caricamento di X, per il secondo problema invece, sembra che tutte quelle Option non vengano proprio prese in considerazione.

Non so più dove sbattere la testa.
Qualcuno sa come fare?

Allego il mio xorg.conf:
Code:
Section "Module"                                                                             
    Load        "dbe"   # Double buffer extension                                           
    SubSection  "extmod"                                                                     
      Option    "omit xfree86-dga"   # don't initialise the DGA extension                   
    EndSubSection                                                                           
    Load        "freetype"                                                                   
    Load       "glx"                                                                         
EndSection                                                                                   
Section "Files"                                                                             
    FontPath   "/usr/share/fonts/misc/"                                                     
    FontPath   "/usr/share/fonts/Type1/"                                                     
    FontPath   "/usr/share/fonts/100dpi/"                                                   
    FontPath   "/usr/share/fonts/75dpi/"                                                     
        FontPath        "/usr/share/fonts/math-fonts/cmtex-pfb"                             
        FontPath        "/usr/share/fonts/math-fonts/mathematica-pcf"                       
EndSection                                                                                   
Section "ServerFlags"                                                                       
        Option "BlankTime" "0"                                                               
        Option "StandbyTime" "0"                                                             
        Option "SuspendTime" "0"                                                             
        Option "OffTime" "0"                                                                 
        Option "DPMS" "off"                                                                 
EndSection                                                                                   
Section "InputDevice"                                                                       
    Identifier  "Mouse1"                                                                     
    Driver      "mouse"                                                                     
    Option "Protocol"    "IMPS/2"       # IntelliMouse PS/2                                 
    Option "Device"      "/dev/input/mice"                                                   
    Option "ZAxisMapping"   "4 5 6 7"                                                       
    Option "Emulate3Buttons"                                                                 
EndSection                                                                                   
Section "Monitor"                                                                           
    Identifier  "My Monitor"                                                                 
    HorizSync   30-81                                                                       
    VertRefresh 56-75                                                                       
EndSection                                                                                   
Section "Device"                                                                             
    Identifier  "Standard VGA"                                                               
    VendorName  "Unknown"                                                                   
    BoardName   "Unknown"                                                                   
    Option      "AddARGBGLXVisuals" "true"                                                   
    Option      "UseEvents"         "false"                                                 
    Option      "RenderAccel"       "true"                                                   
    Driver     "vga"
EndSection
Section "Device"
    Identifier  "nVidia Geforce 7300 GT 512MB DDR2"
    Driver      "nvidia"
    VideoRam    524288
    Option      "TVStandard" "PAL-B"
    Option      "TVOutFormat" "SVIDEO"
    Option      "UseDisplayDevice" "TV"
EndSection
Section "Screen"
    Identifier  "Screen 1"
    Device  "nVidia Geforce 7300 GT 512MB DDR2"
    Monitor     "My Monitor"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1680x1050" "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection
Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Mouse1" "CorePointer"
EndSection
Section "Extensions"
        Option      "Composite"   "enable"
EndSection

_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered


Last edited by fbcyborg on Thu Nov 26, 2009 1:59 pm; edited 2 times in total
Back to top
View user's profile Send private message
Scen
Retired Dev
Retired Dev


Joined: 29 Jul 2003
Posts: 2470
Location: Padova, Italy

PostPosted: Tue Nov 17, 2009 11:53 am    Post subject: Re: Riabilitare CTRL+ALT+BACKSPACE e disabilitare DPMS Reply with quote

fbcyborg wrote:

Per quanto riguarda la prima questione, ho provato a fare come dice, ma facendo specialmente come dice la guida ufficiale, aggiungendo quell'opzione allo xorg.conf, X non parte proprio.
Mentre invece la riga di comando
Code:
setxkbmap -option terminate:ctrl_alt_bksp
abilita la cosa e infatti funziona. Il problema è il renderlo permanente. Aggiungo inoltre che sto utilizzando xorg-server-1.6.3.901-r2.

Vedo che nel tuo xorg.conf non specifiche nessun dispositivo di input "tastiera", per cui ipotizzo venga configurato in automatico tramite HAL. Tu però dici di aver aggiunto l'opzione in xorg.conf: hai provato a seguire l'istruzione della guida (in italiano :evil: :twisted: :P :roll: :wink: ) a riguardo
Quote:

Se si usa HAl per gestire i dispositivi di input, copiare la seguente porzione di configurazione fdi nel file fdi fra quelli /etc/hal/fdi/policy/ che è usato per controllare la tastiera. <merge key="input.xkb.options" type="string">terminate:ctrl_alt_bksp</merge> Se non si utilizzano regole delle tastiera personalizzate, si possono copiare ed adattare le regole da /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi

?
_________________
I was born in a deep forest/I wish I could live here all my life/I am made from stones and roots/My home, these woods and roads
All my life I loved this sound/Of the woods all around/Eagles flies where the winds blows free
Journey is my destiny
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Tue Nov 17, 2009 12:02 pm    Post subject: Re: Riabilitare CTRL+ALT+BACKSPACE e disabilitare DPMS Reply with quote

Scen wrote:

Quote:

Se si usa HAl per gestire i dispositivi di input, copiare la seguente porzione di configurazione fdi nel file fdi fra quelli /etc/hal/fdi/policy/ che è usato per controllare la tastiera. <merge key="input.xkb.options" type="string">terminate:ctrl_alt_bksp</merge> Se non si utilizzano regole delle tastiera personalizzate, si possono copiare ed adattare le regole da /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi

?

Ci avevo provato, ma l'opzione terminate credo non vada bene. Comunque sì, ho un file fdi per hal. A me andrebbe bene che dopo la terminazione si riavviasse X.
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
pierino_89
Guru
Guru


Joined: 03 Oct 2009
Posts: 522

PostPosted: Thu Nov 26, 2009 12:34 pm    Post subject: Reply with quote

Potresti usare alt+sysrq+k, invece che alt+ctrl+backspace. Se hai abilitato le sysrq, ovviamente.
_________________
Linux registered user 461710
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Thu Nov 26, 2009 1:54 pm    Post subject: Reply with quote

Ottimo funziona!

Grazie per la dritta!

Però è strano che quando faccio CTRL+ALT+Backspace non si riavvii X, eppure il demone dovrebbe riavviarlo in automatico.

EDIT: ora però ha preso a funzionare (X riparte in automatico) anche con C-A-B! Boh, strano... forse qualche aggiornamento ha sistemato le cose.
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Sun Nov 29, 2009 10:02 am    Post subject: Reply with quote

Una soluzione un po' "artigianale" può essere quella di inserire in uno scriptino caricato all'avvio il comando
Code:
setxkbmap -option terminate:ctrl_alt_bksp

Ho scritto una baggianata?
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Sun Nov 29, 2009 10:16 am    Post subject: Reply with quote

In realtà ora non mi serve nemmeno più, dal momento che il problema del C-A-B l'ho risolto... però non penso che tu abbia detto una baggianata perché a giudicare l'idea sembrerebbe buona! :) Perché non dovrebbe funzionare?
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Sun Nov 29, 2009 10:42 am    Post subject: Reply with quote

Sai com'è, dopo (quasi) cinque anni di lontananza da Gentoo, potrei essermi perso per strada qualche particolare, come una possibile collisione di questo comando, se posto in uno script d'avvio. ;)
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Mon Nov 30, 2009 11:31 am    Post subject: Reply with quote

Ho fatto questo classico, semplicissimo script
Code:
#!/sbin/runscript

start() {
  (setxkbmap -option terminate:ctrl_alt_bksp)
}


Che cosa ne pensate?
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Wed Dec 02, 2009 10:40 am    Post subject: Reply with quote

Leonzio wrote:
Ho fatto questo classico, semplicissimo script
Code:
#!/sbin/runscript

start() {
  (setxkbmap -option terminate:ctrl_alt_bksp)
}


Che cosa ne pensate?

Lo script non funziona, ma non capisco perché non funzioni...
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Wed Dec 02, 2009 10:48 am    Post subject: Reply with quote

In realtà non capisco perché ti sbatti tanto su questa cosa, quando in realtà è stata risolta...
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Wed Dec 02, 2009 10:55 am    Post subject: Reply with quote

fbcyborg wrote:
In realtà non capisco perché ti sbatti tanto su questa cosa, quando in realtà è stata risolta...

Il primo motivo è che non ho capito come è stata risolta.
A voi sembra chiaro, a me no.

Il secondo motivo è che non capisco perché questo script non funziona.
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Wed Dec 02, 2009 11:03 am    Post subject: Reply with quote

Leonzio wrote:

Il primo motivo è che non ho capito come è stata risolta.

Così: aggiungendo la riga in grasetto nel file /etc/hal/fdi/policy/10-keymap.fdi
Quote:
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.keymap">
<append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
</match>

<match key="info.capabilities" contains="input.keys">
<merge key="input.xkb.rules" type="string">base</merge>

<!-- If we're using Linux, we use evdev by default (falling back to
keyboard otherwise). -->
<merge key="input.xkb.model" type="string">keyboard</merge>
<match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
string="Linux">
<merge key="input.xkb.model" type="string">evdev</merge>
<merge key="input.xkb.options" type="string">terminate:ctrl_alt_bksp</merge>
</match>

<merge key="input.xkb.layout" type="string">it</merge>
<merge key="input.xkb.variant" type="string" />
</match>
</device>
</deviceinfo>


Il mio problema prima era che anche aggiungendo quella riga X non ripartiva.

Leonzio wrote:

A voi sembra chiaro, a me no.

Il secondo motivo è che non capisco perché questo script non funziona.

Questo non te lo so dire. In effetti è strano, ma non mi ci sbatterei troppo, visto che c'è quell'altro rimedio.

Piuttosto qualcuno sa come disabilitare questo benedetto DPMS? Ancora non ho capito come disabilitare il fatto che il mio monitor se ne vada in standby dopo un tempo imprecisato.
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Wed Dec 02, 2009 11:21 am    Post subject: Reply with quote

fbcyborg wrote:
Leonzio wrote:

Il primo motivo è che non ho capito come è stata risolta.

Così: aggiungendo la riga in grasetto nel file /etc/hal/fdi/policy/10-keymap.fdi
Quote:
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.keymap">
<append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
</match>

<match key="info.capabilities" contains="input.keys">
<merge key="input.xkb.rules" type="string">base</merge>

<!-- If we're using Linux, we use evdev by default (falling back to
keyboard otherwise). -->
<merge key="input.xkb.model" type="string">keyboard</merge>
<match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
string="Linux">
<merge key="input.xkb.model" type="string">evdev</merge>
<merge key="input.xkb.options" type="string">terminate:ctrl_alt_bksp</merge>
</match>

<merge key="input.xkb.layout" type="string">it</merge>
<merge key="input.xkb.variant" type="string" />
</match>
</device>
</deviceinfo>


Il mio problema prima era che anche aggiungendo quella riga X non ripartiva.

Leonzio wrote:

A voi sembra chiaro, a me no.

Il secondo motivo è che non capisco perché questo script non funziona.

Questo non te lo so dire. In effetti è strano, ma non mi ci sbatterei troppo, visto che c'è quell'altro rimedio.

Piuttosto qualcuno sa come disabilitare questo benedetto DPMS? Ancora non ho capito come disabilitare il fatto che il mio monitor se ne vada in standby dopo un tempo imprecisato.

Per quanto riguarda lo script, la cosa è abbastanza importante, invece.
Quello script deve funzionare, a meno che non sia scritto male, però mi sembra uno script semplice semplice...
Non mi ci sbatto molto, però. :)
Non ho compreso questo:
pierino_89 wrote:
Potresti usare alt+sysrq+k, invece che alt+ctrl+backspace. Se hai abilitato le sysrq, ovviamente.]

E questo:
fbcyborg wrote:
ora però ha preso a funzionare (X riparte in automatico) anche con C-A-B! Boh, strano... forse qualche aggiornamento ha sistemato le cose.

Non capisco quali tasti premere.
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Wed Dec 02, 2009 11:39 am    Post subject: Reply with quote

Prova a fare ALT+STAMP+k. È una funzionalità del kernel (sysrq).
Ovviamente deve esserci il supporto per sysrq nel kernel.

C-A-B ovvero Control+Alt+Backspace. Semplicemente ora ha ripreso a funzionare come mi ha sempre funzionato in precedenza.
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
Leonzio
n00b
n00b


Joined: 10 Nov 2003
Posts: 33
Location: Firenze, Toscana, Italia (Florence,Tuscany, Italy)

PostPosted: Wed Dec 02, 2009 12:33 pm    Post subject: Reply with quote

Ho troppi pinguini e Gentoo l'ho installata su quel piccolo hard disk...
Faccio confusione, anche perché molte cose le ho impostate diversamente.
Gentoo è pulita e, quando potrò, inserirò il cassettino di Gentoo e farò la modifica (preferisco CTRL+ALT+Backspace).
Funzionerà o non mi farà ripartire X?
Per usare la combinazione va forse aggiunto qualcos'altro...
_________________
Leonzio me lo hanno appiccicato addosso e fiero me lo tengo stretto.
Chiamatemi pure Leo, fate prima. ;-)
Non mi chiamo né Leonardo, né Leonida né Leopippo! :-P
== Gnome per sempre! - Gnome forever! ==


Last edited by Leonzio on Wed Dec 02, 2009 1:10 pm; edited 1 time in total
Back to top
View user's profile Send private message
rael1986
n00b
n00b


Joined: 20 Nov 2009
Posts: 3

PostPosted: Wed Dec 02, 2009 12:36 pm    Post subject: Reply with quote

fbcyborg wrote:

Piuttosto qualcuno sa come disabilitare questo benedetto DPMS? Ancora non ho capito come disabilitare il fatto che il mio monitor se ne vada in standby dopo un tempo imprecisato.


Option "dpms" "off" in /etc/X11/xorg.conf non funziona ?

Se cosi fosse, penso che dovrai cercare tra le policy di hal.
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Wed Dec 02, 2009 12:59 pm    Post subject: Reply with quote

eh no, non funziona, infatti se rileggi il mio primo post lo dico... :(
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
fbcyborg
Advocate
Advocate


Joined: 16 Oct 2005
Posts: 3056
Location: ROMA

PostPosted: Sat Jun 26, 2010 1:44 pm    Post subject: Reply with quote

fbcyborg wrote:
Però è strano che quando faccio CTRL+ALT+Backspace non si riavvii X, eppure il demone dovrebbe riavviarlo in automatico.

EDIT: ora però ha preso a funzionare (X riparte in automatico) anche con C-A-B! Boh, strano... forse qualche aggiornamento ha sistemato le cose.

Di nuovo il problema che X non riparte in automatico.
In realtà ho scoperto che xdm non viene stoppato, infatti se faccio
Code:
/etc/init.d/xdm restart

mi dice che xdm è already started.
Quindi ecco perché non si riavvia. Non si stoppa proprio xdm, anche se in realtà l'effetto sembra quello!

Che diavolo può essere?
_________________
[HOWTO] Come criptare la /home usando cryptsetup e luks
[HOWTO] Abilitare il supporto al dom0 XEN su kernel 3.X
Help answer the unanswered
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) 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