Deploying Oracle Database 11g Release 2 on CentOS Linux Systems
System Preparation and Kernel Tuning
Establish dedicated system accounts and directory structures before initiating the deployment. Use a privileged terminal session to execute the following group and user provisioning commands:
groupadd dbadmin_grp
groupadd dboper_grp
useradd -g dbadmin_grp -G dboper_grp -m odbsvc
passwd odbsvc
id odbsvc
Desi ...
Posted on Thu, 04 Jun 2026 16:19:30 +0000 by anikin
Setting Environment Variables in Linux: .bashrc vs /etc/profile
Understanding Environment Variables
Environment variables are parameters that define the operating enviroment for processes and users. The most frequantly used example is PATH, which tells the system where to locate executable files when you type a command without specifying its full directory path.
For instance, after installing Java on Window ...
Posted on Tue, 19 May 2026 04:41:23 +0000 by sogno