How to create shortcut icon on Ubuntu

1. Install gnome-panel Chris@Ubuntu64:~$ sudo apt-get install –no-install-recommends gnome-panel     2. create desktop icon Chris@Ubuntu64:~$ gnome-desktop-item-edit ~/Desktop/ – – create-new     3. Input…

Continue Reading...

Create a script file(batch) on linux

1. Create new file with editors, vi, pico, nano and so on. Linux_Srv> pico script_batch   2. Edit the file #! /bin/sh or #! /bin/bash…

Continue Reading...

How to fix WBUI bootloader for dual booting linux mint

After registry cleanup software, "CCleaner", I lost my bootloader for Linux Mint 11. Here is simple fix and steps.   1. First of all, run…

Continue Reading...

Linux martian source error message

If you get below message on the console, when you try to get access server/app (192.168.77.6). Especially, from different network ( in this cse 192.168.88.x/24)  …

Continue Reading...

How to enable SNMP daemon on Linux system

1. Install SNMPD(Daemon) Linux_Server# apt-get install snmpd   2. Modifying a snmpd.conf file Linx_Server# cd /etc/snmp Linx_Server# cp snmpd.conf snmpd.conf.old Linx_Server# pico snmpd.conf    …

Continue Reading...

How to enable a USB-Serial connection with putty on linux Mint

Tweet 1. Most of case, PL2303 driver is installed and apply to below command to verify it.   Linux_Mint # dmesg   : : :…

Continue Reading...

How to install FreeNX Server on Kubuntu 10.10

NX server package is not included on Ubuntu distro as default. So, you need to add repository URL on sources.list at /etc/apt. Let’s configure FreeNX…

Continue Reading...

How to configure a static IP or DHCP and DNS on Kubuntu

DHCP – Modify ‘interfaces’ file at /etc/network/. Kubuntu_Server# pico /etc/network/interfaces   # The primary network interface – use DHCP to find our address auto eth0…

Continue Reading...

How to configure static IP address on CentOS

  1. DHCP Configuration Check file at /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOOTPROTO=dhcp ONBOOT=yes   2. Static Configuration Check file at /etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0 BOOTPROTO=static HWADDR=00:19:D1:2A:BA:A8 IPADDR=192.168.1.33 NETMASK=255.255.255.0 ONBOOT=yes  …

Continue Reading...

How to setup Advanced TFTP Server on Linux (SuSE)

Advanced TFTP server & client is simple to setup and use on Linux box (OpenSuSE in this example). Download and install yum install atftp  …

Continue Reading...

Basic Linux Commands

[ Terminal ] Alt +F6 = Terminal switcher [ Users management ] Check user list Linux# cat /etc/passwd   adduser JohnG passwd JohnG or useradd …

Continue Reading...

[Ubuntu] What is a default password for root account?

Tweet I am getting below massge when I am trying to access root mode on Ubuntu Server. UbuntuServer:~$ su root Password: ****** su: Authentication failure…

Continue Reading...