Sponsored Content
Operating Systems Linux Fedora How to download latest version of cmake using tar xzf? Post 302924475 by sea on Monday 10th of November 2014 05:03:26 AM
Old 11-10-2014
You're using a RedHad based linux, thus you should have yum which is a package manager.
Though, on Fedora only cmake 2.8.12.2 is available, not sure which versions will be available on/with el6.

Either way, try:
Code:
sudo yum update cmake

Hope this helps
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What is the latest version of Unix?

I want to buy it (2 Replies)
Discussion started by: LANSTARR.COM
2 Replies

2. UNIX for Advanced & Expert Users

unlogical error on tar xzf

Hi all, I'm disapointing : This morning I have successfully tar/gzip (tar czf) some directories to generate archives. These archives have been created in a directory named /save, on "/" FS. After this operation, a system administrator have "on-my-demand" rebuild discs architecture except the... (5 Replies)
Discussion started by: madmat
5 Replies

3. BSD

latest version of bsd

Any body there ? What is latest BSD version ? (4 Replies)
Discussion started by: chilaka
4 Replies

4. Shell Programming and Scripting

Question about how to ftp download the latest file from a directory

Dear all, Hope you are doing well. I am in trouble to write a shell for ftp downloading the latest file from remote server. Situation: There is a directory named 'weekly' which contains .csv files with the following pattern: RES_EN_100417-080003.csv.Z. The new file is generated... (3 Replies)
Discussion started by: kel1014
3 Replies

5. Ubuntu

Download latest Ubuntu version from linux command

I have ubuntu 10.4 on my system and want to download newer Ubuntu version like 11.04. Is there any linux command(something like apt-get source used for downloading kernel source) using which I can download directly the newer ubuntu relaease? (2 Replies)
Discussion started by: rupeshkp728
2 Replies

6. UNIX for Advanced & Expert Users

Want to download a latest file with current date from FTP location

Dear Friends, I need help to write a shell / perl script to download the files from FTP location, having different file names (date inside the file name). Example: Mar 5 09:24 cfx_03052013_return_file.txt Mar 6 02:13 cfx_03062013_return_file.txt Mar 7 06:40... (3 Replies)
Discussion started by: Praveen Pandit
3 Replies

7. Shell Programming and Scripting

Download latest file via ftp server unix through shell script

Hello this is my first post in this forum , I dont want to be unhappy.. I am writing one script but facing difficulty to find the latest file with some new pattern My requirement is 1. The file is coming like "ABCD-23220140303" at FTP server once in a week. 2. script will run on daily... (3 Replies)
Discussion started by: ajju
3 Replies

8. Shell Programming and Scripting

Read latest file name with a date and time and then download from FTP

Hi All, Please help. I have requirement to read the file / folder based on the latest date and download the file and folder. There will be files and folders in the location like 20140630-144422 20140630-144422.csv 20140707-182653 20140707-182653.csv 20140710-183153... (7 Replies)
Discussion started by: Praveen Pandit
7 Replies

9. UNIX for Beginners Questions & Answers

Problem to download cmake extra modules v 1.7

Hello. I am currently trying to compile kde-baseapps. I issue this command: which returns So I need this ECM stuff. I found this: extra-cmake-modules.git - Extra modules and scripts for CMake.. When I click in the corresponding link in the column, I receive this: This also happens... (2 Replies)
Discussion started by: colt
2 Replies
yum-groups-manager(1)													     yum-groups-manager(1)

NAME
yum-groups-manager - create and edit yum's group metadata SYNOPSIS
yum-groups-manager [options] [packages] DESCRIPTION
yum-groups-manager is used to create or edit a group metadata file for a yum repository. This is often much easier than writing/editing the XML by hand. The yum-groups-manager can load an entire file of groups metadata and either create a new group or edit an existing group and then write all of the groups metadata back out. OPTIONS
-h, --help Display a help message, and then quit. --version Display a version message, and then quit. -n, --name The name to lookup/use for the group. If you specify an existing group id, then the group with that id will have it's name changed to this value. --id The id to lookup/use for the group. If you don't specify an id, but do specify a name that doesn't refer to an existing group, then an id for the group is generated based on the name. --description The description to use for the group. --mandatory Store the package names specified within the mandatory section of the specified group, the default is to use the default section. This overrides the optional argument. --optional Store the package names specified within the optional section of the specified group, the default is to use the default section. This option is overridden by the mandatory argument. --dependencies Also include the names of the direct dependencies for each package specified. --not-user-visible Make the group not visible in yum grouplist. --user-visible Make the group visible in yum grouplist (this is the default). --display-order Change the integer which controls the order groups are presented in, for example in yum grouplist. --load Load the groups metadata information from the specified file, before performing any operations. This option can be specified multi- ple times. --save Save the result to this file, you can specify the name of a file you are loading from as the data will only be saved when all the operations have been performed. This option can also be specified multiple times. --merge This is the same as loading and saving a file, however the "merge" file is loaded before any others and saved last. --print Also print the result to stdout, if saving or merging. --remove Instead of adding package, remove them. Note that the packages are removed from all sections (default, mandatory and optional). --translated-name This is another name for the group within the locale given. The syntax is lang:text. Eg. en:my-group-name-in-english --translated-description This is another description for the group within the locale given. The syntax is lang:text. Eg. en:my-group-description-in-english. YUM OPTIONS
The following options are meant to be the same as those with the same name in yum. -c CONFIG, --config=CONFIG --quiet --verbose --enablerepo --disablerepo --noplugins -C, --cache --tempcache EXAMPLES
Create a new group metadata file, with a group called yum containing all the packages that start with yum: yum-groups-manager --name YUM --save groups.xml 'yum*' After the above command, load the groups.xml data, work with the yum group, make the group not user visible, and remove the yum-skip-broken and yum-priorities packages from it: yum-groups-manager -n YUM --merge groups.xml --remove yum-skip-broken yum-priorities --not-user-visible After the above commands, add a description and a translated name to the yum group: yum-groups-manager -n YUM --merge groups.xml --description 'This is a group with most of the yum packages in it' --translated-name 'en:yum packages' FILES
yum-groups-manager uses the yum libraries for retrieving information and packages. If no configuration file is specified, the default yum configuration will be used. /etc/yum.conf /etc/yum/repos.d/ SEE ALSO
yum (8) yum.conf (5) http://yum.baseurl.org/ AUTHORS
See the Authors file included with this program. BUGS
There are a couple of options you can't set, yet. Most notably you cannot put package names into the conditional section (where they are installed with groupinstall only if another package is installed). Other than that, there are no bugs, but should you find any, you should first consult the FAQ section on http://yum.baseurl.org/wiki/Faq and if unsuccessful in finding a resolution contact the mailing list: yum-devel@lists.baseurl.org. To file a bug use http://bugzilla.redhat.com for Fedora/RHEL/Centos related bugs and http://yum.baseurl.org/report for all other bugs. 23 August 2008 yum-groups-manager(1)
All times are GMT -4. The time now is 07:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy