View Full Version : [ubuntu] newbie: Do I need Security?
kernel89
March 30th, 2009, 04:48 PM
I've been switching on and off from Ubuntu to XP. The reason? I'm a graphic designer and frankly Photoshop is my right hand, and my wacom is my left.
But that's not the question, the following is:
My previous installation of windows was infested with spyware that could not be removed with your average spy removal tool, and even though I had a registry "fixer", my windows was filled with glitches, which I why I switched back to Ubuntu.
Now I haven't installed anything related to security on my Ubuntu however, do I need to? I've heard of Linux being SUPER safe, but should I still get an anti virus, spyware removal, firewall, etc...
If so, can you point me towards what I need exactly, for I am, as I might of mentioned on my Title; a newbie.
-Thanks in advance!
damis648
March 30th, 2009, 04:53 PM
In short: No. :popcorn: You shouldn't worry about viruses and spyware, it's not much of a concern in the linux world. For more information, see this (http://ubuntuforums.org/showthread.php?t=510812) thread.
Bakon Jarser
March 30th, 2009, 05:02 PM
Also, Photoshop CS2 works fine in linux with wine. I'll guess that since it's your right arm you're probably using something newer but I thought I'd mention it.
wsonar
March 30th, 2009, 05:05 PM
you may want to at least install firestarter
bodhi.zazen
March 30th, 2009, 05:44 PM
you may want to at least install firestarter
Why would you advise that ? With a default installation of Ubuntu there are no significant open ports to firewall.
linuxuser21
March 30th, 2009, 05:46 PM
Why would you advise that ? With a default installation of Ubuntu there are no significant open ports to firewall.
I use Firestarter. I don't even need that? How about for a precaution at least?
bodhi.zazen
March 30th, 2009, 05:59 PM
Precaution against what exactly ?
I think education is best.
Take a look at this page : http://bodhizazen.net/Tutorials/iptables/
If you can tell me what it is you want to use a firewall for, I can give you my advice on if firestarter is the tool for you.
But, assuming you are running a default installation of Ubuntu ad you have not installed any server(s) and you are behind a router, then no firestarter really does not do much for you. You are perfectly save without it.
linuxuser21
March 30th, 2009, 06:03 PM
Before 8.10, there was a lot of sites that Firestarter picked up though.
bodhi.zazen
March 30th, 2009, 06:05 PM
Before 8.10, there was a lot of sites that Firestarter picked up though.
Umm ... what are you talking about ?
linuxuser21
March 30th, 2009, 06:16 PM
Whenever I went to certain sites, it would tell me IP addresses that it found.
binbash
March 30th, 2009, 06:18 PM
Everyone needs security but default installation of ubuntu is secure enough for normal uses
bodhi.zazen
March 30th, 2009, 06:40 PM
Whenever I went to certain sites, it would tell me IP addresses that it found.
I do not use firestarter so I have no idea what you are asking about here or why you feel you are in some way more secure because firestarter listed some ip addresses.
rage-against-windows
March 30th, 2009, 06:42 PM
My wife uses XP along with a crap load of anti spyware, and anti virus programs and she still has to reformat about every 4-6 months. Out of habit and fear, I use Gfuw, and avast4linux. I scan my whole system, including the wine directories about once a week, and it always comes up squeaky clean. We both surf the same sites, and do about the same things online...download music, watch videos, ect, even use the same browser Firefox, yet she gets all this spyware and adware crap and I get nothing. So I would say Ubuntus about as safe as it gets for now.
Bakon Jarser
March 30th, 2009, 07:10 PM
Whenever I went to certain sites, it would tell me IP addresses that it found.
I think you are confused about what firestarter is. It is just a GUI for interacting with IPTables which is the default firewall for Ubuntu. If you just install it and don't change any of the configurations then really you haven't done anything to impact your security.
kernel89
March 30th, 2009, 07:34 PM
I somewhat knew that I didn't need any addtional software to protect my Ubuntu, but I'm glad I got great confirmation.
Thank You!
Woody70_06
March 30th, 2009, 08:03 PM
I somewhat knew that I didn't need any addtional software to protect my Ubuntu, but I'm glad I got great confirmation.
Thank You!
If you are really intrested in a firewall, Ubuntu 8.04 and 8.10 come with UFW(Uncomplicated Firewall) it is turned off by default but very easy to set up. I currently run it
It is Terminal only though, but VERY easy
To enable the firewall type:
sudo ufw enable
To set the UFW default policy (Allow or Deny)
sudo ufw default deny
You can replace deny with allow depending on your needs
Deny= means your firewall will "deny" all packets UNLESS your computer specifically requested them from the source...think NAT
Allow= means it allows traffic though
To block or allow a specific port just type in the terminal
sudo ufw deny [insert port number]
for example, sudo ufw deny 22 would deny all traffic on port 22
sudo ufw allow [insert port number]
for example sudo ufw allow 22 would allow all traffic on port 22
more information on ufw here
https://help.ubuntu.com/8.04/serverguide/C/firewall.html
ufw should be enough for most peoples needs I would think.
by the way i just recently converted over from Windows to Ubuntu full-time, Love the community here, and love the OS good job to all involved in both the forum and the OS itself.
I look forward to much learning on this forum. '
I hope that helps you out.
Bakon Jarser
March 30th, 2009, 09:05 PM
If you are really intrested in a firewall, Ubuntu 8.04 and 8.10 come with UFW(Uncomplicated Firewall) it is turned off by default but very easy to set up. I currently run it
ufw is also not a firewall, just a frontend for IPTables. IPTables comes installed by default and is setup to deny incoming connections by default so unless you need to change that or need additional rules there is no need to use it. BTW I was very surprised to not have to add any rules in jaunty. utorrent worked without me having to set up its port with ufw.
bodhi.zazen
March 30th, 2009, 09:10 PM
ufw is also not a firewall, just a frontend for IPTables. IPTables comes installed by default and is setup to deny incoming connections by default so unless you need to change that or need additional rules there is no need to use it. BTW I was very surprised to not have to add any rules in jaunty. utorrent worked without me having to set up its port with ufw.
No, by default, UFW is disables and iptables allows all traffic.
As stated earlier, there are no open ports of significance so this is probably sufficient.
WatchingThePain
March 30th, 2009, 09:12 PM
Relax mate,
You're not using windows now (and the nightmares are over!).
I came from windows too and I know it seems strange but viruses are not really a worry on Linux.
linuxuser21
March 30th, 2009, 09:13 PM
I do not use firestarter so I have no idea what you are asking about here or why you feel you are in some way more secure because firestarter listed some ip addresses.
Wow, I apologize. I was simply stating what has happened.
bodhi.zazen
March 30th, 2009, 09:32 PM
Wow, I apologize. I was simply stating what has happened.
No need to apologize and I did not intend to come across as harsh.
I was hoping to be able to teach you something is all.
Bakon Jarser
March 30th, 2009, 09:37 PM
No, by default, UFW is disables and iptables allows all traffic.
As stated earlier, there are no open ports of significance so this is probably sufficient.
Hmmmm....I guess I've always had ufw enabled before. Good to know.
aysiu
March 30th, 2009, 10:19 PM
In answer to the original question, yes you need security, but no you don't need antivirus or antispyware software.
Read bodhi.zazen's links.
jersoncito
March 31st, 2009, 03:08 AM
http://gufw.tuxfamily.org/index.html
Its a nice Gui for ufw
bodhi.zazen
March 31st, 2009, 11:55 AM
http://gufw.tuxfamily.org/index.html
Its a nice Gui for ufw
gufw is in the Ubuntu repositories as of 8.10.
kernel89
March 31st, 2009, 06:49 PM
I have another question as well. It's, well I guess you can say also related to security.
Anyway, you know how you would do some weekly maintenance with windows: (clean the drive, defragment, run the registry cleaner tool, so on so forth...)
Do I need to know anything about ubuntu maintenance? Although apparently ext3 file systems don't need defragmenting tools nor has it registries...so what can I so to keep it in tip top shape?
Oh and thanks for the previous support guys!
bodhi.zazen
March 31st, 2009, 06:54 PM
You do not need to do anything like that with Linux.
If you like, look at these :
http://www.ubuntugeek.com/cleaning-up-all-unnecessary-junk-files-in-ubuntu.html
http://ubuntuforums.org/showthread.php?&t=140920
http://ubuntu-tutorials.blogspot.com/2007/01/cleaning-up-ubuntu-gnulinux-system.html
9.04 has a cleaning tool "janitor" under system -> administration
DarkReaper79
March 31st, 2009, 07:02 PM
Relax mate,
You're not using windows now (and the nightmares are over!).
I had to put that in my sig. Thats great. But back on topic, no need to worry. Just dont open ports that you dont need to be opened. I can go to those port scanning sites, and it cant see any.
WatchingThePain
March 31st, 2009, 07:36 PM
Thank you..it is an honour;)
kernel89
March 31st, 2009, 07:36 PM
Yeah, the only port I have oppened is the Transmission's one, for I am port forwarding.
Peasantoid
March 31st, 2009, 08:27 PM
While it isn't necessary to install any kind of security system (at least not yet), a popular argument for doing so is that it'll prevent you from unwittingly passing on malware to Windows users. I just run the occasional scan on my home directory with clamscan (part of ClamAV: sudo apt-get install clamav).
wsonar
April 9th, 2009, 06:46 PM
Why would you advise that ? With a default installation of Ubuntu there are no significant open ports to firewall.
I like to see the ip's being blocked
just today I had 3 blocked connections they could have been snmp tring to push out an update thinking it was a window machine
but I like to see the attempted connections
wsonar
April 9th, 2009, 06:48 PM
I use ufw on the server
connorh123
April 9th, 2009, 06:49 PM
As said earlier, it is actually impossible to get a virus onto Linux. So, to wrap this all up, you do not need security unless you feel you must.
wsonar
April 9th, 2009, 06:54 PM
I like to see the ip's being blocked
just today I had 3 blocked connections they could have been snmp tring to push out an update thinking it was a window machine
but I like to see the attempted connections
all though it is not needed I just like to see the attempts for curiosity sakes
lisati
April 9th, 2009, 06:57 PM
There is no substitute for caution and good sense.
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.