This website is now static html (since the end of 2010). The pages you see here are a simple wget spider mode crawl of the original wordpress, thus dynamic features like commenting are not working anymore.

Posts Tagged ‘linux’



Automatic Oracle 10g Startup and Shutdown at Ubuntu Linux system boot

Set the restart flag to “Y” in /etc/oratab, from something like this dbname:/u01/app/oracle/product/10.2.0/db_1:N to something like dbname:/u01/app/oracle/product/10.2.0/db_1:Y Copy&paste the boot script code that follows into /etc/init.d/dbora (the file dbora doesn’t exists, so create it) and modify the bold values to reflect your installation: #!/bin/sh # description: Oracle auto start-stop script. # # Set ORA_HOME to [...]