Fedora :: Use F9 And Want Exit From X Server?

Aug 3, 2010

I use fedora 9 and want exit from x server. when i use init command,show me error.for use init command in fedora 9 what work?

View 4 Replies


ADVERTISEMENT

Programming :: Exit In Script Files Cause Konsole Terminal Itself To Exit?

Apr 11, 2010

I noticed that if I have "exit" in a bash script file., e.g. script.sh,that when the word "exit" is reached, and the script file being executed is not in the PATH nvironment, i.e. ". script.sh", the whole konsole shell profile is exited! What gives here? Is there another command compatible to "exit" to prevent this, or will I just have the leave the "." part in the PATH enviroment, which is, to my understanding, is not recommended? I desire for a "goto" function in bash script files

View 11 Replies View Related

Programming :: Why New Threads Exit When Main Thread Exit

May 22, 2010

In linux, creating thread is same as process (clone()), except the virtual address space gets shared with the parent.If a running main process(thread) creates new thread, and if main thread exits, why should the new thread too exit? both are different entities, The same doesn't happen if the child thread exits, the parent thread would be alive.

View 1 Replies View Related

Ubuntu :: How To Exit X Server With 9.10

Mar 18, 2010

I was wondering how you exited x server in ubuntu. I relatively new to linux. I wanted to install the newest nvidia driver, and they said you needed to exit x server when running the driver installer. Someone already told me to try ctrl-alt- F6, which didn't work. That just put me in a virtual terminal that still had x-server running. So if anyone knows how to exit x-server,

View 1 Replies View Related

Server :: Start Mongrel In Ssh Session And Then Exit In Ubuntu 10.04?

Oct 6, 2010

I'm deploying a Rails application in a Ubuntu 10.04 server withmongrel web server (a lightweight http web server). I connect to server and do stuffs in a ssh client(PuTTY on windows). And I'm getting stuck with a strange issue:1. After I connected to server, I start mongrel with : $ start-stop-daemon -S -d . -x script/server -b -- -p 80802. I left the ssh console and launch firefox from my Win7 box and openthe website, it runs well. I can see the homepage3. I go back to the ssh console. Close the terminal (and window too)it by : $ exit4. Then in firefox, I press F5 to refresh and nothing shows up. It'sjust an empty space in whole webpage. I tried to use addon to capturethe HTTP data and see that te server returns nothing , even HTTPheaders5. I connect to server again, run "ps -Af" to check and see that the process's still running. And again, leave the console, switch to firefox and refresh -> the homepage shows everything. 6. But if I exit the ssh session and refresh browser, the web server returns nothing againI thought that using start-stop-daemon command could help me runmongrel as daemon and then I can exit my session just as apache does.

View 2 Replies View Related

Ubuntu :: Exit The X-server So Install The Latest NVIDIA Driver?

Oct 24, 2010

The first thing I do is press ctrl-alt-f1. Then I do this:

Code: sudo su
init 3
./NVIDIA-linux-x86-260.19.12.run Then it comes up with the error that I have X-server running.

I've also tried Code: /etc/init.d/gdm stop but that command wasn't recognised. I've also tried Code: killall -9 X but there are no processes called X

View 2 Replies View Related

General :: Exit X Server In Order To Install NVIDIA Drivers?

Dec 3, 2010

I'm trying to install the latest NVIDIA drivers (not the ones provided by the 'Additional drivers' application). In order to install them, I need to exit the X-server and terminate all OpenGL processes. How do I do that? I've seen many things like 'press ctrl-alt-backspace' and typing 'sudo /etc/init.d/gdm stop' but none of them work. I'm using Kubuntu 10.10 and gdm doesn't even exist.

View 4 Replies View Related

Ubuntu Installation :: Error: You Appear To Be Running An X Server; Please Exit X Before Installing"

Jan 31, 2010

I hope this is an easy question to answer, how do update my nVidia drivers? Can I add a repository so it automatically updates? I have downloaded the latest verson from the nvidia website. When I so a "sudo ./NVIDIA-Linux-x86_64-190.53-pkg2.run" I get "Error: You appear to be running an X server; please exit X before installing"

View 1 Replies View Related

Fedora :: Brasero Exit With Error At The End Of The Recording CD-RW?

Feb 10, 2010

I recording CD-RW with Brasero and at the end I get the error. The iso-image was write to disk, but lead-in and lead-out seems to be didn't write. What is the problem? This the log of the brasero:

Quote:
Checking session consistency (brasero_burn_check_session_consistency brasero-burn.c:1848)
BraseroBurnURI called brasero_job_get_action
BraseroBurnURI called brasero_job_get_action
BraseroBurnURI called brasero_job_set_output_size_for_current_track
BraseroBurnURI stopping
BraseroBurnURI called brasero_job_get_action

[Code]...

View 3 Replies View Related

Fedora :: Setting Startup Options On Exit ?

