![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sun blade 100 test-all frozen at pci@1f,0/usb/c,3 | montana77 | UNIX for Dummies Questions & Answers | 0 | 02-23-2008 06:16 AM |
| Reboot, System is Frozen at setting interface for multicast HELP | eyukins | SUN Solaris | 6 | 01-15-2008 02:27 AM |
| Server almost frozen | efrenba | HP-UX | 2 | 03-03-2006 01:26 PM |
| X Error: BadGC on fvwm | vino | Linux | 0 | 03-05-2005 02:33 PM |
| FreeBSD | cyberangel | UNIX for Dummies Questions & Answers | 3 | 06-25-2003 06:23 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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. |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Re: FreeBSD - frozen FVWM
Quote:
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 Code:
kill 914 Code:
kill -9 914
__________________
Not quite as cool as all the other Kids... |
||||
| Google The UNIX and Linux Forums |