FreeBSD - frozen FVWM


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers FreeBSD - frozen FVWM
# 1  
Old 05-09-2002
FreeBSD - frozen FVWM

I was looking at previews of XScreenSaver and the desktop froze. I am unsure how to restart the FVWM. I downloaded putty and can connect via ssh. I tried to shut the machine down by using the "shutdown -h now" command , but it will not power off.

If I knew the process number I could kill it. I am looking for a way to restart the GUI or the process number to kill XScreenSaver.

Any help is greatly appriciated.
# 2  
Old 05-09-2002
Re: FreeBSD - frozen FVWM

Quote:
Originally posted by noobie_doo
I was looking at previews of XScreenSaver and the desktop froze. I am unsure how to restart the FVWM. I downloaded putty and can connect via ssh. I tried to shut the machine down by using the "shutdown -h now" command , but it will not power off.

If I knew the process number I could kill it. I am looking for a way to restart the GUI or the process number to kill XScreenSaver.

Any help is greatly appriciated.
I don't think I have ever seen `shutdown -h now` ever actually powerdown an x86 system before. It just drops the machine to the "hit any key to reboot" message after shutting the OS down.

To kill XScreenSaver you need to find the pid of XScreenSaver.

This can be done with `ps` and `grep`.

Example:

Code:
FreeBSD:joeuser:/home/joeuser $ ps -aux | grep -i "xscreensaver"
joeuser      914  0.0  1.1  3636 2664  ??  I     9:46PM   0:01.52 xscreensaver -nos

I now know that the pid of xscreensaver on my machine is 914 and can issue a kill statement like this:

Code:
kill 914

If xscreensaver is still stubborn, you can use the -9 option of kill (which you should only use after several attempts of the normal kill command):

Code:
kill -9 914

And hopefully that will take care of the xscreensaver problem.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

How to configure Xorg and fvwm on x86 Solaris 10 update 10?

I've installed Solaris 10 on P4 machine but, I don't like the current desktop e.g. CDE & JDS so I'd like to replace these with fvwm that comes from sunfreeware packages. It's on /opt/sfw. Please give me the steps to configure and run Xorg & fvwm as we do on Linux (with other wms). (8 Replies)
Discussion started by: vectrum
8 Replies

2. Ubuntu

Ubuntu getting frozen with '{ DRDY ERR }' error

Hi, I am using Ubuntu LTS 12.04. For last few weeks it is getting frozen on INIT 5 and and I can see follwoing logs in single user mode. Have any body any clue for the following: Feb 3 09:14:07 CB11WS1 kernel: ata1.00: status: { DRDY ERR } Feb 3 09:14:07 CB11WS1 kernel: ata1.00:... (0 Replies)
Discussion started by: nixhead
0 Replies

3. Solaris

Cygwin/X Remote connection frozen display problem

Hello, We are using Solaris 2.5.1 box. And we are accessing to Solaris from Windows xp using Cygwin/X. The connection establish without any problem and we can use desktop environment. But, sometimes later ( various between 2 minutes to 10 minutes ) Connectted desktop display is frozen. Mouse is... (4 Replies)
Discussion started by: summerboy
4 Replies

4. UNIX for Dummies Questions & Answers

system is frozen

hi there. new problem for me!!! i have been using a Sabayon Linux 3.5 distribution and yesterday when i turned the system on it stopped responding, i mean it freeazed. i was listening to music on Audacious and suddenly the system is ice cold...baby. what to do. Since i've tried 'reiserfsck' the... (0 Replies)
Discussion started by: dvas83
0 Replies

5. Solaris

Reboot, System is Frozen at setting interface for multicast HELP

I'm not an advanced user by any strech, that being said here is my problem: I ran "reboot" on a sun blade 2500 When loading up it runs through the usual routine, checking disks, filesystems and then it locks up after the following message: ***** starting rpc services: rpcbind... (6 Replies)
Discussion started by: eyukins
6 Replies

6. HP-UX

Server almost frozen

Hi, I've a server with HP-UX 10x that when the connection with my ISP is broken, it almost freezes. I realize when I try to connect myself from a pc with a terminal emulator, it delays 5 or 8 minutes to show me the login prompt and the applications become slow. My question is how can I... (2 Replies)
Discussion started by: efrenba
2 Replies

7. Linux

X Error: BadGC on fvwm

All, I have an application which uses qt. Am running it on fvwm. The following error appears at times when some operation is being carried out on the application. After this error appears, the application stops responding. Have to kill it and restart again. The reason I put it up here is... (0 Replies)
Discussion started by: vino
0 Replies
Login or Register to Ask a Question