Returned 5 Results for "linux" Ordered By Relevance
relevance: [2.2]
2007-12-12
Setting the date in linux
# date 121210312007
in the format - DDMMhhmmYYYY
# date
returns: Wed Dec 12 10:31:00 GMT 2007
type to commit to the hardware clock
# hwclock --utc --systohc...
relevance: [2.18]
2007-12-07
When using any board that utilises the Nvidia NForce 6100 (MCP61) chipset with Linux you will probably have to add the boot option of noapic as due to all the funky energy saving features on the board the chipset speed is all screwed up and Linux can't interface with any of the board management feat...
relevance: [1.96]
2007-08-31
Install:
chmod +x jdk-6u2-linux-i586-rpm.bin
./jdk-6u2-linux-i586-rpm.bin
Follow prompts [yes]/[no] etc
If it gives the error message
error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
Then you have to download...
relevance: [1.88]
2007-09-07
in order to allow chkconfig to run a file in etc/init.d or wherever as a start up service the file must have a descriptor header that tells chkconfig what its
run level - startup - shutdown
are - this is set in the following way
#!/bin/sh
#
# chkconfig: 3 87 20
# description: Description...
relevance: [1.88]
2008-02-13
caused by: java.lang.RuntimeException: Exception creating identity: domainName
Solution
your computer can't find itself
go to:
etc/hosts
make sure the loopback address refers to the name of the box you are running on ie
127.0.0.1 documentationServerBox localhost.localdomain loc...