Aug 13, 2010

I have a dual boot machine; sometimes I want to use windows for something Linux won't do.

It boots up Linux by default, so if I want Windows, I need to interrupt it at the beginning.

It would be more convenient if I could tell it, when I shut down, what to reboot into.

View 4 Replies View Related

Fedora :: Install NVidia Driver -> Exit X?

Nov 24, 2010

I managed to install the graphics card's driver on several distributions, but I just don't get what I have to do to run it on Fedora.Well.... The installation program asks me that X must be stopped... but.. how do I do that?Ctrl + Alt + Backspace doesn't work.When typing "top", X or gdm are not in the list.

View 12 Replies View Related

Fedora :: A Script To Restart Amule On Exit - Crash ?

Oct 8, 2009

Since I have not yet the knowledge to write a custom script I ask the following:

Can you give me a (sh) script to restart amule on exit (crash)?

This I ask you because amule crashes often on my system.

I already filed out a bug report at the amule website.

View 7 Replies View Related

Fedora :: Exit Full Screen To Pause / Turn Off F11?

Feb 13, 2010

I have Fedora 11 running on Microsoft virtual PC. When I start Fedora it opens in full screen mode. How do I exit full screen so that I can pause or turn off Fedora.

View 3 Replies View Related

Fedora :: Echo Exit Status After Command Is Run In Terminal?

Feb 19, 2010

command will just execute and exit with a status of "0" -"Every command returns an exit status (sometimes referred to as a return status ). A successful command returns a 0, while an unsuccessful one returns a non-zero value that usually may be interpreted as an error code. Well-behaved UNIX commands, programs, and utilities return a 0 exit code upon successful completion, though there are some exceptions."[URL]With the command . . .

Code:

# dosfsck -v /dev/sdb

it could be very helpful (and decide my next move) to see the exit code as 0, 1, or 2 . the man page suggests the command exit code will specify if the message I get - "Cluster size is zero" (I think it is a "1")is a recoverable or fixable error by the utility. or is non-recoverable - a pretty nifty feature if I understand this right. [URL] is there anything like this script COMMAND_LAST used in the following link. [URL] that can be entered in the terminal window after - or at end of - my dosfsck command or any command. just to see if it has a 0, 1, or 2 status ?

View 2 Replies View Related

Fedora :: Xoscope Error: Collect2: Ld Returned 1 Exit Status

Sep 12, 2010

I am using a fully updated fedora 13 64-bit system and when i run make on xoscope i get the following error:

collect2: ld returned 1 exit status

I have already installed all of the prereqs. And the configure went without errors.

View 9 Replies View Related

Red Hat / Fedora :: RHEL5 Won't Exit Screensaver And Causes File System Error

Apr 27, 2010

I've got a fresh install of RHEL5 with updates installed running on a PC104. If the machine starts up the screensaver, I can't ever get out of it. The mouse pointer comes back up on the screen, but the desktop doesn't appear or a box to enter a password. I try to reboot X and get an error that X can't be started and it drops me to a prompt. I reboot from the command line and then I get the filesystem error and have to wait 2 hours while it scans.

View 4 Replies View Related

Fedora :: Warning: Incompatible Implicit Declaration Of Built-in Function Exit

Jan 8, 2010

I am running Fedora 12 with clean install. last updated 1/8/10 AM.Trying to install chkrootkit I get the following when running "make sense":

gcc -DHAVE_LASTLOG_H -o chklastlog chklastlog.c
gcc -DHAVE_LASTLOG_H -o chkwtmp chkwtmp.c
chkwtmp.c: In function �main�:
chkwtmp.c:95: warning: incompatible implicit declaration of built-in function �exit�

[code]....

View 4 Replies View Related

Fedora :: How To Exit Out Of Session In Fedora 11?

Aug 2, 2009

I'm just wondering how to exit out of an a session in Fedora 11. I used to be able to use ctrl+alt+F1,2,3..etc to go to command line. Please don't tell me you no longer allow users to exit out of x-sessions. Also what about verbose mode during boot up. I used to be able to boot interactivly to diagnose problems.

View 12 Replies View Related

OpenSUSE Install :: Nvidia - Error "You Appear To Be Running An X Server; Please Exit X Before Installing"

Jan 1, 2011

I have been using SDB:NVIDIA_the_hard_way and have run into a problem. When I run the script, it gives me the following error message: You appear to be running an X server; please exit X before installing

View 7 Replies View Related

Server :: Apache2 SVN Post-commit Script Certificate Error Post-commit Hook Failed (exit Code 1) With Output?

Oct 12, 2009

I am using apache2 with subversion and trying to get post commit script to run an svn update command. All svn commands seem to work fine manually

Everything used to work fine but then the server ip changed and I can no longer access it with the web name and have to use the ip directly

I am using tortoise svn with vista on my work machine

Here is the script

