Ubuntu

How to Reset “root” Password on Linux Operating Systems?

How to Reset “root” Password on Linux Operating Systems?

Fadıl

In this article, we will see how to reset the root password of our Linux operating systems. This will be useful if we forget or do not know the password of our operating system.
Of course, we need to be physically next to our server for this process. That’s why we have to care about the physical security of my servers in order not to hack our servers.

  1. As a first step, if our system is on, we shut it down and when starting again we press any key of the keyboard and enter our boot options.

How to Start and Stop Automatic Database in Linux Operating Systems?

How to Start and Stop Automatic Database in Linux Operating Systems?

Fadıl

Linux Operating Systems will automatically see how to start and stop the database. Together with the database, we will enable Listener Service and Enterprise Manager to automatically turn on and off.

When this operating system is installed, the shutdown or reboot command will shut down.

  1. On our system, we create “.bash_profile için for oracle user. In this article, I configured it according to the features of my system. You need to configure according to your own system.
--- With Oracle user, we will open the ".bash_profile" file in the Home directory as follows.
$ vim .bash_profile

-- After opening the required variables to the file, we save and exit the file.

# Oracle bash_profile Environment Settings

TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_HOSTNAME=techsoftcenter-db.localdomain; export ORACLE_HOSTNAME
ORACLE_UNQNAME=orcl; export ORACLE_UNQNAME
ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
GRID_HOME=/u01/app/11.2.0.3/grid; export GRID_HOME
DB_HOME=$ORACLE_BASE/product/11.2.0.3/db; export DB_HOME
ORACLE_HOME=$DB_HOME; export ORACLE_HOME
ORACLE_SID=orcl; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
BASE_PATH=/usr/sbin:$PATH; export BASE_PATH
PATH=$ORACLE_HOME/bin:$BASE_PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

if [ $USER = "oracle" ]; then
  if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
  else
    ulimit -u 16384 -n 65536
  fi
fi

alias oraenv='. /home/oracle/.bash_profile'
  1. We are preparing our services that will start at the operating system.
-- we switch to privileged root user mode.

$ su - root 
Password: 
# vim /etc/init.d/dbora

-- Then we make the following changes in the file "/etc/init.d/dbora".

#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script.
#
# Set ORA_OWNER to the user id of the owner of the 
# Oracle database software.

ORA_OWNER=oracle

case "$1" in
    'start')
        # Start the Oracle databases:
        # The following command assumes that the oracle login 
        # will not prompt the user for any values
          su - $ORA_OWNER -c "/home/oracle/scripts/startup.sh >> /home/oracle/scripts/startup_shutdown.log 2>&1"
        touch /var/lock/subsys/dbora
        ;;
    'stop')
        # Stop the Oracle databases:
        # The following command assumes that the oracle login 
        # will not prompt the user for any values
            su - $ORA_OWNER -c "/home/oracle/scripts/shutdown.sh >> /home/oracle/scripts/startup_shutdown.log 2>&1"
        rm -f /var/lock/subsys/dbora
        ;;
esac
  1. Set the security on the file.
# chmod 750 /etc/init.d/dbora
  1. We’re adding it to the chkconfig layer to work at a startup.
# chkconfig --add dbora
  1. Now we put the opening and closing scripts into the directory where we will create the dbora file as we said before. So we will write the commands that should work on opening and closing into these files. We will then make the necessary configurations for the “oracle” user to access our files.
# mkdir -p /home/oracle/scripts
# chown oracle.oinstall /home/oracle/scripts
  1. Now we can create our startup and shutdown scripts. Here you will need to set the DB parameter to your own system.
-- We create our Startup Script.

# vim /home/oracle/scripts/startup.sh

-- In the file we opened, we enter the following lines.

#!/bin/bash

export ORACLE_SID=orcl
ORAENV_ASK=NO
. oraenv
ORAENV_ASK=YES

# Start Listener
lsnrctl start

# Start Database
sqlplus / as sysdba << EOF
STARTUP;
EXIT;
EOF

# Start Enterprise Manager
emctl start dbconsole

-- We are creating our closing script.

# vim /home/oracle/scripts/shutdown.sh

-- In the file we opened, we enter the following lines.

#!/bin/bash

export ORACLE_SID=orcl
ORAENV_ASK=NO
. oraenv
ORAENV_ASK=YES

# Stop Enterprise Manager
emctl stop dbconsole

# Stop Listener
lsnrctl stop

# Stop Database
sqlplus / as sysdba << EOF
SHUTDOWN IMMEDIATE;
EXIT;
EOF
  1. After that, we will create the privileges and security settings of our scripts.
# chmod u+x /home/oracle/scripts/startup.sh /home/oracle/scripts/shutdown.sh
# chown oracle.oinstall /home/oracle/scripts/startup.sh /home/oracle/scripts/shutdown.sh
  1. That’s all we can do now we can test our services.
# service dbora start
# service dbora stop

This article was written by testing Oracle 11g R2 (11.2.0.3.0) on Oracle Enterprise Linux 6.4.

How to Install LibreOffice (Alpha / Beta / Stable) Version

How to Install LibreOffice (Alpha / Beta / Stable) Version

Fadıl

In this article, I will explain how to install and update LibreOffice in a simple way and the installation information required to be a document in a single article.

How to Install and Update LibreOffice

If you want to install LibreOffice on your computer or update LibreOffice already installed on your computer, run the following commands on the terminal.

Note: You do not need to run the following command 3 if you just want to update LibreOffice. You can update to the latest release from Update Manager.

How to Install TeamViewer on Linux?

How to Install TeamViewer on Linux?

Teamviewer is a powerful and secure remote access and control program that can run on multiple operating systems and connect to multiple devices at the same time. Remote desktop sharing with technical support also allows us to transfer files between devices connected to the Internet. Teamviewer mainly supports platforms such as Windows, Mac, Linux, Chrome OS, Android, iOS, Windows App and Blackberry.

Main Features of TeamViewer:

  1. It enables us to connect from PC to PC, from mobile devices to PC, from PCs to mobile and from mobile devices to mobile.
  2. It works seamlessly with many new and old versions.
  3. It does not require a special setting.
  4. It is simple to install and use.
  5. Supports more than 30 foreign languages.
  6. It offers high performance.
  7. It provides high security for data transfer.
  8. Free for testing and personal use.

Installing TeamViewer (RedHat, CentOS, Fedora, SUSE)

To install TeamViewer, you can download and install the rpm package, or run the following commands on the terminal.

Git: What are the Basic Commands and Uses?

Git: What are the Basic Commands and Uses?

Fadıl

It’s not like you don’t use SVN / Git systems anymore. In this article, we will see simple Git commands;

Git Create

The Git command is written and compiled briefly as the following command.

git init

When we initialize, the subdirectory structure for git in the folder is created.

Looking at the Situation

Looking at the state of our repository is often something we have to do. We give information about the repo and we understand what to do depending on the situation.