Wilders Security Forums  

Go Back   Wilders Security Forums > Software, Hardware and General Services > other software & services
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread
  #1  
Old June 4th, 2007, 05:40 AM
zapjb's Avatar
zapjb zapjb is offline
Very Frequent Poster
 
Join Date: Nov 2005
Location: USA - Back in a real State in time for a real President.
Posts: 1,961
Default How do you install an app in Linux?

I have PCLinuxOS-2007. Comes with 2 browsers. But not my beloved Opera. I dl'd a linux Opera & am clueless how to install. Lft clk, rt clk, extract here there everywhere.

I also want to install free BitDefender for Linux.

So how do I install Opera? And BD?

Thanks
__________________
PCLinuxOS - Radically simple, it just works. That's why PCLOS is "The Distro Hopper Stopper!"
http://www.pclinuxos.com/

If you don't use Linux. You're going to HELL!!!
  #2  
Old June 4th, 2007, 06:02 AM
Tony's Avatar
Tony Tony is offline
Frequent Poster
 
Join Date: Feb 2003
Location: Cumbria, England
Posts: 681
Default Re: How do you install an app in Linux?

You have to open Synaptic package manager, reload so the latest programs load into synaptic via the repositories, search for Opera, check the box to install, click apply and then sit back and wait whilst it downloads then installs.

This is the recommended way to install programs, if the program you need is not available, then requst the program on pclinux forum and texstar will compile the program and add it to the repositories.
__________________
Twister
ShadowDefender
SuperAntiSpyware Pro
Defensewall Personal Firewall
The legend that is FirstDefense-ISR

  #3  
Old June 4th, 2007, 07:53 AM
Mrkvonic Mrkvonic is offline
Linux Systems Expert
 
Join Date: May 2005
Posts: 7,433
Default Re: How do you install an app in Linux?

Hello,

Many many answers:

http://www.dedoimedo.com/computers/linux_commands.html

In general:

You can search via package manager, find what you need and download.

You can use the Terminal, then run sudo apt-get install opera.

You can manually download the package from Opera site. You can download self-extracting archive or tar.

Self-extracting, just run and provide password.

Tar, extract then compile.

tar xzf package.tar.gz

or

tar -xjf package.tar.bz2

Compile:

cd folder
sudo ./configure
sudo make
sudo make install

If you got questions, ask.

You do not need BD.

Mrk
__________________
http://www.dedoimedo.com

All your base are belong to us

Linux Systems Expert / Systems Programmer, Linux System Administrator, LPIC-1, LPIC-2 (WIP), GSEC, CCHD, CCHA
  #4  
Old June 4th, 2007, 08:32 AM
Meltdown's Avatar
Meltdown Meltdown is offline
Frequent Poster
 
Join Date: Sep 2004
Location: Babylon
Posts: 299
Default Re: How do you install an app in Linux?

There's a PCLinuxOS user guide available here, which looks good for new users. The downside is that it's for an earlier release of the distro, but most of the basics will still apply.
  #5  
Old June 4th, 2007, 10:34 AM
iceni60 iceni60 is offline
( ^o^)
 
Join Date: Jun 2004
Posts: 5,116
Default Re: How do you install an app in Linux?

i'd do this (but, i've never used that distro) download the static rpm from opera to your desktop. then do these commands -

cd Desktop
su
rpm –ivh opera*.rpm

you could try clicking it first to see if it will install. ubuntu lets you double-click opera to install it.
__________________
musical savant
-http://www.youtube.com/watch?v=liprsDr8GrE-
-http://www.youtube.com/watch?v=qpIigV7-kJk-
  #6  
Old June 4th, 2007, 12:00 PM
FastGame's Avatar
FastGame FastGame is offline
Frequent Poster
 
Join Date: Jan 2005
Location: Blasters worm farm
Posts: 677
Default Re: How do you install an app in Linux?

PCLOS has Opera in Synaptic package manager, don't install outside RPM's unless you're willing to break your OS

The easy way to install outside RPM is to install Kpackage from Synaptic, right click on the RPM and choose Open with Kpackage, but once again the warning about installing non-repo RPM's still applies.

Bitdefender might be hard to install, for someone new to Linux, it depends on "libstdc++-libc6.2-2.so.3 " which PCLOS doesn't have......

