View previous topic :: View next topic |
Author |
Message |
Visseroth Apprentice
Joined: 13 Oct 2003 Posts: 291 Location: Idaho
|
Posted: Sun Mar 07, 2004 1:27 pm Post subject: IPv6 Doc page wrong? |
|
|
I was on the IPv6 Doc page trying to setup my system for IPv6 compatibility and when you come accross the command line to run; Code: | emerge -epv world | grep ipv6 | sed "s:^.*\] ::; s:-[0-9]\+.*::" | \ > cut -d' ' -f1 > packages | it doesn't work. I get the command Quote: | : command not found | or Quote: | -d command not found | or Quote: | cut: command not found | So anyone have any ideas as to how to get this to emerge the rest of my system for IPv6 compatibility? |
|
Back to top |
|
|
ikaro Advocate
Joined: 14 Jul 2003 Posts: 2527 Location: Denmark
|
Posted: Sun Mar 07, 2004 2:56 pm Post subject: |
|
|
i dono what that command does but if you want ipv6 you only need 2 things.
net-misc/iputils
and
sys-apps/iproute
Get an account at some TunnelBroker and thats it. _________________ linux: #232767 |
|
Back to top |
|
|
webkiller71 n00b
Joined: 29 Nov 2003 Posts: 20
|
Posted: Sun Mar 07, 2004 2:58 pm Post subject: |
|
|
Code: | root@dagobert ~ # emerge -epv world | grep ipv6 | sed "s:.*\] ::; s:-[0-9]\+.*::" | cut -d' ' -f1
Traceback (most recent call last):
File "/usr/bin/emerge", line 2578, in ?
mydepgraph.display(mydepgraph.altlist())
File "/usr/bin/emerge", line 1374, in display
print "Total size of downloads: "+format_size(totalsize)
TypeError: cannot concatenate 'str' and 'long' objects
x11-base/xfree
dev-lang/python
sys-apps/tcp-wrappers
x11-libs/qt
dev-libs/libxml2
media-sound/esound
net-ftp/proftpd
media-sound/xmms
net-ftp/curl
net-misc/wget
net-misc/ssh
net-irc/irssi
net-ftp/ncftp
net-mail/ssmtp
kde-base/kdelibs
net-misc/oidentd
net-www/lynx
net-analyzer/iptraf
net-misc/iputils
root@dagobert ~ # |
result here |
|
Back to top |
|
|
latexer Retired Dev
Joined: 05 Mar 2003 Posts: 239 Location: NYC
|
Posted: Sun Mar 07, 2004 4:41 pm Post subject: Re: IPv6 Doc page wrong? |
|
|
Visseroth wrote: | Code: | emerge -epv world | grep ipv6 | sed "s:^.*\] ::; s:-[0-9]\+.*::" | \ > cut -d' ' -f1 > packages |
|
the problem lies in the how you combined two lines from the guide into one. remove the "\ >" before the "cut" command. Those are from bash if you are doing multi-line commands. Do something like
Code: | emerge -epv world | grep ipv6 | sed "s:^.*\] ::; s:-[0-9]\+.*::" | cut -d' ' -f1 > packages |
_________________ overlays - Use at your own risk. File bug reports on this stuff and i'll kick you in the junk. Ask me before asking upstream if these fail. I mean it. No, really.
#gentoo-dotnet on freenode |
|
Back to top |
|
|
|