Useful linux commands

# id  ---------- Show the active user id with login and group

# id username ---------- Shows details for a particular user

last  ----------- Show last logins on the system

# who  --------- Show who is logged on the system

# who -u ------- shows the pid also of the logged in user, so easy to kill that particular user only. # kill -9 PID

# useradd -c "Colin Barschel" -g admin -m colin  ----- all in one line

ulimit -a
The shell limits are governed by ulimit. The status is checked with ulimit -a,
To change the open files limit from 1024 to 10240 do:
# ulimit -n 10240    , This is only valid within the shell.

 Login users and applications can be configured in /etc/security/limits.conf

# cat /etc/security/limits.conf
*  hard  nproc 250  # Limit user processes
asterisk  hard  nofile  409600 # Limit application open files

Use chkconfig to configure the programs that will be started at boot in a runlevel.

# chkconfig --list  ------- List all init scripts
# chkconfig --list sshd ----- Report the status of sshd
# chkconfig sshd --level 35 on ------ Configure sshd for levels 3 and 5
# chkconfig sshd off  -------- Disable sshd for all runlevels

Some Kernel Modules

#  lsmod  -------- List all modules loaded in the kernel
# rmmode --------  To remove a module
# modprobe usb-storage --------- To load a module
# insmod ----- To load a module 





Terima kasih telah membaca artikel tentang Useful linux commands di blog Tutorial Opensource and Linux jika anda ingin menyebar luaskan artikel ini di mohon untuk mencantumkan link sebagai Sumbernya, dan bila artikel ini bermanfaat silakan bookmark halaman ini di web browser anda, dengan cara menekan Ctrl + D pada tombol keyboard anda.

Artikel terbaru :

  • How To Install Cinnamon In Ubuntu 14.04
  • How To Install Mate Desktop In Ubuntu 14.04
  • Creating the first Windows Server 2003 Domain Controller in a domain
  • How To Install Ubuntu 13.10 Server
  • How to Install Nuvola Player in Ubuntu
  • How to establish Emerald in Ubuntu 13.10 & Linux Mint 16
  • How to Restoring iptables Automatically On Boot on Debian and Ubuntu
  • How to Compile FFMPEG with H.264 and LAME in Ubuntu And Debian
  • How to Install Linux on a Playstation 2
  • apt-fast: Improve apt-get Download Speed
  • Artikel terkait :