zapjb when it comes to security you need to get out of Windows mode, take a deep breath and relax, spend time poking around the OS and learn where things are-what they do.
  #7  
Old June 4th, 2007, 06:55 PM
Alphalutra1's Avatar
Alphalutra1 Alphalutra1 is offline
Very Frequent Poster
 
Join Date: Dec 2005
Location: 127.0.0.0/255.0.0.0
Posts: 1,160
Default Re: How do you install an app in Linux?

Since everyone else already told you how to do it...

With linux comes choices. Many of the distributions use their own packages managers. The most common ones are apt (for debian and those distro's based off of it such as ubuntu) and yum (for those from redhat, fedora, and maybe suse (sorry I haven't really used any of those, so I am not sure)). Most of the package managers will download the package and all of the dependencies that come with it, while also offering a one-line command to update your entire system (pacman -Syu for those archers ) .

On top of these command line utilities, there are various graphical programs that serve as front-ends, such as synaptic, that allow you to graphically do all the things without having to memorize command line arguments.

Besides the package management type things, there is always the option to compile from source and install. However, it can get tricky with dependencies missing, difficult configure options, etc. But, it is always rewarding

Overall, I find the whole linux system to easily defeat windows (I love the central management that allows things to easily be downloaded, maybe compiled, then installed, in addition to the one liner that updates the entire system and all applications).

Enjoy your system,

Alphalutra1
__________________
Proud user of Gentoo, OpenBSD, dwm, (n)vi, heirloom-mailx, and pf
  #8  
Old June 5th, 2007, 01:46 AM
zapjb's Avatar
zapjb zapjb is offline
Very Frequent Poster
 
Join Date: Nov 2005
Location: USA - Back in a real State in time for a real President.
Posts: 1,961
Default Re: How do you install an app in Linux?

OK I installed Opera via the Synapetic package manager.

And I guess I'll request BD over at the PCLinuxOS forum.

Thanks.
__________________
PCLinuxOS - Radically simple, it just works. That's why PCLOS is "The Distro Hopper Stopper!"
http://www.pclinuxos.com/

If you don't use Linux. You're going to HELL!!!
  #9  
Old June 5th, 2007, 02:19 AM
Mrkvonic Mrkvonic is offline
Linux Systems Expert
 
Join Date: May 2005
Posts: 7,433
Default Re: How do you install an app in Linux?

Hello,
Replace Opera with any-program-you-like. The idea is the same.
The procedure that I wrote, download tarball and compile works for everything.
But again, you do not need BD or any AV in Linux, trust me.
Mrk
__________________
http://www.dedoimedo.com

All your base are belong to us

Linux Systems Expert / Systems Programmer, Linux System Administrator, LPIC-1, LPIC-2 (WIP), GSEC, CCHD, CCHA
  #10  
Old June 5th, 2007, 03:44 AM
zapjb's Avatar
zapjb zapjb is offline
Very Frequent Poster
 
Join Date: Nov 2005
Location: USA - Back in a real State in time for a real President.
Posts: 1,961
Default Re: How do you install an app in Linux?

How do I scan my Linux partition then? All the online scanners I know don't work in Linux. I tried like 6-8 of them.

I just want to make sure I'm malware free. I was running online without a stealthed firewall for about a day.

And sorry Mrkvonic I don't understand your instructions.



Btw my PCLinuxOS forum registration has to be "approved" by an ADMIN. So I have to wait a day or so to even view their forum.

Thanks all.
__________________
PCLinuxOS - Radically simple, it just works. That's why PCLOS is "The Distro Hopper Stopper!"
http://www.pclinuxos.com/

If you don't use Linux. You're going to HELL!!!
  #11  
Old June 5th, 2007, 04:19 AM
Mrkvonic Mrkvonic is offline
Linux Systems Expert
 
Join Date: May 2005
Posts: 7,433
Default Re: How do you install an app in Linux?

Hello,

There is no malware in Linux. Relax.

Did you read my article?? Try it, really.

Second, how to install anything:

1. Go to the site where you expect to find your product.
2. Download the source (usually packed as archive with extension tar.gz or tar.bz2).
3. Extract this archive (as I explained above).
4. Compile the source (as I explained above).

And that's it!!

