Ubuntu Servers :: Libnetpacket-perl Package For 9.10 Karmic - Functionality Present In Another 9.10 Package With A Different Name?
Jan 8, 2010
I need to install the following dependencies for synspam on Ubuntu 9.10 karmic server:
Code:
sudo aptitude install nfqueue-bindings-perl libsys-syslog-perl libappconfig-perl libnetpacket-perl libnetaddr-ip-perl
dpkg -i synspam_version_all.deb
Of these, only libnetpacket-perl is not packaged for Ubuntu 9.10 karmic.
Is this functionality present in another 9.10 package with a different name? 10.04 Lucid does have the package: [URL]
View 1 Replies
ADVERTISEMENT
Oct 15, 2010
ltib is showing following package not present: rpm-build Software not installed, even though rpmbbuild is already installed. I am trying this on Ubuntu.
View 1 Replies
View Related
Dec 16, 2010
I've used yum (and rpm) for some time now, and have finally run into one of those dependency problem. I am trying to install git (among other programs), and I have reach an empass. Nothing I've tried has worked, and I just know there is a simple solution to this that I just don't know. It all started by skipping a dependency in the past (don't remember the package). I figured there would be something to clean that up, so I just continued.
Here is my output:
Code: # yum install git
Loaded plugins: fastestmirror, langpacks, presto, refresh-packagekit, security
Adding en_US to language list
Loading mirror speeds from cached hostfile
Excluding mirror: ftp-stud.fht-esslingen.de
Excluding mirror: wftp.tu-chemnitz.de
* livna: rpm.livna.org
* rpmfusion-free: mirror.hiwaay.net .....
--> Processing Dependency: perl(Error) for package: perl-Git-1.7.3.3-1.fc14.noarch
--> Finished Dependency Resolution
Error: Package: perl-Git-1.7.3.3-1.fc14.noarch (updates)
Requires: perl(Error)
Error: Package: git-1.7.3.3-1.fc14.i686 (updates)
Requires: perl(Error)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
If I need to, I could go and download the RPM package and install it that way, but I'd like to get YUM back working properly.
View 7 Replies
View Related
Aug 12, 2010
am creating a perl third party package and using in my other program. If i install the package with standard 4 commands ie.,
1)perl Makefile.PL
2)make
3)make test
4)make install
package has not installed properly. If i try to copy the package to the threads generated by perl -V command, then am able to get install the package, but i want to install the package by the standard 4 commands. I am using 36 bits OS , perl version is v5.8.5 and OS am using is "Red Hat Enterprise Linux AS release 4 (Nahant Update 6)".
View 3 Replies
View Related
May 26, 2010
Where I can find libgd perl package for slackware?
View 1 Replies
View Related
Feb 23, 2010
I know it exists for Jaunty, but not Karmic. My question is just simply, how can I download this package, and can I just use Synaptic to install it without any problems? Any detailed documentation about installing "obsolete" packages and their dependencies? Perhaps is there some way to get my system to emulate Jaunty, I can install the package, then go back to Karmic?
View 5 Replies
View Related
May 4, 2010
I've updated from 9.10 to 10.04 but unfortunately the PHP provided with 10.04 is not yet supported by zend optimizer. As far as I understand I need to somehow replace the PHP 5.3 package provided under 10.04 with an older PHP 5.2 package provided under 9.10. However I am not sure whether this is the right way to downgrade PHP and if yes, I don't know how to replace the 10.04 package with 9.10 package.
View 1 Replies
View Related
Mar 3, 2010
I've been scratching my head on this one for a while.My level of knowledge of Linux isn't great. I know enough to be dangerous. I'm trying to get Webmin installed to give me an easier web front to Linux. I run the command to get the prereq's.
Quote:
sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
Reading package lists... Done
[code]....
So I can see that it can't find libnet-ssleay-perl I bit of searching around leads me to the sources.list file which tells apt-get where to get the packages I think. This is as follows.
Quote:
#
# deb cdrom:[Ubuntu-Server 8.04 _Hardy Heron_ - Release amd64 (20080423.2)]/ hardy main restricted
#deb cdrom:[Ubuntu-Server 8.04 _Hardy Heron_ - Release amd64 (20080423.2)]/ hardy main restricted
[code]....
View 4 Replies
View Related
Apr 19, 2010
I have been playing around with quickly, and installed the package for my application. The install failed. Worse, none of my package managers can install anything anymore - I get the error
Code:
E: The package swift needs to be reinstalled, but I can't find an archive for it. This seems to be the same problem as here [URL] But I cannot fix it in the same way as there is no online package for me to reinstall. When I try to install the .deb I get a message that it is either corrupted or the permissions are wrong.
View 4 Replies
View Related
Jan 22, 2010
I have a boring, brown, GDM login screen. I'm assuming this is what shows when there are no GDM themes. I don't see any options in Administration -> Login Window, so what do I need to do to get the standard, Ubuntu GDM theme? What package (asides from vanilla GDM) is required for this on Karmic?
View 8 Replies
View Related
Aug 25, 2010
I'm trying to install Dell Openmanage, which requires sblim-sfcb.Normally this wouldn't be a problem but it requires LWP::UserAgent to be installed.However there are no RPMs for LWP::UserAgent. There are RPMs for perl-libwww-perl-5.805-1.1.1.noarch.rpm, which people say should work.However yum doesn't see anything with libwww as an option so that won't work either.Running CentOS 5.5
Note: I do have LWP::UserAgent installed via cpan, however the RPM won't compile without the actual LWP::UserAgent RPM installed.
View 9 Replies
View Related
Mar 18, 2011
I am a C++ programmer and never used Perl. add a functionality to a script, in Perl language. Originally, the script takes 1 file input and I run it in this way: ./script.pl file1 It is designed to return specific words from that file, example:
user
admin
printer-1
user-2
server
The idea is that I need to be able to provide the script with a second input file that contains only few words, each on a new line. These words might have a "dash". Example:
printer-2
server
user-2
I will be running the script as: ./script.pl file1 file2 In return, the script should check if every word in file1 does exist in file2. If it does exist, then the script displays it. In the example I provided above, the script should only return:
server
user-2
Here is the script I have. What's in black is the original working Perl script and what's in red is what I would like to add in Perl Language:
!/usr/bin/env perl
my ($table);
for (every value in file2)
{
[code]....
View 7 Replies
View Related
Feb 3, 2011
I am following this guide to installing eclipse via terminal command-line on Linux. However, this seems to be happening lately with all the packages I try to install..I checked the Synaptic Package Manager and reloaded and rebooted the computer, but to no avail.
View 5 Replies
View Related
Aug 3, 2011
I have a problem when installing this package through synaptic package manager. this is :
libpng12-dev
the error is:
W: Failed to fetch http://security.ubuntu.com/ubuntu/po...tu2.1_i386.deb
404 Not Found [IP: 91.189.92.167 80]
my distribution is ubuntu 10.4.
View 1 Replies
View Related
Feb 24, 2010
Is there a way to determine which libraries a package needs before installing the package itself?
View 2 Replies
View Related
Jun 20, 2010
I just finished installing a dual boot XP/Ubuntu 10.04 LTS for desktop about half an hour ago, and it's my first experience with a Linux OS. Now that my *complete idiot noob* flag is flying, I have an error I think I need to report:An error occurs with the Package Manager, I get this message when I try to run it, and when Ubuntu boots:
E: Encountered a Package with no Package: header
E: Problem with MergeList /var/lib/apt/lists/
us.archive.ubuntu.com_ubuntu_dists_lucid_restricte d_binary-i386_Packages
E: The package lists or status file could not be parsed or opened.
This usually means that your installed packages have unmet dependencies I tried to download and install Chrome, and it came up with a similar error.
Is my install corrupt/incomplete or something? My setup is a P4 2.4Ghz, 512Mb RAM, onboard graphics, wireless internet and the HDD is 40GB, split into 2 partitions, and my Ubuntu Partition is 10 GB. I'm running Ubuntu 10.04 LTS distribution, and the other OS is Windows XP Professional SP3.I installed Ubuntu by using the Wubi installer.
View 1 Replies
View Related
Oct 2, 2010
I want to install CmapTools in my desktop, which runs v.10.04. I have downloaded the .bin file from their site.Is there a way to install it using Synaptic Package Manager?
View 2 Replies
View Related
Feb 14, 2011
Still I am asked to package a war file as an RPM package. That is an unusual RPM packaging(To me). If you guys could guide me I have a war file inside a folder, that folder is inside a tar file as a SOURCE for RPM package. The structure is like below.
[Code]...
I simply want that the war file from sources is transferred to the web app of my tomcat server through RPM. I try to package it as an RPM, but its always giving me errors in %build stage. When I try to remove %build from stage from the spec file, then it says command missing.
My system details are:
SUSE Linux Enterprise Server 10 (x86_64)
VERSION = 10
PATCHLEVEL = 1
LSB_VERSION="core-2.0-noarch:core-3.0-noarch:core-2.0-x86_64:core-3.0-x86_64"
View 5 Replies
View Related
Nov 4, 2010
when I try to install a package, I've the message The following packages have unmet dependencies:package-xy: Depends:lib-something (>= version_number) which is a virtual package.
View 14 Replies
View Related
Apr 5, 2011
Is there anyway to show package size that comes up in the search so you don't have to apt-get install package individually and wait for the installation initiation and then reject to install after it gives u the [y/N] confirmation thing?
View 2 Replies
View Related
Sep 3, 2010
Am I the only one who gets this on gnome everytime I start up package manager or package finder in 11.3?
System management is locked by the application with pid 6890 (/usr/sbin/packagekitd)
I literally have to kill -9 pid everytime I run it. What is going on here?
View 3 Replies
View Related
May 26, 2010
I want to install kernel package by this command sudo apt-get install kernel-packagebut it gives me the error :Package kernel-package has no installation candidate
View 1 Replies
View Related
Jul 28, 2011
I originally attempted to compile and install xmonad package by package, and the end result was this:
Code:
$ xmonad /home/adx/.xmonad/xmonad-x86_64-linux: executeFile: does not exist (No such file or directory)
X Error of failed request: BadAccess (attempt to access private resource denied) Major opcode of failed request: 2 (X_ChangeWindowAttributes) Serial number of failed request: 7 Current serial number in output stream: 8 I figured I left out a flag on the make file or something, so I tried the slackbuild packages next; however, the same error was present at launch.
View 1 Replies
View Related
Feb 3, 2011
I was building yesterday the boost-1.45.0 RPM package for CentOS 5.5.
View 3 Replies
View Related
Jun 11, 2010
I want to get the package "insight", which is a gui for the gnu debugger, but it does not appear in package manager, and there are dependencies and dependencies of dependencies, etc., and I don't want to have to download 15 packages.First of all, why doesn't it show up in package manager? I updated or reloaded or whatever you call it when it updates all data from the repositories.
View 4 Replies
View Related
Apr 21, 2011
Just tried to install java JER, this was the outcome; user@user:~$ sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fontsReading package lists... Done Building dependency tree Reading state information... Done Package sun-java6-jre is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
Package sun-java6-fonts is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source Package sun-java6-plugin is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'sun-java6-jre' has no installation candidate
E: Package 'sun-java6-plugin' has no installation candidate
E: Package 'sun-java6-fonts' has no installation candidate
View 1 Replies
View Related
Mar 15, 2009
Sometimes i have on some magazines or Internet Zip packages that are the answer of what i am looking for.
Wich tool and how can i do it? c Well, i am in position to say that i had downloaded from Internet or located the package in the Cd or DVD that comes with the magazine.
But now comes the big question. How can i put this package ( install) on my distro ???
Do i have to be a normal user or should it be root or su (superuser) ?
The packages that come with the distro is easy, because i select them and everything is done
As i told before, maybe this is a silly question, but i simple don't know how to install them and i need some of them to leave MS for good.
View 13 Replies
View Related
Feb 6, 2010
Fedora 12 64bit. Is there an easy and reliable way to install *.tar.gz package after extraction? Instead of going through ./configure etc.
View 6 Replies
View Related
Nov 22, 2010
I'm building a certain RPM package that must require an old version of that same package in order to be installed/upgraded. Is this possible?
For example:
For a package foo v5, somewhere in the spec file:
"Requires: foo >= 4"
I'm declaring this on the Requires tag of the spec file, but when I try to install or upgrade the package (without having the previous required version installed) I get no dependency error! As for other dependencies it all works fine. If, instead, I create a package named "bar" that "Requires: foo >= 4", when installing I do get the expected dependency error. I'm thinking it's not possible to require an old version of the same package.
View 2 Replies
View Related
Mar 19, 2010
What's the best way to tell if a package is already installed? I can't seem to find a way to do it with apt-get.
View 5 Replies
View Related