Tags: ubuntu
Enable Ubuntu 8.10 Root Password
By Jason on Jan 14, 2009 | In Linux | Send feedback »
One of my main frustrations with Ubuntu has always been the lack of a usable root account.
As a result, I've taken to enabling the account on all of my boxes.
All you have to do is assign a password to the account:
Code:
sudo passwd root |
and if you decide to disable the account later:
Code:
sudo passwd -l root |
If you do add a password to root, don't mess with the sudoers file, as if you disable root in the sudoers file and later disable the account itself, you won't be able to do anything and will have to use a livecd to fix it.
ORA-27121: unable to determine size of shared memory segment
By Jason on Jan 14, 2009 | In Linux | Send feedback »
Installing Oracle 10G on Ubuntu this morning...
Got the following error:
Code:
ERROR: | |
| |
ORA-01034: ORACLE not available | |
| |
ORA-27121: unable to determine size of shared memory segment | |
| |
Linux Error: 13: Permission denied |
This is caused by Oracle installer not setting setuid on $ORACLE_HOME/bin/oracle. To fix do:
Code:
$ cd $ORACLE_HOME/bin | |
$ chmod 6751 oracle |