Changes between Version 1 and Version 2 of YumUtils/DebugInfoInstall

Show
Ignore:
Author:
Elwell (IP: 188.60.26.248)
Timestamp:
07/06/09 16:55:41 (9 years ago)
Comment:

Initial checkin

Legend:

Unmodified
Added
Removed
Modified
  • YumUtils/DebugInfoInstall

    v1 v2  
    1 = debug-install = 
    2 Description here 
     1= debuginfo-install = 
     2'''debuginfo-install''' is used to install the debuginfo version of packages 
     3and their dependencies, based on the name of the non-debug package 
    34 
    4 == Commmand line option == 
     5== Commmandline options == 
     6||  -h, --help           || show this help message and exit || 
     7||  -t, --tolerant       || be tolerant of errors || 
     8||  -C                   || run entirely from cache, don't update cache || 
     9||  -c  [config file]    || config file location || 
     10||  -R  [minutes]        || maximum command wait time || 
     11||  -d  [debug level]    || debugging output level || 
     12||  --showduplicates     || show duplicates, in repos, in list/search commands || 
     13||  -e  [error level]    || error output level || 
     14||  -q, --quiet          || quiet operation || 
     15||  -v, --verbose        || verbose operation || 
     16||  -y                   || answer yes for all questions || 
     17||  --version            || show Yum version and exit || 
     18||  --installroot=[path] || set install root || 
     19||  --enablerepo=[repo]  || enable one or more repositories (wildcards allowed) || 
     20||  --disablerepo=[repo] || disable one or more repositories (wildcards allowed) || 
     21||  -x [package], --exclude=[package] ||exclude package(s) by name or glob || 
     22||  --disableexcludes=[repo] || disable exclude from main, for a repo or for everything || 
     23||  --obsoletes          || enable obsoletes processing during updates || 
     24||  --noplugins          || disable Yum plugins || 
     25||  --nogpgcheck         || disable gpg signature checking || 
     26||  --disableplugin=[plugin] || disable plugins by name || 
     27||  --enableplugin=[plugin]  || enable plugins by name || 
     28||  --skip-broken        || skip packages with depsolving problems || 
    529 
    630== Configuration option == 
     31There are no specific configuration files for this command  
     32 
     33By default it searches the standard enabled repositories defined in  
     34{{{/etc/yum.conf}}} and {{{/etc/yum.repos.d/*repo}}} 
    735 
    836== Examples == 
     37To install all the packages for debugging the kernel: 
     38{{{ 
     39# debuginfo-install kernel 
     40... 
     41--> Running transaction check 
     42---> Package kernel-debuginfo.i586 0:2.6.29.4-167.fc11 set to be updated 
     43--> Processing Dependency: kernel-debuginfo-common-i586 = 2.6.29.4-167.fc11 for package: kernel-debuginfo-2.6.29.4-167.fc11.i586 
     44---> Package kernel-debuginfo.i586 0:2.6.29.5-191.fc11 set to be updated 
     45--> Processing Dependency: kernel-debuginfo-common-i586 = 2.6.29.5-191.fc11 for package: kernel-debuginfo-2.6.29.5-191.fc11.i586 
     46--> Running transaction check 
     47---> Package kernel-debuginfo-common.i586 0:2.6.29.4-167.fc11 set to be updated 
     48--> Processing Dependency: kernel-debuginfo-common-i586 = 2.6.29.4-167.fc11 for package: kernel-debuginfo-2.6.29.4-167.fc11.i586 
     49---> Package kernel-debuginfo-common.i586 0:2.6.29.5-191.fc11 set to be updated 
     50--> Finished Dependency Resolution 
     51kernel-debuginfo-2.6.29.4-167.fc11.i586 from fedora-debuginfo has depsolving problems 
     52  --> Missing Dependency: kernel-debuginfo-common-i586 = 2.6.29.4-167.fc11 is needed by package kernel-debuginfo-2.6.29.4-167.fc11.i586 (fedora-debuginfo) 
     53 
     54================================================================================ 
     55 Package                   Arch   Version             Repository           Size 
     56================================================================================ 
     57Installing: 
     58 kernel-debuginfo          i586   2.6.29.4-167.fc11   fedora-debuginfo    296 M 
     59 kernel-debuginfo          i586   2.6.29.5-191.fc11   updates-debuginfo   296 M 
     60Installing for dependencies: 
     61 kernel-debuginfo-common   i586   2.6.29.5-191.fc11   updates-debuginfo    36 M 
     62 
     63Transaction Summary 
     64================================================================================ 
     65Install      3 Package(s) 
     66Update       0 Package(s) 
     67Remove       0 Package(s) 
     68}}} 
    969 
    1070== Notes == 
     71This command must be run as root. 
     72