Mrk
__________________
http://www.dedoimedo.com

All your base are belong to us

Linux Systems Expert / Systems Programmer, Linux System Administrator, LPIC-1, LPIC-2 (WIP), GSEC, CCHD, CCHA
  #12  
Old June 5th, 2007, 04:54 AM
Meltdown's Avatar
Meltdown Meltdown is offline
Frequent Poster
 
Join Date: Sep 2004
Location: Babylon
Posts: 299
Default Re: How do you install an app in Linux?

The PCLinuxOS forum has some restrictions about new members requesting packages - AFAIK you can only do that after a certain number of days, or a certain number of posts. They're strict about it.

You really don't need an AV, but if you want one I think you'll find F-Prot in Synaptic, maybe Avast too. It's been a while since I used PCLOS but IIRC you can search Synaptic for the type of software you're looking for, as well as by name.
  #13  
Old June 5th, 2007, 05:11 AM
zapjb's Avatar
zapjb zapjb is offline
Very Frequent Poster
 
Join Date: Nov 2005
Location: USA - Back in a real State in time for a real President.
Posts: 1,961
Default Re: How do you install an app in Linux?

Can't find fprot (f-prot) or avast in synaptic.

I just want to be able to scan my OS. Specially after not using/knowing about Firestarter at 1st. So I was naked on the net.
__________________
PCLinuxOS - Radically simple, it just works. That's why PCLOS is "The Distro Hopper Stopper!"
http://www.pclinuxos.com/

If you don't use Linux. You're going to HELL!!!
  #14  
Old June 5th, 2007, 06:07 AM
Mrkvonic Mrkvonic is offline
Linux Systems Expert
 
Join Date: May 2005
Posts: 7,433
Default Re: How do you install an app in Linux?

Hello,
I have Linuxes that run without firewall. It's NOT Windows. Nothing happened.
Enjoy the hassle free world.
Mrk
__________________
http://www.dedoimedo.com

All your base are belong to us

Linux Systems Expert / Systems Programmer, Linux System Administrator, LPIC-1, LPIC-2 (WIP), GSEC, CCHD, CCHA
  #15  
Old June 5th, 2007, 10:14 AM
FastGame's Avatar
FastGame FastGame is offline
Frequent Poster
 
Join Date: Jan 2005
Location: Blasters worm farm
Posts: 677
Default Re: How do you install an app in Linux?

Quote:
Originally Posted by zapjb
Can't find fprot (f-prot) or avast in synaptic.

I just want to be able to scan my OS. Specially after not using/knowing about Firestarter at 1st. So I was naked on the net.
You weren't naked, the Linux firewall iptables was running All ports were closed except 111 (Sun RPC) and 631 (Internet Printing). Firestarter is a GUI to adjust iptables so you don't need to edit config. files manually .
  #16  
Old June 5th, 2007, 06:08 PM
zapjb's Avatar
zapjb zapjb is offline
Very Frequent Poster
 
Join Date: Nov 2005
Location: USA - Back in a real State in time for a real President.
Posts: 1,961
Default Re: How do you install an app in Linux?

Quote:
Originally Posted by FastGame
You weren't naked, the Linux firewall iptables was running All ports were closed except 111 (Sun RPC) and 631 (Internet Printing). Firestarter is a GUI to adjust iptables so you don't need to edit config. files manually .
Thanks.

But I still want to be able to scan my OS for malware.
__________________
PCLinuxOS - Radically simple, it just works. That's why PCLOS is "The Distro Hopper Stopper!"
http://www.pclinuxos.com/

If you don't use Linux. You're going to HELL!!!
  #17  
Old June 5th, 2007, 06:41 PM
coolbluewater's Avatar
coolbluewater coolbluewater is offline
Frequent Poster
 
Join Date: Feb 2007
Location: next door to Redmond
Posts: 268
Default Re: How do you install an app in Linux?

If you're concerned that you may pass malware to Windows users, then try looking in Synaptic for ClamAV or KlamAV.
__________________
blackhats who help distrowatch OpenBSD
[
 

Wilders Security Forums > Software, Hardware and General Services > other software & services « Previous Thread | Next Thread »

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -4. The time now is 07:47 PM.


Powered by vBulletin® Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Copyright ©2002 - 2013, Wilders Security Forums