Linux Tutorials on the topic “shell”
-
Shell Scripting Part I: Getting started with bash scripting
Author: jonilyn2730 • Tags: linux, shell, programming • Comments: 11
This is the first part of a series of Linux tutorials. In writing this tutorial, I assume that you are an absolute beginner in creating Linux scripts and are very much willing to learn. During the series the level will increase, so I am sure there will be something new even for more advanced users.
-
Shell Scripting Part 2: Accepting Inputs and Performing Shell Arithmetic
Author: jonilyn2730 • Tags: linux, shell, programming • Comments: 7
This article is the second part of the Howtoforge shell scripting tutorial series. By this time, I assume that you have read the first part of the series and know how to create a simple script and execute it. In the second part, you will learn how accept inputs from the user and process them through shell scripting.
-
Setting a static IP on Ubuntu: a beginner's guide
Author: Akshay Pai • Tags: linux, ubuntu, shell, desktop • Comments: 13
Sometimes situations occur when a static IP address needs to be set. For example, if you have programs that use the IP address say for remote login. This tutorial deals with setting a static IP for Ubuntu OS via shell or desktop application.
-
-
Linux Basics: How to Edit Files on The Shell with Nano
Author: howtoforge • Tags: linux, shell • Comments: 0
Linux Basics: How to Edit Files on The Shell with Nano Nano is a fairly versatile and user-friendly text editor that is capable of being used in a fuss-free manner by the somewhat inexperienced users too, as against the more sophisticated text editors such like Emacs and Vim. While these are excellent programs, they do have a bit of a learning curve. It works seamlessly in combination with Sudo, much to the glee of end-users.
-
Linux Basics: How to Add and Delete Shell Users on CentOS
Author: howtoforge • Tags: linux, shell • Comments: 1
Linux Basics: How to Add and Delete Shell Users on CentOS The process of adding and deleting shell users on a new server is a basic task every Linux user or system Administrator should know.
-
How To Install The Latest Git On Ubuntu 14.04
Author: howtoforge • Tags: linux, other, shell • Comments: 6
How To Install The Latest Git On Ubuntu 14.04 This tutorial explains the process of installing Git on Ubuntu 14.04. For the uninitiated, Git, the client for the immensely popular GitHub, is a commonly used open source distributed version control system that was originally developed by Linus Torvalds with the objective of supporting Linux Kernel development.
-
Simple Patch Tools
Author: Everweb • Tags: programming, shell • Comments: 1Simple Patch Tools Creating: When all you want to do is build a patch file that contains only the changes you've made today. Installing: I typically want to take a backup of the files that are going to be overwritten so that I can quickly undo the patch if necessary.
-
The Bash Script To Configure The Firewall Using IPTABLES
Author: ajaonchat • Tags: security, shell, pclinuxos • Comments: 1About the Script: This script is about to build a firewall in Linux OS by using iptables, the user only needs to follow and answer the simple and easy steps and the script will generate the user specified iptables rule in its original form. I HAVE TESTED THE SCRIPT ON PCLINUXOS, FEDORA-9, DREAM_LINUX, UBUNTU-8. This is my iptables Version 1.0 (USMAN AKRAM - Lucky)
-
Making snapshots of the process table shown by the TOP command
Author: till • Tags: shell • Comments: 0
To make a snapshot of the current process table, use the following command: top -n 1 -b > /tmp/processtable.txt You can now view the textfile with any text editor, e.g. pico or vi.
-
Show all processes for a specific user
Author: Till Brehm • Tags: shell • Comments: 4
To view only the processes owned by a specific user, use the following command: top -U [USERNAME] and replace [USERNAME] with the name of the user.