Fedora :: Where To Ask For Packaging Rpm's
Jun 17, 2011
I've been using Ubuntu so far. There is a system of launchpad repositories where there are lots of programs available that are not in official repo. I've already added rpm fusion but still I miss many programs that I had on Ubuntu. I found this page and I wonder where I can ask for making rpm's. I need several programs:
No package acidrip available.
No package bombono-dvd available.
No package cdcat available.
[code]....
I now that I can compile from source code but I'm new to linux and it's too difficult for me. I haven't even found program alien on Fedora that allows to install packages from other distributions.
View 8 Replies
ADVERTISEMENT
Mar 16, 2010
Recently I started getting pop-up saying:
Code:
Failed to initialize
Failed to initialize packaging backend
This may occur if other packaging tools are being used simultaneously.
under more details i get:
Code:
There are unfinished transactions remaining. Please run yum-complete-transaction as root. I get to terminal, and as a root I try yum-complete-transaction, but it just says there are no unfinished transactions left. I tried to update thru yum, but this is what I get:
Code:
# yum update
Loaded plugins: fastestmirror, presto, refresh-packagekit
Determining fastest mirrors .....
After lots of googling, I tried:
"yum clean all",
"yum-comlete-transaction",
"rm -f /var/lib/rpm/__db*" + "rpm -vv --rebuilddb" + "yum clean all",
Everything else is working well, and I am able to update with "--skip-broken", but I keep getting this pop-ups. I use fedora 12.
View 5 Replies
View Related
Feb 26, 2010
I have error in KPackageKit when i try to install anything or check for updates:
Failed to initialize packaging backend. This may occur if other packaging tools are being used simultaneously.
Details: There are unfinished transactions remaining. Please run yum-complete-transaction as root.
I don't know anything about other packaging tools - I think I don't using any. Yum works fine in terminal. Reinstall PackageKit and KPackageKit files doesn't helped me. I also try to rebuilt rpm db:
rm -f /var/lib/rpm/__db*
rpm -vv --rebuilddb
yum clean all
I'm using Fedora 12 x86_64.
View 12 Replies
View Related
Mar 15, 2010
From the GUI, software update gives the error "Failed to Initialize - Failed to initialize the packaging backend. This may occur if other packaging tools are being used simultaneously." In the more details, "There are unfinished transactions remaining.
I run a terminal, switch to root and do as it tells me. It returns saying that there are no unfinished transactions. I've run it several times with the same result. Then I run "yum clean all" and "yum upgrade." The upgrade processes runs and reports "there are unfinished transactions..." However, the upgrade process still completes. Basically it is now a severe annoyance, but the system does seem to upgrade. I just cannot figure out why there are somehow unfinished transactions that I cannot get rid of. I tried reinitializing the rpm database - no luck. How can I somehow reset yum?
View 2 Replies
View Related
Jul 19, 2010
I recently installed Fedora 13 on my system, and I'm still in the process of setting it up as I like. As the FCEU and snes9x versions on rpmfusion are old (fceultra 0.98, snes without GUI), I wanted to compile my own RPMs Everything went OK, but I found myself having to build the packages several times because of missing LDFLAGS. I got several errors like "symbol X missing, it was found on Y so you may want to add Y to the linker flags", which I fixed by modifying & exporting LDFLAGS.
So, 2 questions:
1.- why are the LDFLAGS missing? How can I avoid having to set them up manually?
2.- There should be a way to avoid re-compiling the source and only run the rpm packaging stuff with the already built things (some option like 'don't build, only package'). how can I do that?
BTW, I can share my (pretty much hacked) .spec files if you are interested
View 8 Replies
View Related
Apr 4, 2011
I have an upstream source tarball which, by coincidence, already contains a directory named "debian", but which has nothing to do with the "debian" directory for packaging. Assume also that renaming this directory would be difficult, for example because many other parts of the code would need to be modified. On an rpm based system, this poses no problem to the packager, since the rpm build process is driven by an external spec file and never has to modify the original source. What would be the best way to package this on a debian system? Is it absolutely necessary to rename the original "debian" directory? Or can I make the dpkg build tools operate out of a different directory?
View 5 Replies
View Related
Jan 3, 2009
I'm trying to package a Qt application using debuild. However, I can't figure out how to make qmake generate a correct Makefile.
The main problem is that the binary doesn't get put into ./usr/bin inside the .deb.
So dh_shlibdeps always fails and I get the following:
Code: Select alldpkg-gencontrol: warning: unknown substitution variable ${shlibs:Depends}
dpkg-gencontrol: warning: unknown substitution variable ${misc:Depends}
The resulting debian package then has an empty "depends" field and no binary.
I used the Qt Hello World example application to start.
I changed debian/rules (generated by dh_make) so that it runs qmake as follows:
Code: Select all#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
[code]....
View 6 Replies
View Related
Apr 16, 2010
I have nearly completed a project.My team developed using C,shell scripts and qt.I would like to know how to package it as a .deb file??Also during installation,i want it to check for the existence of few packages in the system.If they are not there,i want it to download them using apt.
View 3 Replies
View Related
Jan 20, 2010
I have a C++ application consisting of several source/header files. As part of the release management procedure, I use a shell script to package all necessary sources/headers in a tar file for a successful compilation on end-user site.However, for example, each time a new directory is created within application's source tree, I need to edit the shell script to implement necessary changes, which is error-prone.What is the best practice to package the source/header files of an application into a tar file ? Is there any tool that I can use for packaging purposes rather than writing my own shell scripts ? For example, how is Linux kernel itself packaged into a tar file ?
View 2 Replies
View Related
Oct 22, 2010
I have a SUSE Linux traffic shaper that can manage bandwidth usage per user and etc.for use it, we must configure LDAP server &client ,edit sudoerr's file, create mysql database with some tables� . Its interface is base on cgi&perl language . How do I package this project?
i don't know what part of proj is necessary for packaging (what is source code for creating a RPM package?)
View 1 Replies
View Related
Oct 27, 2015
How can I use the preinst script to check to see if the version that is installed older than the version trying to be installed and if so, take an action?
For example: if the software installed is at a version less than 6.14 then take an action, else return 0?
preinst:
Code: Select allset -e
case "$1" in
install|upgrade)
# if version installed <6.14 then do something else return 0
;;
[Code] ....
View 0 Replies
View Related
Jan 15, 2010
" p, li { white-space: pre-wrap; }Cannot get the exclusive lock on the packaging backend. Please close any other legacy packaging tools that may be open." I cannot update anything, and I haven't opened another package downloader. The only one open is KpackageKit. Please help, is this a big or have a I got a virus or something? I don't know what information is needed so if I need to expand tell me what I need to retrieve and ill post it.I'm not good with Kubuntu problems.
View 2 Replies
View Related
Jul 14, 2011
I've got a CentOS 5.2 installation with broken package system. When I try to do "yum update" I get lots of "Missing Dependency" errors. How could I restore it to a usable state?
View 6 Replies
View Related
Apr 12, 2014
I have written a shared library and successfully used debhelper 9 to create a Debian package from source using a Makefile generated by cmake. I then went about writing a python wrapper to that library and wish to package that wrapper in with the library so I can have a single distributable rather than 2 separate ones.
All of my attempts so far have me placing my python source and a setup.py file in the same directory as the makefile at the time where I call debuild.
From here I have tried a couple different configurations to my debian/rules file as seen below:
Attempt 1:
# -*- makefile -*-
%:
dh $@ --with-python2 --buildsystem=python_distutils
This try seemed to package up the python stuff nicely but proceeded to ignore my makefile for the shared library and therefore ultimately failed.
Attempt 2:
# -*- makefile -*-
%:
dh $@ --with-python2
This try ran make, but completely ignored the python stuff. From some research I have gathered that the --buildsystem flag tells debuild to ignore any makefiles in the directory, which obviously causes a problem in my case.
Another attempt was to modify the build dependency to first run make and then call the python build process that file looked like this
Attempt 3:
# -*- makefile -*-
build:
dh $@
dh $@ --with-python2 --buildsystem=python_distutils
%:
dh $@ --with-python2 --buildsystem=python_distutils
This appears to somewhat work as both processes do build, but a few of the python files are still not getting installed.
Is this the way I should be going about doing this? I've noticed that most python wrappers tend to package themselves individually and then make that package dependent on the library it is attempting to wrap.
View 0 Replies
View Related
Feb 5, 2010
Attempting to upgrade Firefox to 3.6. On opening synaptic package manager I get :-
An error occurred
E: dpg was interrupted, you must run 'dpkg--configure-a' to correct the problem.
E:_cache->open()failed,please report.
On entering 'dpkg--configure-a' on terminal I get 'command not found.
View 5 Replies
View Related
Sep 30, 2009
I just wanted to upgrade to fedora 11 from the current version 5 with the of a live cd.I dont want to loose the previous configuration files. upgrade everything except the / directory. How do you do that? I also have a retarded WINXP partition on the same drive which I dont wanna loose.
View 9 Replies
View Related
Feb 26, 2009
Is it possible to import an xorg.conf file from Debian to Fedora and have it work? The reason for this is that I have an older monitor that only offers 800x600 as the maximum resolution.
View 2 Replies
View Related
Mar 7, 2009
install of Fedora, always used Debian or Ubuntu before now, and am looking for versions of localepurge, deborphan and debfoster - do they exist in the Fedora Software Repository?
View 10 Replies
View Related
Apr 2, 2010
I have a Samsung N130 with a Realtek 8192 wifi card (possibly 8192e, I'm not sure) and I am trying to run Fedora 12 on it. I used to run Ubuntu until trying their latest beta and realizing it's not very good, so I looked for something else. Ubuntu was at least easy to get the wifi working with just a few quick commands that were written out, word for word, in order, on the Ubuntu forums. I tried openSUSE on here and it didn't have wifi working out of the box either but people on their forums refused to give me actual instructions and just kept bumping me from thread to thread with people giving vague advice or else just telling me I was looking in the wrong place. I'm hoping that someone can give me clear and detailed instructions on how to get this wifi card working. Keep in mind that I am coming from Ubuntu and so I'm not super comfortable in CLI, if I need to do some CL stuff I will need clear and detailed instructions on how to do that.
View 4 Replies
View Related
Aug 21, 2010
I am newbie to linux, I am dealing with Fedora core 13. I have already succeedded in building an ad hoc network and a WLAN network. My next step is to get some networking statistics such delay, throughput, etc. So, I need traffic to flow through the network for both multimedia traffic and bulk data traffic. How to send files between nodes on the network (I found commands ftp, rcp but do not know whether they are the correct choice for this). ID their any application to perform this?
Also, I want to perform some video streaming between two nodes to study the behavior of real time data transfer. Is thier any application to perform this?
View 4 Replies
View Related
Sep 13, 2010
My laptop is currently running on Windows 7 Ultimate. I have a 320 GB HDD, which I have partitioned as follows. C: Drive as Windows 40 GB capacity and successively partitioned the rest of the drives for 50 GB capacity and left an unallocated space of 67 GB for fedora 13 x64 installation. The problem that I am facing is, that I am unable to install fedora on this unallocated space..even though I am checking the option for "Creating custom Layout". When I check the option for "Creating Custom Layout" Ive been shown with the only option to install fedora on the unused space on the HDD which is around 265 GB. I am also attaching a screen shot of my disk management. how I can install Fedora on this unallocated space of 67 GB?
View 12 Replies
View Related
Dec 23, 2010
my problem is inkscape-0.48.0-1.fc14.3.src.rpm in fedora 14 64 bittry rebuild --source inkscape-0.48.0-1.fc14.3.src.rpm and this my error:I think something wrong pkgconfig .
attributes.cpp:20:32: fatal error: glib.h: No such file or directory
compilation terminated.
arc-context.cpp:21:28: fatal error: gdk/gdkkeysyms.h: No such file or directory
[code]....
View 6 Replies
View Related
Jun 3, 2011
This post is for an HP parallel printer but I think it should work for at least "some" other parallel printers.I am sure that someone smarter than me will follow up this post with a "well, just do this and that" and you will have your HP Laserjet 6P printer ready to go, but since questions litter the forums of MANY distros on how to get "at least" an HP parallel printer to work, I'll post this anyway.This may or may not work for you if you do not have an HP but you can try it.The install printer box will let you do an install for an HP Parallel and it asks for how it is to talk to it, through CUPS sock or "local host'. When we get through what I recommend you should chose "local host".
View 2 Replies
View Related
Jan 8, 2009
I am using F10 desktop edition, all the computers using windows are able to access the shared folders over lan except me using F10. I have tried many things with smb but still unable to connect.I am new to linux so i dont khow much of its technicalities.kindly suggest how can i be able to access the shared documents ..
View 1 Replies
View Related
Feb 14, 2009
I'm setting up my first Linux install and I was wondering if I would be able to boot Fedora from a CD while keeping every other file on my computer, or in other words if I would be able to put the /boot partition onto a cd. I've also read that Linux can be booted entirely from a logical partition. If that's true then can anyone help me in setting that up. Mostly my problem is I already have four primary partitions, one being a logical drive with plenty of free space in it, and I can't get rid of the primary partitions I already have.
View 1 Replies
View Related
Feb 19, 2009
How to make internet sharing in Fedora with two inputs & one output.
View 14 Replies
View Related
Mar 24, 2009
How can I access shared Windows files from a fedora system
View 3 Replies
View Related
May 27, 2009
ok so the router works in windows and i know the config details of it.i can see other wifi access points in the area but not my one. i have tried joining it as a "hidden network" to no avail.is there any reason why fedora would not detect my own wifi when it detects substantially weaker signals instead??
View 2 Replies
View Related
Jul 2, 2009
If any of you have successfully created a video hosting server with Fedora, can you give me any ideas of what software to get and how to configure it and so on? Or, if you have been unsuccessful, can you tell me what doen't work?
View 1 Replies
View Related
Aug 17, 2009
Linux OS : Fedora 10 (No graphical mode)Windows OS : XP and Windows Server NT...I am able to access from my windows to linux using following step//fedora10 ip username of admin and password...I am able to view the admin and shared printer of fedora 10.When i try to enter in the admin folder i am not able to access it. It is giving error "Access is denied".
View 6 Replies
View Related