Search found 74 matches

by DaemonProgrammr
2013/04/18 11:03:07
Forum: CentOS 6 - General Support
Topic: /etc/rc.d/rc.local not running on boot.
Replies: 10
Views: 56414

Re: /etc/rc.d/rc.local not running on boot.

If code that is in there does not seem to run on boot, but runs if you execute it manually, there might be a path issue...

Do you use absolute or relative paths to files and commands?
by DaemonProgrammr
2013/04/18 08:15:38
Forum: CentOS 5 - Software Support
Topic: gcc 4.7 or Red Hat Developer Toolset equivalent for Centos?
Replies: 24
Views: 51595

Re: gcc 4.7 or Red Hat Developer Toolset equivalent for Centos?

I think you can add this command to the .bashrc file in your homedirectory.
This is a script file that gets executed everytime you open a terminal. (IIRC!)

This way, you always have the gcc command.
by DaemonProgrammr
2013/04/04 08:45:58
Forum: CentOS 5 - Networking Support
Topic: DHCP Server - see exactly how many IP Addresses are issued out
Replies: 2
Views: 4515

DHCP Server - see exactly how many IP Addresses are issued o

Without being able to test this: The dhcp lease information is usually stored in /var/lib/dhcp/dhcpd.leases (or so I read). The format of this file according to http://linux.die.net/man/5/dhcpd.leases is one lease per line. So maybe something like [code]cat /var/lib/dhcp/dhcpd.leases | wc -l[/code] ...
by DaemonProgrammr
2013/03/29 08:33:43
Forum: CentOS 5 - Hardware Support
Topic: problem(?) with access indicator light
Replies: 3
Views: 2356

problem(?) with access indicator light

What access indicator light would this be?

Harddisk? Network? (Power?)
by DaemonProgrammr
2013/03/15 11:27:13
Forum: CentOS 6 - General Support
Topic: Cron - Help!
Replies: 4
Views: 822

Re: Cron - Help!

Typically, running a cron job has a (very) limited environment definition. It might be possible that the path definition doesn't contain a path to the php command binary. One thing that often helps is including the full path when calling commands from cron... i.e. something like '/usr/bin/php /var/w...
by DaemonProgrammr
2013/03/12 09:27:52
Forum: CentOS 6 - Software Support
Topic: setup whindows movie maker for centos 6.3
Replies: 2
Views: 865

setup whindows movie maker for centos 6.3

WineHQ sez: http://appdb.winehq.org/objectManager.php?sClass=version&iId=13556

It'll run with wine. =)
by DaemonProgrammr
2013/03/11 09:10:31
Forum: CentOS 5 - General Support
Topic: Typing yum into command line?
Replies: 5
Views: 1142

Re: Typing yum into command line?

The root password is set when installing the Linux OS.

If you didn't do that yourself, you'll have the ask the person that did..
by DaemonProgrammr
2013/02/11 08:06:59
Forum: CentOS 6 - Security Support
Topic: Firewall issues
Replies: 7
Views: 3165

Firewall issues

Keep in mind that, traditionally, you have to 'GRANT' access for a user from another host than 127.0.0.1.
Otherwise your connections just won't be accepted..
by DaemonProgrammr
2013/02/11 08:05:21
Forum: CentOS 6 - Security Support
Topic: Firewall open for MySQL, but requests still blocked
Replies: 6
Views: 2180

Re: Firewall open for MySQL, but requests still blocked

Also, keep in mind that, inside MySQL, you'll have to configure a user to 'GRANT' access from a host other than 127.0.0.1...

(This kept me running around at one time for a couple of minutes... ;-) )
by DaemonProgrammr
2013/02/08 08:55:08
Forum: CentOS 6 - Software Support
Topic: error in displaying webpage
Replies: 2
Views: 448

Re: error in displaying webpage

That is a server-side (JSP) error...

Is this a server you own / manage?