Fedora :: Where Is Xorg Executed From
Dec 8, 2009
I need to add -audit to the process /usr/bin/Xorg :0 -nr -verbose -auth /var/run/gdm/auth-for-gdm-MTmpH6/database -nolisten tcp vt1
And have added -audit to the line in /etc/X11/xdm/Xservers but with no luck. I can't seem to find where this thing is getting launched from!
View 1 Replies
ADVERTISEMENT
Oct 19, 2010
i have install php and make proper confgiuration as said in various books and forums.but |all what i gotis just blankpage which means it knows that thereis the file at given folder but it cannotexecute.
View 1 Replies
View Related
Jun 22, 2010
I have this script that I want to be run on startup:
Code:
#!/bin/bash
#chkconfig: 5 80 20
[code]....
View 2 Replies
View Related
Jul 15, 2009
I've setup dimdim (opensource, centos 5.3) and noticed yum & rpm commands fail when executed as root because it uses librpmio from openoffice3 instead of /usr/lib (I'm running from memory so I may have misstyped). But sudo doesn't have this problem.
How can root's search path be different, especially after I state /usr & /usr/lib at the top of /etc/ld.so.conf.
View 2 Replies
View Related
Oct 8, 2009
Error: xorg-x11-drv-nvidia conflicts with xorg-x11-drv-catalyst
Error: xorg-x11-drv-catalyst conflicts with xorg-x11-drv-nvidia
I have followed the guide to install ATI proprietary drivers using RPM Fusion.
View 3 Replies
View Related
Jun 18, 2011
I found in my xorg.0.log the the xorg ATI driver is failing ALL options.
Code:
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 8.942] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[ 8.942] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[ 8.942] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[Code].....
View 9 Replies
View Related
Feb 26, 2009
Is it possible to import an xorg.conf file from Debian to Fedora and have it work? The reason for this is that I have an older monitor that only offers 800x600 as the maximum resolution.
View 2 Replies
View Related
Jan 18, 2011
I have a script scheduled to run with Crontab at 5am each weekday.The script is all good and executes manually (is just a simple stop/start of a service)I have reason to believe that it is not executing according to schedule.I am looking to see when a script was last executed.The script is executing accordingly (long story short, I forgot it was Tuesday). I would still like to know how to check a last-execution time.
View 1 Replies
View Related
Jun 16, 2010
How can I find out which script runs and automatically mounts any usb drive inserted? This script seems to be faulty because it fails on ext3 disks but functions fine on NTFS or HFS+ disks. If I can find out which script it is maybe someone can help me fix it?
View 14 Replies
View Related
Oct 23, 2015
I'm using debian jessie and I use lightdm..and I created a script in "/etc/X11/Xsession.d/canberra", with this contents:
Code: Select allif [ -z "$GTK_PATH" ] ; then
GTK_PATH="/usr/lib/gtk-2.0"
else
GTK_PATH="$GTK_PATH:/usr/lib/gtk-2.0"
fi
[URL] ......
Login to my user account the variable "$GTK_MODULES" is empty....
View 9 Replies
View Related
Apr 12, 2010
I usually set the transfer rate for wlan on start up because I dunno any other way of doing it. I find it weird that every other ubuntu versions can do rc.local at startup, even 9.10 xubuntu, but it didn't work for ubuntu.
how can I get the computer to run the script on startup? I tried to google for the problem but I only seen people mentioning the problem not the solution.
View 8 Replies
View Related
Feb 5, 2011
why a script is not being executed during shutdown. I have a script in 'init.d' that works properly from command line. It also works fine at boot. My problem is that it does not execute at all on shutdown. I am using all the standard rc.d stuff for the script. Here are my LSB tags:
Code:
### BEGIN INIT INFO
# Provides: setwebpage
# Required-Start: $network httpd
[code]....
When I check the rc?.d directories, the appropriate links are there with the proper NN. This script has to FTP a couple of files to a remote server so the network is required and the script should be run very early in the shutdown process. However, the first thing the script does is send a message via 'logger' indicating it is executing with the 'start' or 'stop' parameter. The 'stop' message never shows up in the log thus I have to conclude that it simply is never executed.
View 8 Replies
View Related
Dec 28, 2010
I have a .wav file that ask "what's is your name in a robotic/computer voice. Is there I way I can execute that .wav file to execute as the script itself ask "What is your name?" giving the illusion that the computer is asking the question?
View 7 Replies
View Related
Sep 2, 2010
The actual file didn't exist. I am confident it came through a site but I am more curious what settings in apache affect the ability to do this?
View 2 Replies
View Related
Aug 11, 2010
I want to get a of log all the commands executed by the root user with the following details :
incoming ip
username (thru which su was executed)
time and date
all the commands executed as mentioned above.
Also if user has managed to login as root, he should not be able to disable / delete the above info. Can this info be collected at some other physical server ?
View 5 Replies
View Related
Dec 15, 2010
I've firewall machine customers connect on it then connect to one of another 3 machines as root through ssh key , is there any way to know which user connect to which machine and what command that he has executed without using script command ?
View 1 Replies
View Related
Jan 3, 2011
i have a linux server, the Operating system is SUZE 9 but i need to see all commands executed by any users connected on the server and the ip of the host in a log file.the history file does not contain all info that i need .please is there a way to write a script in order to save this problem .
View 2 Replies
View Related
May 29, 2011
I am looking at the kernel code (just out of interest). What would be the first piece of code the kernel executes when the machine boots?
View 1 Replies
View Related
Apr 14, 2010
I'm running kubuntu 9.10 in VirtualBox, i wrote the simplest "hello world" program in C, the code compiles, i ran it through a debugger and it seems to run fine. the only problem is nothing gets actually printed to the console.
heres the code:
#include <stdlib.h>
#include <stdio.h>
int main (int argc, char **argv) {
printf("hello world");
[Code].....
View 2 Replies
View Related
Sep 7, 2010
When I run the following command from my macbook to my ubuntu server the terminal does not get released. It just sits there until I Control-C the command.
Code:
ssh user@my-server 'sudo /etc/init.d/nginx start'
When i login and then run the command everything works fine.
Code:
ssh user@my-server
sudo /etc/init.d/nginx start
[Code]....
View 1 Replies
View Related
Apr 1, 2011
I am using Tor 0.2.1.30 with Polipo and Vidalia 0.1.15, Ubuntu 10.04. Running tor on terminal works fine, but vidalia gets stuck at 85% The message log, as I understand it, shows it getting stuck at finding the right bridges, but the terminal tor is able to connect fine... ##This is what the vidalia log looks like. The log shows me trying it two times. Apr 02 01:32:56.698 [Notice] Tor v0.2.1.30. This is experimental software. Do not rely on it for strong anonymity. (Running on Linux i686)
Apr 02 01:32:56.699 [Notice] Initialized libevent version 1.4.13-stable using method epoll. Good.
Apr 02 01:32:56.699 [Notice] Opening Socks listener on 127.0.0.1:9050
Apr 02 01:32:56.699 [Notice] Opening Control listener on 127.0.0.1:9051
Apr 02 01:32:56.699 [Notice] Parsing GEOIP file.
Apr 02 01:53:08.204 [Notice] Have tried resolving or connecting to address '[scrubbed]' at 3 different places. Giving up.
[Code]....
View 1 Replies
View Related
Feb 14, 2010
I thought the standard was that rc.local was executed before GDM and Nautilus loads. For some odd reason, my Lenny desktop is loading Nautilus before it decides to execute rc.local. This is causing me some serious problems.
View 2 Replies
View Related
Apr 16, 2010
i am working with linux security auditing project on my Servers.I want to find out all the commands executed by individual users.i think using last command,find out the login details.But how can find out the commands executed by each users on all logins except "history".?
View 2 Replies
View Related
May 20, 2011
How to find whether the script executed manually or executed from cron job?I tried $SHELL but this don't work
View 5 Replies
View Related
Jun 7, 2011
Currently we are using Unix machine & the activity are logged in the file using following code used in profile
.profile code
# /ln/aud_root/dds_ibm/.profile
trap 'print "not allowed"' INT
trap 'print "not allowed"' QUIT
trap 'print "not allowed"' TSTP
[Code].....
View 2 Replies
View Related
Nov 2, 2010
I've got a fairly complex bit of code (a for loop within a for loop) which I'm trying to execute remotely, however because of the special characters this exits without making the connection.Usually I'd do:ssh root@ipaddress "for i in `cat /etc/hosts | awk '{print $2}'`; do ping $i; done;"But given the complexity of my code this usual tactic doesn't work
View 3 Replies
View Related
Nov 2, 2010
I have a read command in the following script, but it does not get executed when I run the script. What's wrong with the read statement?
View 3 Replies
View Related
Dec 11, 2010
I've just done a fresh install of Lubuntu 10.10 on an older Sony Vaio laptop. Having learned the hard way about editing xorg files, I wanted to create a backup of the xorg.conf file so that I dont have to do another install when I screw everything up. In a terminal, I typed
[Code]....
View 8 Replies
View Related
Jan 5, 2010
my laptop is running Slackware64 13.0. Today I tried to update to X.org 7.5 (version 1.7.1) from version 1.6.3 shipped with Slackware. I downloaded the relevant source tarballs from www.x.org and compiled them with no errors. The compiled packages are:
xorg-server-1.7.1
xf86-input-synaptics-1.2.0
xextproto-7.1.1
xcmiscproto-1.2.0
[code]....
My laptop has an NVIDIA graphics card and I'm using the proprietary driver from NVIDIA. Thus I reinstalled the driver after the update and tried to launch X.org with "startx". After a short while the NVIDIA logo appears for some hundred milliseconds and disappears then. But now the screen is blank and it is not possible to switch to another VT via Ctrl+Alt+Fx. But it is possible to login from another computer and restart everything, so that I conclude that the system does not hang.
It is even possible to do work normally with the laptop from remote. If I try to kill the X-server, it ignores SIGTERM and has to be terminated by SIGKILL. But the laptop's screen stays black and empty and does not allow to switch to another VT (chvt terminates with "interrupted system call."). dmesg does not give any errors.
/var/log/Xorg.0.log:
Code:
X.Org X Server 1.7.1
Release Date: 2009-10-23
X Protocol Version 11, Revision 0
[code]....
View 2 Replies
View Related
Sep 1, 2009
Why is X in F11 so slow. I have worked with fedora laptop since spring 2006. The first one was F5 and then F7. The X ran always very quickly,. well, at least quick enough. I did not feel any need to upgrade to F8 F9 or F10. I heard from my friend that new F11 is awsome. So I decided to change form F7 to F11. Result was quite big disappointment. The only good things were speed of Firefox and Opera. Specialliy Opera was like like greased lightning. But raw X applications were like snails. I mean applications compiled with lesstif or motif for example.
My machine is Acer TravelMate 2410. 1.5GHz and 512 MB RAM. Yes its old, but not too old. Can I tweak F11 somehow to make it work ?
View 1 Replies
View Related