#!/bin/sh
export LC_CTYPE=en_US.UTF-8
/usr/bin/svn update /home/common/webroot/bob

Here is the result.

Command: Commit
Modified: C:UsersMattDesktopcheckout - bobindex.php
Sending content: C:UsersMattDesktopcheckout - bobindex.php
Completed: At revision: 63
Error: post-commit hook failed (exit code 1) with output:
code....

I think what i need to do is update the certifcate for the apache2, but I'm not sure how to do this, where to put it, and then which of the thousand apache config lines needs to be changed

View 5 Replies View Related

Ubuntu :: What Are Exit Handlers

May 1, 2010

What are exit handlers ? They are piece of code to execute prior to exit() ?

View 3 Replies View Related

Ubuntu :: Cannot Exit TTY Even With Ctrl+Alt+F7 On 10.10

Nov 29, 2010

Here I was, having problems with the resolution then I stopped the X server as was instructed at the tutorial. I followed it all then rebooted. But I found that even after reboot, I'm still stuck with TTY. I clicked Ctrl Alt F7 but still it's a terminal and it did not return to the GUI or the normal desktop. What will I do to exit it? It's a good thing I have windows vista along with it or else I'll now have a computer that I can't use outside the terminal.

As nothingspecial said, I should place the link of the tutorial I was following: [URL]

View 4 Replies View Related

Ubuntu :: Vlc(1.1.7) Is Crashing On Exit?

Mar 3, 2011

i have upgraded vlc 1.1.4 to 1.1.7....but im having a problem regarding the 1.1.7 version. the vlc(1.1.7) is crashing on exit.

View 1 Replies View Related

Hardware :: USB Drive Does Not Exit?

Jan 20, 2011

I have a (Verbatim, if it matters) USB drive which previously worked with Linux just fine.However, since then I have formatted my drive, and it currently has no partitions on it. I would like to not use a cd to test out Salix, and to use Unetbootin with my USB to install Salix. However, when I plug in my USB it does not mount. Running sudo fdisk -l only gives my hard drive, and neither Gparted or Unetbootin can find it. I'm currently running Xubuntu 9.10, if it matters.

View 9 Replies View Related

General :: My Script Won't Exit ?

Feb 11, 2011

When I run my script(attachment) and I use an option(-l -u -r) that requires an argument, it should exit if the argument isn't supplied, but it doesn't. How do I arrange this?

View 1 Replies View Related

Programming :: Return And Exit In C

Jun 3, 2011

What are the uses of return 0, return 1 and exit statements in C

View 4 Replies View Related

Red Hat :: Su Hangs On Exit After Inactivity

Mar 25, 2010

We have two types of servers RHEL5 and RHEL4 as well as Fedora 11 desktops.

After a period of inactivity, trying to exit from "su - <username>" causes the system to hang for about 10 minutes. It takes that long before the prompt comes back. Here are a few items that noticed as I have tried to trouble shoot this problem. The prompt always comes back if you wait long enough It only happens on RHEL 5. RHEL4 and Fedora 11 are unaffected It does not appear to matter what other software is running. Some boxes have databases, others do not It happens to boxes in run level 3 as well as boxes in run level 5 It does not matter if logging in from the console (tty) or from ssh (pts). Both types of logins produce the same result.

It does not matter if the account is an LDAP or a local account. It takes between 30 min and 1 hour of inactivity before the problem occurs Other sessions on the box are completely unaffected. Once hung, I can still log in with a different session without a problem top shows no load while session is hung there are no messages in /var/log/messages, /var/log/secure, /var/log/audit/audit.log or in dmesg if a session is killed, finger shows that it is still logged in a putty log shows that the server is still sending "keep alives" to putty while the session is hung Only su is affected. There is no problem logging out of the box from the initial login account. what I can try in order to trouble shoot this?

View 2 Replies View Related

Debian :: Fluxbox On Netbook Won't Exit

May 26, 2011

Ever since Debian updated Fluxbox several weeks ago Fluxbox on my netbook will not exit. I have tried reinstalling it but it still will not exit.

View 14 Replies View Related

General :: Fork Process Will Not Exit - Ksh

Aug 19, 2010

I've a script that forks to another script.

The problem is that the child will not return to main process.

Main script "fork.sh"

Code:

The child process "smb_fork.sh"

Code:

when running it from the terminal "sh -x ./foork.sh"

Code:

My goal is via cron connect to ~100 remote winXP computers and download a single file. There fore I like to fork the process.

View 1 Replies View Related

Ubuntu :: Error Exit Status 2 - What To Do

Apr 23, 2010

I was installing SMPLAYER when the power failed...now i get this error message when trying to re-install the packages..

E: liblzo2-2: subprocess installed post-installation script returned error exit status 2
E: mplayer-nogui: dependency problems - leaving unconfigured
E: mplayer: dependency problems - leaving unconfigured

[code]....

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved