Ubuntu Server - Setting root password

By default Ubuntu Server has no password set for the root account. The account is locked until you set the password for the account.

This is done by executing the following command in a shell:

sudo passwd root

Then you have to enter the same password twice. From now on a su - will work ...

Ubuntu/Linux Server - Switch between tty's

Well for those not used to it and are always working on boring windows displays in stead of performant - back to basics and essentials - character based screens ...
There seem to be six of them.
At startup you are by default using the first.
By pressing ctrl-alt-Fx you can select any of the six tty's.
Ctrl-Alt-F2 will go to the second tty
Ctrl-Alt-F1 will go back to the first (the default in use)

Ubuntu - server - setting fixed ip adress iso dhcp

If Your Ubuntu System has set to use DHCP, you will want to change it to a static IP address here is simple tip

open the /etc/network/interfaces file.

sudo vi /etc/network/interfaces

If you are using DHCP for your primary network card which is usually eth0, you will see the following lines

auto eth0
iface eth0 inet dhcp

As you can see, it’s using DHCP right now. We are going to change dhcp to static, and then there are a number of options that should add and here is the example and you can change these settings according to your network settings.

auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

Restart the neworking service using the following command

sudo /etc/init.d/networking restart

Client language used with Oracle Forms

Context
Forms application hosted on a forms server
Client is running jinitiator.
Language is set for the default functions to the local language.
Problem
control end user language to be somethng for example english
Solution
set NLS_LANG in the client environment to for example AMERICAN_AMERICA.WE8ISO8859P1