12
LINUX

Linux Introduction

Embed Size (px)

Citation preview

Page 1: Linux Introduction

LINUX

Page 2: Linux Introduction

What is Linux

Linux is, in simplest terms, an operating system. It is the software on a computer that enables applications and the computer operator to access the devices on the computer to perform desired functions.Linux's kernel (the central part of the operating system) was developed by Linus Torvalds at the University of Helsinki in Finland.

Page 3: Linux Introduction

Kernal

Each operating system uses a kernel. Without a kernel, you can’t have an operating system that actually works.

The kernel’s job is to talk to the hardware and software, and to manage the system’s resources as best as possible.

It talks to the hardware via the drivers that are included in the kernel

Page 4: Linux Introduction

Architecture

Page 5: Linux Introduction

Find Commands

alias l=lswgetfind . -name tecmint.txtfind /home -name tecmint.txtfind /home -iname tecmint.txtfind / -type d -name Tecmintfind . -type f -name tecmint.phpfind . -type f -name "*.php"

Page 6: Linux Introduction

Permission

The Permission Groups used are:owner-ugroup-gall user-o or a

Page 7: Linux Introduction

The Permission Types that are used are: r - Read=4 w - Write=2 x – Execute=1

chmod man chown(change the owner or group of the file ) sudo

Page 8: Linux Introduction

commands

scpssh(securely login onto remote system)grepcdCd ..

Page 9: Linux Introduction

commands

cpvimbashrcifconfig/etc/hosthostname

Page 10: Linux Introduction

ps -eaf | grep javakill -9pwd (current Directory)passwd-for change passwordln -s (softlink)ln(hardlink)mkdirrmdir(remove empty directory)rm -rftar zip

Page 11: Linux Introduction

How to change the default port of localhost in grails

-Dgrails.server.port.http=8090

Page 12: Linux Introduction

Thank You