Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 29-04-2005, 10:48 PM   #1 (permalink)
Stabbing my shoe
 
Join Date: Jan 2005
Location: Ahmedabad
Posts: 306
Default Installing BitDefender problem..


Hi! Friends,
I tried installing BitDefender in SuSE 9.1 from the DIGIT DVD from YaST. But, whenever, I try to install the .rpm file, the following error comes up.

Now, since I have installed LINUX and know almost nothing, plz tell me what should I do to remove these errors and install BitDefender successfully.

Also, give me proper guidelines on installing program sproperly in LINUX. I still hve not got a satisfactory answer over this FORUM[/img]
__________________
>> Siddhartha <<
> http://sidroy.wordpress.com <
> Beauty lies in the eyes of the Beer Holder <
//siddhartha// is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 30-04-2005, 11:10 PM   #2 (permalink)
Apprentice
 
Join Date: Sep 2004
Location: Bangalore, India
Posts: 75
Default

hi,

The problem is that for some reason, Suse is trying to uninstall the packages
'hotplug' and 'iwidgets'. Did you get click happy and click here and there and everywhere?

Anyway, the solution is to simply check the boxes
Do not set HotPlug to taboo
Do not set Iwidgets to taboo

And now click
ok-- try again

Unfortunately Suse has chosen to give unhelpful messages in Yast. Too bad.

Installing Linux software.

Linux software usually comes in two flavours:
(a) Packaged rpm file
(b) Source code.

Installing RPM
To install an rpm file, you can login as root (or su to root from an terminal), and open a terminal. Go to the directory where you have the file and type:
rpm -ivh filename.rpm.

Installing Source code.
First unpack it by using
tar -zxvf filename.tgz
or
tar -zxvf filename.tar.gz
or
tar -jxvf filename.tar.bz2

depending upon the file extension.
Now you need to compile it. Now there is a slight complication, because the source code may come in various formats, and most of the times the software requires some other software to be installed etc. I will give instructions for just the code which uses autoconf (which is most of them)

Change to the source code directory, and type
./configure
If configure did not report any error, type
make
This will compile the software. If no errors, go to next step.
Then type su to login as root, and enter root password. Now type
make install
This will install the software.

Bye,
Pallav

Edit: Removed ./ from make and make install commands.
__________________
Let the games begin!
http://www.ironcode.com/
pallavnawani is offline  
Old 01-05-2005, 08:39 AM   #3 (permalink)
Alpha Geek
 
Join Date: Dec 2003
Posts: 780
Default

@pallav - That should be simply "make" and "make install", without the ./, right? As the make tool would not be present inside the source code directory, but probably in /usr/bin

However,"./configure" should be as it is, it is a shell script present in the directory itself.

And you will also need to have the development packages installed to install software from its source code, so make sure you have gcc, g++, make, yacc, binutils installed.

And as for the RPM file, try installing it from the command line, maybe the errors will make better sense -

Open a terminal and browse to the directory containing the RPM, and then enter

rpm -ivh xyz.rpm

Replace xyz with the filename.
__________________
Hardware - Celeron 266 MHz, 128MB RAM, Intel i740 8MB RAM
Software - Slackware Linux 10.1; Archlinux 0.7; Windows 98 SE
Humanware - GS/CS C++ L+++ w b+++ DI+ D+ e
ujjwal is offline  
Old 01-05-2005, 11:21 AM   #4 (permalink)
Apprentice
 
Join Date: Sep 2004
Location: Bangalore, India
Posts: 75
Default

Quote:
Originally Posted by ujjwal
@pallav - That should be simply "make" and "make install", without the ./, right? As the make tool would not be present inside the source code directory, but probably in /usr/bin
Yes, of course. Thanks for pointing out the error. I have edited the post and fixed the problem.

Pallav
__________________
Let the games begin!
http://www.ironcode.com/
pallavnawani is offline  
Old 01-05-2005, 04:48 PM   #5 (permalink)
Stabbing my shoe
 
Join Date: Jan 2005
Location: Ahmedabad
Posts: 306
Default

Great stuff guys.. Thanx
__________________
>> Siddhartha <<
> http://sidroy.wordpress.com <
> Beauty lies in the eyes of the Beer Holder <
//siddhartha// is offline  
Old 02-05-2005, 02:59 PM   #6 (permalink)
Stabbing my shoe
 
Join Date: Jan 2005
Location: Ahmedabad
Posts: 306
Default Regarding mplayer..

Thank You very much for your help.
Bit Defender is installed but I don't se it in the Start menu (i.e. KDE menu) So, how do I start it?
I have one more problem.. When I started installing MPlayer.. I got the following reply from YAST2:

So, please tell me what should I do?
Also, I configured my modem and also entered details like Username , Password, Dial Up number.. (I use a BSNL Dialup). BUt whenver I start the connection.. it does not connect.. The setting is set to PULSE Dialing..
__________________
>> Siddhartha <<
> http://sidroy.wordpress.com <
> Beauty lies in the eyes of the Beer Holder <
//siddhartha// is offline  
Old 13-05-2005, 03:26 PM   #7 (permalink)
Stabbing my shoe
 
Join Date: Jan 2005
Location: Ahmedabad
Posts: 306
Default

Hey Guys, Help me out.. Atleast reply..
__________________
>> Siddhartha <<
> http://sidroy.wordpress.com <
> Beauty lies in the eyes of the Beer Holder <
//siddhartha// is offline  
Old 14-05-2005, 12:21 AM   #8 (permalink)
Apprentice
 
Join Date: Sep 2004
Location: Bangalore, India
Posts: 75
Default

Hi,

(a)I don't know what bitdefender is, but try typing BitDefender on a command prompt?

(b) This error means that you need libxv.so.1 library (already installed) to install mplayer, because Mplayer may be using it. Whenever you need something but you don't know what it is, Go to
http://www.rpmfind.net/ and search for your libraries. In this case, I entered libxv and found some files. Download the rpm for your distribution. If you don't find a suse version, go to Suse's website and search there.

Afterwards, Install the libxv version first. Then install mplayer.

(c) I don't know How to fix the modem problems, since when I had a modem I also could not connect Maybe you should ask in LUG (Linux Users Group) in your area. They usually have a mailing list where you can ask such questions.

Also try to search google here:
http://www.google.com/linux

Pallav
__________________
Let the games begin!
http://www.ironcode.com/
pallavnawani is offline  
Old 14-05-2005, 08:56 AM   #9 (permalink)
Alpha Geek
 
Join Date: Dec 2003
Posts: 780
Default

BitDefender can be started by entering "bdc" in a console. Run "bdc --help" to see all options.

As for the modem, have you set up your modem properly? If it is an internal Winmodem, you may need to install drivers for it, and in the worst case, it may not be able to work at all.
__________________
Hardware - Celeron 266 MHz, 128MB RAM, Intel i740 8MB RAM
Software - Slackware Linux 10.1; Archlinux 0.7; Windows 98 SE
Humanware - GS/CS C++ L+++ w b+++ DI+ D+ e
ujjwal is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by Sujeet
- by soumya
- by clmlbx
- by Charan

Advertisement




All times are GMT +5.5. The time now is 01:26 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2