update system & ports

tangram said:
If Ctrl+Alt+Backspace isn't working check if your xorg.conf has

Code:
Option "DontZap" "true"

If so disable it.

Ctrl+Alt+Backspace doesn't work and I don't have "DontZap" option in my xorg.conf
I attach my xorg.conf
 

Attachments

  • xorg-conf.txt
    2.6 KB · Views: 231
hirohitosan said:
Ctrl+Alt+Backspace doesn't work and I don't have "DontZap" option in my xorg.conf
I attach my xorg.conf

Try the rest of my suggestions. Check the InputDevice and the ServerFlags sections.
 
tangram said:
There a good chance that your locate database is outdated. Update it or run find instead.
how can I update my locate database?
I tried updatedb, locate.updatedb, but doesn't work
 
hirohitosan said:
thanks. I asked because my man locate gives me:
Code:
# man locate
No manual entry for locate

Most probably you didn't install the Docs distribution when you installed FreeBSD. Use sysinstall if you want it.
 
hirohitosan said:
actually I don't know if I compiled X with hal :r and I don't have it enabled in rc.conf

No biggies there. Just check the xorg.conf sections that I pointed out.

If it doesn't work post your /var/log/Xorg.0.log.
 
hirohitosan said:
well it doesn't work. I can switch to console Alt-F2 but in X it does't work
Ok.. Then you can just reboot the box from the second console. Or just kill X.

Code:
ps -aux | grep hald
Should show a few hal processes.

To enable hal add to /etc/rc.conf:
Code:
hald_enable="YES"

And start hal with /usr/local/etc/rc.d/hald start or simply reboot the box.
 
tangram said:
I think hirohitosan's problem is connected with the keyboard layout and the associated sections in xorg.conf.

and change like I suggested.

I change it as you suggested
in attachement you'll find my /etc/X11/xorg.conf
and here's my X log after starting X:
Code:
cat /var/log/Xorg.0.log

X.Org X Server 1.5.3
Release Date: 5 November 2008
X Protocol Version 11, Revision 0
Build Operating System: FreeBSD 7.1-RELEASE amd64
Current Operating System: FreeBSD 7.1-RELEASE FreeBSD 7.1-RELEASE #0: Thu Jan  1 08:58:24 UTC 2009     root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
Build Date: 24 March 2009  01:15:05PM

        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Mar 27 14:53:37 2009
(==) Using config file: "/etc/X11/xorg.conf"
Parse error on line 14 of section Files in file /etc/X11/xorg.conf
        "RgbPath" is not a valid keyword in this section.
(EE) Problem parsing the config file
(EE) Error parsing the config file

Fatal server error:
no screens found
I don't know where is the problem
 

Attachments

  • xorg-conf.txt
    3.6 KB · Views: 208
hirohitosan said:
I don't know where is the problem
Read the error message, it's pretty obvious.

Code:
Parse error on line 14 of section Files in file /etc/X11/xorg.conf
        "RgbPath" is not a valid keyword in this section.

Remove that line from xorg.conf.
 
hirohitosan, I just looked at your xorg.conf and I noticied that you've copy pasted my:

Code:
Option          "XkbLayout" "pt"

I use that because I have a portuguese keyboard, so consider changing to your country's keyboard layout.
 
Back
Top