LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-30-2008, 10:35 AM   #1
Clara77
LQ Newbie
 
Registered: Dec 2008
Posts: 1

Rep: Reputation: 0
Question Best internet security for linux?


Hey! I'm a complete technophobe and have just got a acer aspire one for chrimbo installed with linux. What would be the best internet security for my netbook and how do i install it?? Any info would be greatly appreciated!
 
Old 12-30-2008, 10:47 AM   #2
unihiekka
Member
 
Registered: Aug 2005
Distribution: SuSE Linux / Scientific Linux / [K|X]ubuntu
Posts: 273

Rep: Reputation: 32
What exactly do you mean with "internet security"? A firewall, virus scanner?

There are not that many virusses for linux but if you want to be sure, you could try ClamAv.

A firewall comes built-in with the linux kernel (the core programme that runs the whole stuff on it and makes you use the hardware, i.e. dvd players, mouse, keyboard, monitor, etc.). But if you'd like to use a front-end, you could try Firestarter, which is easy and quite nice. If you would like to know whether your firewall is working, type

Code:
iptables --list
in the console, provided that you know how to open one. Just press Alt+F2 and type xterm. You then get a screen where you can type the line above and then close it by hitting Enter. You should then see some output and then find out whether it is running (which it probably is).

Linux comes in different flavours, what distribution is pre-installed on your laptop: ubuntu, opensuse, fedora, ...? If you could tell us that, we could help and guide you through the installation steps more easily. Compiling from the source code works for all distributions, but it might be easier through a user interface if we know what distribution you use.

Enjoy the linux experience and ask questions if you have any.
 
Old 12-30-2008, 10:49 AM   #3
Nikosis
Member
 
Registered: Dec 2005
Location: In front of the monitor
Distribution: Slackware
Posts: 322

Rep: Reputation: 59
Welcome to LQ

there is also avast antivirus

Last edited by Nikosis; 12-30-2008 at 10:59 AM.
 
Old 12-30-2008, 10:58 AM   #4
Brian1
LQ Guru
 
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that. Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700

Rep: Reputation: 65
Now idea about the distro you have but it may have some firewall tool. If iptables is installed then you can manually build a firewall script or get one of many from out on the internet from a google search. Or there are firewall tools with a gui interface to speed up the process. So many choices. None are easy to describe to install other than reading the developers install and readme docs. Then usually do a very good job of this for you.

For virus stuff then clamav. There are a few linux virus but have yet to ever see one. I would so are based on the vulneriabities of earlier days of unix/linux. Which developers have learned and fixed.

Brian
 
Old 12-30-2008, 12:35 PM   #5
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Instead of trying to provide GNU/Linux equivalents for commercial products and mcrsft-isms I think it's good to focus on "hardening" as the generic term for securing a machine and state that security requires the machine owner and users to actively chase issues and that security is a continuous effort. Every major distribution should provide you with documentation about securing your machine and as far as I know there is no all-encompassing tool for securing a machine (OK, maybe except for Bastille-linux but I don't us that and Fedora 10's new security gizmo but I haven't seen that yet) and you should get used to that. If your distribution does not provide you with documentation you could start with the UNIX Security Checklist v2.0: http://www.cert.org/tech_tips/unix_s...cklist2.0.html and for instance the Debian Security HOWTO: http://www.debian.org/doc/manuals/se...-debian-howto/. One of the most efficient tools to show the initial security posture of the machine is Tiger. That's not all but a lot of threads can be found here at LQ on the subject, so you're invited to do some searching and reading.
 
Old 12-30-2008, 02:07 PM   #6
Disillusionist
Senior Member
 
Registered: Aug 2004
Location: England
Distribution: Ubuntu
Posts: 1,039

Rep: Reputation: 98
The Acer Aspire One comes with Linpus Lite (new one to me), which appears to have a customised "user friendly" interface, in the same way as the eee-pc stock install.

I am going to install this on a virtual machine, as I'm curious/bored will let you know what firewalls etc it comes with.

Last edited by Disillusionist; 12-30-2008 at 02:10 PM. Reason: grammar
 
Old 12-31-2008, 04:16 AM   #7
Disillusionist
Senior Member
 
Registered: Aug 2004
Location: England
Distribution: Ubuntu
Posts: 1,039

Rep: Reputation: 98
Update on test install

Well, I downloaded Linpus Lite (which is based on Fedora Core 8) and installed it on a virtual machine.

I hope that the installation on the Acer Aspire One is better than the one that comes from Linpus!

The installation created a default account "linpus" which starts with no password. Additionally the root account has no password. These are things that I would recommend changing asap.

There is an application in the Settings area called Password (called "User Password" in the advanced desktop mode). This application allows you to set a password for the linpus account.

To change the root password you need to open a Terminal and type:
Code:
sudo passwd
and follow the prompts. Don't forget these passwords!

To change to the root user in a Terminal, type:
Code:
su -
If you have changed the root password, you will need to supply it.

Then run
Code:
iptables --list
Please let us know what output you get from the above command.

My installation did not have iptables, which I had to install manually!

Once installed, iptables --list (run as root) supplied:
Quote:
[root@LINPUS ~]#iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination

Chain FORWARD (policy ACCEPT)
target prot opt source destination

Chain OUTPUT (policy ACCEPT)
target prot opt source destination
[root@LINPUS ~]#
This (to me) says that there are no firewall rules set.
 
Old 12-31-2008, 04:28 AM   #8
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
What would be the best internet security for my netbook
common sence
 
Old 12-31-2008, 05:51 AM   #9
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by repo View Post
common sence
Basically you're right but could you expand that a wee bit for those that don't know what "common sense" encompasses wrt using GNU/Linux from an administrator and user point of view?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Linux And Unix Internet User And Site Security - How Much Is Too Much? LXer Syndicated Linux News 0 12-04-2008 01:10 PM
Basic security measures to take connecting a Linux server to the Internet. linux_linux Linux - Networking 2 03-15-2008 09:42 PM
Internet security/Firewall for linux joshd1982 Linux - Newbie 4 01-29-2006 06:19 PM
linux internet security software guerilla fighta Linux - Security 6 05-26-2002 06:42 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:06 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration