Fedora :: How To Make Yum Install List

Dec 29, 2009

I'd like to turn the output of "yum list installed" into a file list I can use to setup other machines? Something similar to "yum -y install < listofinstalled.txt" or something?

View 11 Replies


ADVERTISEMENT

Programming :: Get A List Of File Install Locations With Make It?

Dec 21, 2010

I have a bit of a problem and the only solution I can think of at the moment is a very tedious one, so I was hoping there would be a better way. What I am trying to do is cross compile the PPPD program so that I can install it on an embedded system (this system does not have make/gcc on it). It was easy to cross compile it, but I can not run "make install" since I'm compiling on a secondary machine. I don't want to install PPPD on this secondary machine (I couldn't anyway, because it was compiled for a different architecture) and I can't run make install on the target machine because there is no make/build system for it.

So it seems like what I would have to do is to manually copy over each compiled file from the build machine to the appropriate location of the target machine. And the only way (that I know of) to figure out how to do this is to manually examine the Makefiles (yes, there are several for PPPD) and figure out which file should go where on the target system. This isn't trivial because it uses a hierarchy of makefiles and the probability of human error for this method is high.

Is it possible that I could run another command that would give me a list of all the commands that make install would perform? Or a list of all files and their target location for "make install"? Or possibly some other solution that I am completely unaware of that would make this task not so painful and error prone?

View 8 Replies View Related

Fedora :: Make A List Of Txt Ogg Or Other Files?

Oct 8, 2009

how to make a list of all mp3 ogg or any other files in linux and save it as csv. Or, do somebody know a program or python script which allow you to do that by just pointing at the location with this files??

View 7 Replies View Related

Fedora :: List Of All Packages Available For Install On F12 Disks?

Oct 25, 2010

Where might I find a list of all packages available for install on the Fedora 12 disks?

View 2 Replies View Related

Ubuntu :: Use To Make A To-do List On Desktop?

May 16, 2010

Is there any package that I can use to make a to-do list on the desktop? Like a widget of some sort?

View 2 Replies View Related

Programming :: How To Make List Of Thumbnails In Qt?

Aug 6, 2010

How to I make a list of thumbnails in Qt, kind of like the "Icon View" in many GUI file managers?

View 11 Replies View Related

Fedora :: Repository List And List Of Installed Applications?

Feb 17, 2010

I understand there is a file that stores the repositories' information, but I can't find it!Is there a way I can create a list of what applications have been installed?The idea is that if I am running a backup, finding a way to save the repository list and applications installed so if I am upgrading, or fixing a borked system by re-installing Fedora, I could copy the repo list back, and run the applications list like ode:yum install <cat apps.txt?> and get all of the applications I've installed via Yum without having to remember them all?Is there anything else, outside of /home, I should look at backing up? SELinux settings?

View 6 Replies View Related

General :: Make A List Of Directories And Files?

Jun 3, 2011

My system is centos 5.5, and I need nobody:nobody's directories and files under data.

There is a directory named "data, and this directory has so many directories and files generated by web program. Most of them is nobody:nobody.

I want to to make a list of these nobody:nobody directories ans files.

Is it possible to make a list of these directories and files?

View 1 Replies View Related

Software :: Make Craig's List Ad Notifier In Bash?

Jan 7, 2010

I have OpenSuSE 11.2, and I am learning Bash scripting. I was wondering how I would make a bash program, That I could have it check multiple craigslist sites [western mass, worcester mass, etc], e.g. in the Free category, and/or enter keywords, and have it update every 5 minutes, and then post the results somewhere, to a file, or even upload it to a server, or if it's even possible? (Kind of like the program "Ad Notifier for Craigslist") Would I have to do this in C/C++? If it has to be done in C/C++ It would have to be windows compatible preferably.

View 2 Replies View Related

Programming :: Make List Of Directories Which Contain Files Other Than Subdirs?

Oct 17, 2009

I need to, through a bash script, go through a given directory (given as argument 1) to list out the relative path in this directory (including $1) for eact subdirectory which contains files. Directories which only contain . .. and eventually only subdirectories SHALL NOT be listed. It is this last requirement that makes it difficult for me.

I have been using the tree command for now, but I have not found a way to ignore paths to directories which only contains other subdirs or nothing at all in any easy way. I may offcourse test each directory after they are listed but this gives an extra loop to go through and I beleive it should be possible to do it directly when creatring the list. I guess by using find or ls in conjuntion with the tree command or by itself it should be possible but I am not to conversant of nested script commands.

View 9 Replies View Related

Software :: Failed To Install Chpasswd 2.2-4 I Have ./configure, Make, Make Install?

May 2, 2010

i installed a mail server in RHEL 5 with postfix, dovecot, openwebmail, but i failed to install chpasswd 2.2-4 i have ./configure, make, make install, but nothing happens can any one help me with some documentetion for chpasswd for changing password for mail account

View 5 Replies View Related

Fedora Installation :: Install The Original Version Of Fedora 15 And Make It Dual Boot With Windows 7?

Aug 17, 2011

So I want to install the original version of Fedora 15 and make it dual boot with my Windows 7. Problem here is that I don't have a cd/rom. and the iso file didn't have a .exe thingy.....

so now what? Also this is my partitions> http://img94.imageshack.us/img94/9853/unledtlh.jpg

View 4 Replies View Related

Debian Multimedia :: Make A Dialog With Zenity Which Would Show An Updating List?

Jan 4, 2011

Is there a way to make a dialog with zenity which would show an updating list? Zenity does it with progress, but I didn't figure out if it's possible to do it with the list. I.e. for example, I want to monitor something, and update the dialog with new list periodically. Is it even possible? zenity can wait for data from stdin, but it just adds stuff to the list. May be there are some control sequences which clear the list in the dialog?

For example:

{ echo "Foo"; sleep 2; echo "Bar"; } | zenity --list --title='Dynamic list?' --text='Some data' --column='values'

How can I instead of adding Bar, replace the Foo with it?

View 2 Replies View Related

General :: Mention List Of Services In The Same File And Still Make The Script Work?

Jan 26, 2010

I have a script from which i want to disable unwanted services. I wanted to have the list of unwanted services in the same script file. I tried the following, but it is not working...How do I mention list of services in the same file and still make the script work ?

Code:
#/bin/bash
#List of services, modify list between SERVICES tag
service_list=$(cat <<SERVICES
acpid
apmd
avahi-daemon

[Code]...

View 1 Replies View Related

Programming :: Make A Program That Maintains A List Of Tags That Can Be Attached To A Set Of Files?

Jul 28, 2010

I want to make a program that maintains a list of tags that can be attached to a set of files. Store the tags in the files. The main problem is that there is no way to get a list of all the tags without reading each and every file. And also what if you have an unused tag? Have a file that contains tag "keys" and file list "values". This seems like it would be fast and effective, but what if one of the files gets renamed?

View 12 Replies View Related

Fedora Installation :: Can Not Install F13 / Make It Possible?

Jun 3, 2010

I am running fedora 12.
It works very smooth in my system.
My system configuration is given in my signature.
When i am trying to install fedora 13 64 bit after that anaconda screen i am getting a screen of blue background and the rectangular small installation screen .but the problem is that nothing is there in that screen.It is completely white and the system stands there for ever.
How can I install fedora 13?

View 4 Replies View Related

Fedora :: Save "list Of Installed Packages" In A List And Restore?

Mar 28, 2010

how do I save installed packages in a list and restore ...

rpm -qa > installed-software.log
yum install $(cat installed-software.log)
sorting rpm packages by size
rpm -qa --qf '%{SIZE} %{NAME}
' | sort -n

View 4 Replies View Related

Fedora :: How To Install KDE / Make Gnome Do Similar

Sep 10, 2010

Just installed fc13 and wasn't given the option for kde.... I like the desktop effect and Widgets.... is there a way to do the same with gnome???? If not what packages do I. Install from the apps list?

View 10 Replies View Related

Red Hat / Fedora :: Possible To Make Install With Just Admin Rights

May 25, 2010

I have moved to a new place and they expect me to work without root access to my machine, but I need to compile and make some software. However I get the following error:

mkdir: cannot create directory '/usr/local/ope': Permission denied
chmod: cannot access '/usr/local/ope': No such file or directory
mkdir: cannot create directory '/usr/local/ope': No such file or directory
chmod: cannot access '/usr/local/ope/bin': No such file or directory
make[1]: *** [/usr/local/ope/bin] Error 1
make[1]: Target '_installall' not remade because of errors.

I have been allegedly been given admin rights - but do I need root to do this?

View 4 Replies View Related

Fedora :: Remove A Software Installed Using Make Install?

Dec 13, 2009

this is a tar.gz file and i've installed it lately . i wanna take it out now in my system. but dont know so how dyou re move a software installed using ./configure make make install?

View 1 Replies View Related

Fedora Installation :: FC14 Won't Fully Install / Make It Possible?

Dec 24, 2010

New 320 Gig HD. Installed FC14 from DVD and it worked, except there are no icons at all to get started as there were in FC 13. Cant find "Places", "Applications" that were at the top of the screen. Now it's blank except for the splash design. Tried to re-install, but it won't do that. Just goes to the HD and the same blank splash screen. Thanks for the help. Please be easy with explanations as I'm new at this.

View 14 Replies View Related

Fedora Installation :: FC12 Install From Live CD - How To Make The Partitions

Mar 11, 2010

I'm trying to install from the Live CD. I read the sticky about needing a /boot and a / partition. I think that sticky applies to me but I'm not sure; once the Live CD loads, I click the "Install to Hard Drive" icon on the desktop. It thinks for awhile but ultimately doesn't display anything.What I'm not sure about is how exactly I go about making those partitions. My current HD is a Ubuntu system (Karmic Koala), and its network slowness has prompted me to try FC12. I've backed up everything already, I don't need to preserve anything on the existing drive.

I'm looking for the easiest way to get FC12 installed. Should I fool with the partitions? I just download a different install CD i.e. a non-Live one? If so, which one? Do I need all 5 or so CD images? I don't have a DVD burner so downloading the DVD isn't an option. I'm comfortable working from a Linux command line once the system is working, but I don't have much experience "close to the metal" i.e. actually getting a system up and running.

View 1 Replies View Related

Fedora Hardware :: Make And Install The Driver For The Hauppauge 1600?

Jun 8, 2011

I am having an extremely hard time trying to make and install the driver for the Hauppauge 1600. I have Fedora 14-2.6.35.91 kernel. I am a newbie at this kind of installation. I would like to know is there a kernel that I can install that the tv tuner will work right out of the box. This is very frustrating. I try to install the CX18 driver, I receive an error message. I would really like this to work.

View 3 Replies View Related

Fedora :: Install Ubunto 11.04 From 15 Using Usb Live And Make Dual-boot?

Aug 7, 2011

I'm using Fedora 15 and i want to install Ubunto 11.04 using live usb and then the two linux systems to be on my computer.note:first fedora 15 is to be installed

View 1 Replies View Related

Fedora Installation :: Edit Yum.conf To Make Yum Install From Local Repo

Mar 14, 2009

I have successfully installed fedora 10 and have rpmfusion in my /home/ directory. i don't know how to edit yum.conf to make yum install from this local repo. i tried once. But when i tried to install vlc i got an error saying some lib****** files are missing and missing dependencies.

View 2 Replies View Related

Fedora Networking :: Sierra Modem 885 Compass - Install And Make It To Work In 7?

Aug 19, 2009

i have usb modem sierra 885 compass but i don't know how to install it, nor to make it work in fedora 7

View 1 Replies View Related

Fedora :: Undefined Reference To `pthread_create' When Install Bochs And Make The Makefile

Oct 26, 2009

when i install bochs and make the makefile why undefined reference to `pthread_create'

View 1 Replies View Related

Fedora :: Install "fatrat Download Manager - Make Error

Nov 9, 2010

I get this error when I type "make" to install "fatrat download manager"

Code:

View 5 Replies View Related

Fedora :: Install F15 Without Nouveau To Make Nvidia Driver Installation Easier?

Jun 7, 2011

Can this be done similar to some other O/Ses so Nouveau doesn't pre-screw up the kernel for 3rd party drivers??? Would be great in F16 if we were given a choice re: wanting nouveau or not. I simply can not get F14 or F15 to work with the 270.xx drivers on recent equipment.

View 10 Replies View Related

Ubuntu :: Cannot Make And Make Install In Gnome Shell?

Jun 20, 2011

I just installed Gnome Shell in Ubuntu 11.04 through UGR Linux and everything works fine! The only problem is that I cannot run make and make install. I get the following errors:

Code:
alexandros@Autobot:~/gnome-shell/source/gnome-shell-extensions$ make && make install
Making all in extensions
make[1]: Entering directory `/home/alexandros/gnome-shell/source/gnome-shell-extensions/extensions'[code]........

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved