ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] дерево - диаграмма зависимостей пакетов
@ 2004-11-18 15:19 Михаил Исаченков 
  2004-11-18 15:44 ` [Comm] " Michael Shigorin
  2004-11-18 17:43 ` [Comm] " Andrey Rahmatullin
  0 siblings, 2 replies; 4+ messages in thread
From: Михаил Исаченков  @ 2004-11-18 15:19 UTC (permalink / raw)
  To: community

добрый день,

а чем можно построить диаграмму-дерево зависимостей установленных пакетов?
вопрос праздный, но тем не менее.

-- 
WBR, Michael Isachenkov


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Comm] Re: дерево - диаграмма зависимостей пакетов
  2004-11-18 15:19 [Comm] дерево - диаграмма зависимостей пакетов Михаил Исаченков 
@ 2004-11-18 15:44 ` Michael Shigorin
  2004-11-18 16:52   ` Michael Isachenkov
  2004-11-18 17:43 ` [Comm] " Andrey Rahmatullin
  1 sibling, 1 reply; 4+ messages in thread
From: Michael Shigorin @ 2004-11-18 15:44 UTC (permalink / raw)
  To: community


[-- Attachment #1.1: Type: text/plain, Size: 411 bytes --]

On Thu, Nov 18, 2004 at 06:19:05PM +0300, Михаил Исаченков  wrote:
> а чем можно построить диаграмму-дерево зависимостей
> установленных пакетов?  вопрос праздный, но тем не менее.

Посмотрите apt-cache(1) про dotty, ну и apt-get install graphviz
:-)

Также прилагаю скриптик имени Alexander Bokovoy.

-- 
 ---- WBR, Michael Shigorin <mike@altlinux.ru>
  ------ Linux.Kiev http://www.linux.kiev.ua/

[-- Attachment #1.2: rpmdot --]
[-- Type: text/plain, Size: 644 bytes --]

#!/bin/sh
echo "digraph RPM {
size=\"40,22\"
page=\"8,12\"
ratio=fill
"
rpmlist=$(rpm -qa --qf='[%{name}\n]')
for i in $rpmlist ; do 
rpmdeplist=`(rpm -q --qf='[%{requirename}\n]' "$i"|
grep -ve 'rpmlib\(.*\)'|
xargs rpm -q --whatprovides |sort -u |
xargs rpm -q --qf='%{name}\n'|
while read package ; do
	if test "$i" != "$package" ; then
		rpm -q --qf='%{name}\n' "$package"
	fi
done| sed -e 's/, $//') 2>/dev/null`
    iescape=$(echo "$i"|tr '/-' '__')
    echo "$iescape [fontsize=12, label=\"$i\"]"
	for j in $rpmdeplist ; do
	jescape=$(echo "$j"|tr '/-' '__')
	echo "$iescape -> $jescape;"
    done
done
echo "}"

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] Re: дерево - диаграмма зависимостей пакетов
  2004-11-18 15:44 ` [Comm] " Michael Shigorin
@ 2004-11-18 16:52   ` Michael Isachenkov
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Isachenkov @ 2004-11-18 16:52 UTC (permalink / raw)
  To: community

спасибо, буду пробовать :)

@stalker ~ > man apt-cache
...
Внимание, dotty не может отображать большие списки пакетов.
...

> On Thu, Nov 18, 2004 at 06:19:05PM +0300, Михаил Исаченков  wrote:
> > а чем можно построить диаграмму-дерево зависимостей
> > установленных пакетов?  вопрос праздный, но тем не менее.
> 
> Посмотрите apt-cache(1) про dotty, ну и apt-get install graphviz
> :-)
> 
> Также прилагаю скриптик имени Alexander Bokovoy.
> 
> -- 
>  ---- WBR, Michael Shigorin <mike@altlinux.ru>
>   ------ Linux.Kiev http://www.linux.kiev.ua/
> 


-- 
Best regards, Michael Isachenkov


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] дерево - диаграмма зависимостей пакетов
  2004-11-18 15:19 [Comm] дерево - диаграмма зависимостей пакетов Михаил Исаченков 
  2004-11-18 15:44 ` [Comm] " Michael Shigorin
@ 2004-11-18 17:43 ` Andrey Rahmatullin
  1 sibling, 0 replies; 4+ messages in thread
From: Andrey Rahmatullin @ 2004-11-18 17:43 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 416 bytes --]

On Thu, Nov 18, 2004 at 06:19:05PM +0300, Михаил Исаченков  wrote:
> а чем можно построить диаграмму-дерево зависимостей установленных пакетов?
> вопрос праздный, но тем не менее.
apt-cache dotty 

-- 
WBR, wRAR (ALT Linux Team)
Powered by the ALT Linux fortune(8):

<Pilot> Aristarh: сколько дней уходит на пересборку всего гнома?
<drF_ckoff> Pilot: на пару недель меньше, чем на пересборку всего kde =)

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-11-18 17:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-18 15:19 [Comm] дерево - диаграмма зависимостей пакетов Михаил Исаченков 
2004-11-18 15:44 ` [Comm] " Michael Shigorin
2004-11-18 16:52   ` Michael Isachenkov
2004-11-18 17:43 ` [Comm] " Andrey Rahmatullin

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git