search for: starta

Displaying 9 results from an estimated 9 matches for "starta".

Did you mean: start
2015 Jun 02
3
daemon in /etc/init.d/functions creates no pifile?
Hi, we started using centos7 to run kvm+libvirt. For novnc to virtual machines I like to start websockify as a daemon by libvirt (as a hook) Under Debian I used the line: # start-stop-daemon --start --chuid $RUNUSER --make-pidfile --pidfile $PIDFILE --startas $PROGRAM -- $OPTIONS which creates a nice pidfile. In Centos I figured out, to include /etc/init.d/functions and I tried: # daemon --user $RUNUSER --pidfile=$PIDFILE $PROGRAM $OPTIONS But this seems not to create a pidfile at all. It checks only if a pidile exist already. This is executed at th...
2015 Jun 02
1
daemon in /etc/init.d/functions creates no pifile?
...started using centos7 to run kvm+libvirt. >> For novnc to virtual machines I like to start >> websockify as a daemon by libvirt (as a hook) >> >> Under Debian I used the line: >> # start-stop-daemon --start --chuid $RUNUSER --make-pidfile --pidfile >> $PIDFILE --startas $PROGRAM -- $OPTIONS >> which creates a nice pidfile. >> >> In Centos I figured out, to include /etc/init.d/functions and I tried: >> # daemon --user $RUNUSER --pidfile=$PIDFILE $PROGRAM $OPTIONS <snip> Sorry I missed the beginning of this thread. You are using (Cen...
2009 Feb 25
2
Segmentation fault in shadow.so
...tc/init.d/puppet start * Starting puppet configuration management tool /usr/lib/ruby/1.8/x86_64-linux/shadow.so: [BUG] Segmentation fault ruby 1.8.4 (2005-12-24) [x86_64-linux] /etc/init.d/puppet: line 35: 25973 Aborted start-stop-daemon --start --quiet --pidfile /var/run/puppet/$NAME.pid --startas $DAEMON -- $DAEMON_OPTS ---------------------------- From my limited understanding, I think this means that the shadow.so in Ubuntu 6.06 x64 is broken, and crashes when Puppet/Rubyattempts to use it. It appears this is a known, fixed problem over on Debian: http://www.mail-archive.com/debia...
2005 Aug 05
1
starting asterisk with nice -5
Is there any script guru on the list that can help me. I'm trying to start asterisk with nice -5. Normally the command would be: nice -5 asterisk but asterisk start from the scrip on Gentoo as -U asterisk -G asterisk Here is the script: =============== depend() { need net use zaptel } start() { local OPTS USER GROUP if [[ -n "${ASTERISK_NICE}" ]];
2015 Jun 02
0
daemon in /etc/init.d/functions creates no pifile?
...ote: > Hi, > > we started using centos7 to run kvm+libvirt. > For novnc to virtual machines I like to start > websockify as a daemon by libvirt (as a hook) > > Under Debian I used the line: > # start-stop-daemon --start --chuid $RUNUSER --make-pidfile --pidfile $PIDFILE --startas $PROGRAM -- $OPTIONS > which creates a nice pidfile. > > In Centos I figured out, to include /etc/init.d/functions and I tried: > # daemon --user $RUNUSER --pidfile=$PIDFILE $PROGRAM $OPTIONS > > But this seems not to create a pidfile at all. It checks only if > a pidile ex...
2012 Nov 19
2
[PATCH 158/493] video: remove use of __devinit
...struct sis_video_info *ivideo, struct pci_dev *mypdev, unsigned short pcivendor) { @@ -4591,7 +4589,7 @@ sisfb_find_host_bridge(struct sis_video_info *ivideo, struct pci_dev *mypdev, return ret; } -static int __devinit +static int sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta, unsigned int enda, unsigned int mapsize) { @@ -4623,7 +4621,7 @@ sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta, return 1; } -static int __devinit +static int sisfb_post_xgi_ramsize(struct sis_video_info *ivideo) { unsigned int buswidth, ranksize, channelab, mapsize;...
2012 Nov 19
2
[PATCH 158/493] video: remove use of __devinit
...struct sis_video_info *ivideo, struct pci_dev *mypdev, unsigned short pcivendor) { @@ -4591,7 +4589,7 @@ sisfb_find_host_bridge(struct sis_video_info *ivideo, struct pci_dev *mypdev, return ret; } -static int __devinit +static int sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta, unsigned int enda, unsigned int mapsize) { @@ -4623,7 +4621,7 @@ sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta, return 1; } -static int __devinit +static int sisfb_post_xgi_ramsize(struct sis_video_info *ivideo) { unsigned int buswidth, ranksize, channelab, mapsize;...
2012 Nov 19
2
[PATCH 158/493] video: remove use of __devinit
...struct sis_video_info *ivideo, struct pci_dev *mypdev, unsigned short pcivendor) { @@ -4591,7 +4589,7 @@ sisfb_find_host_bridge(struct sis_video_info *ivideo, struct pci_dev *mypdev, return ret; } -static int __devinit +static int sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta, unsigned int enda, unsigned int mapsize) { @@ -4623,7 +4621,7 @@ sisfb_post_xgi_rwtest(struct sis_video_info *ivideo, int starta, return 1; } -static int __devinit +static int sisfb_post_xgi_ramsize(struct sis_video_info *ivideo) { unsigned int buswidth, ranksize, channelab, mapsize;...
2003 Aug 22
3
PAE removal patch for testing
...} + return; } /* @@ -2308,7 +2502,7 @@ mpte = NULL; for (i = 0; i < PAGEORDER_SIZE; i++) { vm_object_t lobject; - pt_entry_t *pte; + unsigned *pte; addr = addra + pmap_prefault_pageorder[i]; if (addr > addra + (PFFOR * PAGE_SIZE)) @@ -2317,11 +2511,11 @@ if (addr < starta || addr >= entry->end) continue; - if ((*pmap_pde(pmap, addr) & PG_V) == 0) + if ((*pmap_pde(pmap, addr)) == NULL) continue; - pte = vtopte(addr); - if ((*pte & PG_V)) + pte = (unsigned *) vtopte(addr); + if (*pte) continue; pindex = ((addr - entry->sta...