#
#
#
#
#
#

Using NFS Sharing Via Exportfs

| CentOS |

Notice the step bellow:

1. Enter root login

2. Edit exportfs setting

$ vim /etc/exportfs
/home/ 192.168.19.0/255.255.255.0(ro,no_root_squash,no_all_squash,sync)

explaination:
/home/
This is filled by sharing path.
192.168.19.0/255.255.255.0
This is setting for sharing to all IP Class

3. Start the service

$ /sbin/service nfs start

4. Check the service

$ exportfs

elshadino act

User Management

| STARTCOM/REDHAT |

Adding user in terminal:

First way:
Login on root and follow this steps

$ adduser newusername -p newuserpassword

Second way:
Login on common user, and follow this steps

$ /usr/sbin/adduser newusername -p newuserpassword


elshadino act

Sad Ending of The Day

| OPEN MIND |


This day is the most spiritfull day.. At 10.00 o'clock, there is AKM subject was taught by mister Jaka Isgiyarta. What a good lecturer he is. Not only the material of the subject that he teach, but about the meaning of life.

But, in the end of this day, when the sun will disappear... There is a satan that threatening me with E mark on my TIB subject.

Go to hell satan...



Excel Troubleshoot

|OPEN SUSE|

One more trick about suse.
What do you think if your excel file doesn't work with your oocalc (open office spreadsheet? Besides, if you open the oocalc, it can work smoothly. but if you open it directly, the oocalc will show the open office opening slide and sometime later it will close soon.

What happen??
Maybe because the file isn't readed well by oocalc. Oocalc only read the xls extention but it doesn't read the contain.

The solution??
Right click on the xls file and look at openwith> other


Look at the step above!
Click the other choice and type oocalc on blank path below open with text.
and don't forget, give check mark on remember application assosiation for this type of file.



elshadino act

Sax, Setting Your VGA

|OPEN SUSE|

In this time, I will review Open suse again. Do you know sax? The function of sax is similar with yast. Deferences between yast and sax is only on the spesific of setting. In sax, we only can set monitor, mouse, keyboard, tablet, and touch screen.

Why do we use Sax?
We use sax if the yast manager is not function well. The example is when your desktop open suse is looked big (resolution 800x600) and you can't set it bigger become 1024 x 768 resolution. This is the function of sax.

Using sax
In terminal, you can type
$
sudo sax2
and lets the application run.

Setting VGA Card
To setCard and monitor properties, you should use sax2 under shell via init 3 and below su.
In terminal (SU), type
$ sudo init 3
$ sax2
and the same thing, lets the application run.

elshadino act

Shortcut on Opensuse

|OPENSUSE|

First time I used Opensuse, I fell very guilty because I don't familiar with it. Once upon when my friend asked to me "Where is the task manager of OpenSuse?"
Ofcourse I don't know the answer. Shaming don't hear him, is the best answer.. Hahahaha...

After that, I try to search it in the forum. Do you know the answer?
Yes, you only push CTRL and ESC key together.

Another tip: To search file or folder, you can push CTRL and F2 key together.



elshadino act

Show Your Distro In Terminal

Many ways to show the linux version in terminal, they are:

$ dmesg | head -1

it will show you:

Linux version 2.6.18-92.el5xen (mockbuild@builder16.centos.org) (gcc version 4.1.2 20071124 (Red Hat 4.1.2-42)) #1 SMP Tue Jun 10 19:55:54 EDT 2008

$ cat /proc/version

it will show you with the same as command before.

$ cat /etc/issue

it will show you this text

CentOS release final 5.2. (Final)
kernel \r on an \m

elshadino act

Start Service Server

To make service server run automatically:
$ sudo /usr/sbin/ntsysv

To make service server run manually:
$ sudo /sbin/service xxx {start|stop|restart|etc.}

elshadino act