Recommended Posts

This may seem like a REALLY stupid question, but please bear with a Noobie to Linux.

My question is what about security when running Linux?

I wouldn't dream of running under Windows XPpro without a firewall and a GOOD AV program running. What about when running Linux? Do you need these programs running and if so, could you please reccomend some that I should use?

I am just about ready to download some distros and give them a try.....

Gee..will this be like trying to learn DOS was so many years ago??

Thanks for any help you might be willing to offer.

Jim

Link to post
Share on other sites

you definately do not need an antivirus, your system is pretty much immune to all windows virii, and there are not any linux virus to worry about.

Most popular distros come witha fire wall built in. You will just need to enable it.

Link to post
Share on other sites
Gee..will this be like trying to learn DOS was so many years ago??

hmmmm, I can't relate to that comparison, as I never learned DOS...Since most window managers (kde, gnome, etc. etc. ) act somewhat like Windows you'll be relatively comfortable doing things in a graphical environment just like in Windows but command line is really where the power is at in linux...so to answer the question....No, it won't be like learning DOS, it'll be like learning linux command line...meaning BETTER...lol

Link to post
Share on other sites
Thanks to both of you for the reply

This sets my mind to rest.

Onwards!!!

Good luck with it:-) Just make sure as shanenin said that you enable your firewall when you install your distro. Without a firewall enabled you can be hacked in Linux.

Link to post
Share on other sites

You can do really neat tricks with linux cli (command line interface for you newbies) called shell scripting, if you have been in #besttechie im sure you would of heard that crrj's dad is publishing a light reading book (500 odd pages i think) on how to script commands.

So, if you wanted to automate the process of getting email to your local server before you even see the main screen it should be simple enough task, try doing that with windows....

Some basic linux commands for your command line interface,

cd : change directory (same as dos)

ls : list directory (dos dir)

ps ux : list all processes of your logged in user

su - : change to root

passwd : change password

bash/csh/tsh.. : change shell

vi / pico : text editors

kill : kill a pidnumber from ps ux

kill -9 : force kill a process pid number

top : a bit like windows task manager

Pierce

Link to post
Share on other sites
So, if you wanted to automate the process of getting email to your local server before you even see the main screen it should be simple enough task

Indeed. One line in your crontab.

Edited by jcl
Link to post
Share on other sites
You can do really neat tricks with linux cli (command line interface for you newbies) called shell scripting, if you have been in #besttechie im sure you would of heard that crrj's dad is publishing a light reading book (500 odd pages i think) on how to script commands.

So, if you wanted to automate the process of getting email to your local server before you even see the main screen it should be simple enough task, try doing that with windows....

Some basic linux commands for your command line interface,

cd : change directory (same as dos)

ls : list directory (dos dir)

ps ux : list all processes of your logged in user

su - : change to root

passwd : change password

bash/csh/tsh.. : change shell

vi / pico : text editors

kill : kill a pidnumber from ps ux

kill -9 : force kill a process pid number

top : a bit like windows task manager

Pierce

you for got pkill to kill a process by name

and add -HUP to p/kill it will kill and restart the process with the saem pid so other programs will not know it died..

Link to post
Share on other sites
you for got pkill to kill a process by name

Huh. Never noticed pkill on Linux before; I always use killall. Vaguely remember using it on Solaris though.

and add -HUP to p/kill it will kill and restart the process with the saem pid so other programs will not know it died..

SIGHUP terminates the target process by default. The process has to install an appropriate signal handler to get the reload/restart behavior.

Edited by jcl
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...