Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

An emerge wrapper for breaking emerges into chunks

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Post Reply
Advanced search
729 posts
  • Page 16 of 30
    • Jump to page:
  • Previous
  • 1
  • …
  • 14
  • 15
  • 16
  • 17
  • 18
  • …
  • 30
  • Next
Author
Message
slycordinator
Advocate
Advocate
User avatar
Posts: 3065
Joined: Sat Jan 31, 2004 9:51 pm
Location: Korea

  • Quote

Post by slycordinator » Wed Jan 25, 2006 5:15 am

hielvc wrote:That idiot, I shall remain un-named, straighten out my port forwarding. But for 2 weeks now at about 10pm my internet goes down. so Im directly hooked the modem. I now have a new ip address so tomorrow mornig Ill have to redo everthing. In other words my links down. IN the mean time I wait and wait for cox service sigh.
FYI

You can use Dynamic DNS to have your (changing) IP associated with a web address name of your choice. And unless you need a bunch of sub-domains or something, it's free.

Some sites that do it:
http://www.dyndns.com/
http://www.no-ip.com/
(a bunch more sites do it)

Those companies just use a database that associates the web address with your REAL IP. You just use a script that tells the company's server your new IP address when it changes.

The updater script for both are in portage (net-dns/noip-updater for no-ip.com and net-dns/ddclient for dyndns) and ddclient might even be included in your router (though it'll be an older version than the one in portage).

So that avoids your worry about the different IP. I think (since I haven't used this service) that it takes a few minutes for the IP change to propogate to their servers when it does change but that's probably acceptable.
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Wed Jan 25, 2006 7:09 am

Actually my problem was that it was so stable. when my internel address changed, my son was fixing a freinds computer and got my ip. I forgot to ahange the router mappings. When I did, I didnt really check them out and I had crossed mappings form an old CS server that was no longer used. Anyway I cleaned that up and it worked. Tonight of course the net is working fine, so cox thinks I nuts. but has required about 6 resets of the cable modem about the same for the router which are buried behind another sons speakers and records. So Im back to my old internel ip, edeited apache, and the router tables and that part is good. I havent had a chance to fix emtst.sh though . Well theres tomorrow or the day after.

oh and thanks for the tips.
An A-Z Index of the Linux BASH command line
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Thu Jan 26, 2006 7:44 pm

Feld emtst.sh builds the tc now,agian.
An A-Z Index of the Linux BASH command line
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Thu Feb 02, 2006 4:22 am

Posted emwrap.sh version 4.0.0

Field thanks for testing 8)
An A-Z Index of the Linux BASH command line
Top
matobsk
n00b
n00b
Posts: 64
Joined: Sun Oct 16, 2005 5:33 pm

  • Quote

Post by matobsk » Tue Feb 07, 2006 11:49 am

Emwrap.sh 4.0.0 (Datestamp Feb 1st 2006) still seems to want to build the TC when I do

Code: Select all

./emwrap.sh -W
This doesn't seem to be proper behavior from what I can tell in the docs. I thought it was the same as doing emerge -e world, but skips the TC and 'system' packages.
Maybe I missed some other flag I need to use to do that?

The rest of my system rebuild went great though!
Top
darkphader
Veteran
Veteran
User avatar
Posts: 1225
Joined: Thu May 09, 2002 11:24 pm
Location: Motown
Contact:
Contact darkphader
Website

  • Quote

Post by darkphader » Tue Feb 07, 2006 12:59 pm

matobsk wrote:Emwrap.sh 4.0.0 (Datestamp Feb 1st 2006) still seems to want to build the TC when I do

Code: Select all

./emwrap.sh -W
This doesn't seem to be proper behavior from what I can tell in the docs. I thought it was the same as doing emerge -e world, but skips the TC and 'system' packages.
Maybe I missed some other flag I need to use to do that?

The rest of my system rebuild went great though!
Ditto. But

Code: Select all

emwrap.sh -S
seems to work as expected.
WYSIWYG - What You See Is What You Grep
Top
darkphader
Veteran
Veteran
User avatar
Posts: 1225
Joined: Thu May 09, 2002 11:24 pm
Location: Motown
Contact:
Contact darkphader
Website

  • Quote

Post by darkphader » Tue Feb 07, 2006 5:03 pm

The following patch (changes one line - easy to hand edit) to emwrap.sh 4.0.0 makes -W work like I expected it to:

Code: Select all

--- emwrap.sh.orig      2006-02-07 11:56:46.000000000 -0500
+++ emwrap.sh   2006-02-07 11:57:00.000000000 -0500
@@ -436,7 +436,7 @@
 # stops regerateing the build file if your resumeing build
 if [ "$resume" != "yes" ]; then
        # wrld_list already run for system files.
-       cat wrld.lst|tc_filter >sys.lst
+       cat wrld.lst >sys.lst
        # filter out sys files and puts the results into into the build list.
        if  [ "${do_wrld}" ==  "yes" ] ; then
                bclass="world";eargs="e"
@@ -494,4 +494,4 @@


 clean_up
-exit
\ No newline at end of file
+exit
Chris
WYSIWYG - What You See Is What You Grep
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Wed Feb 08, 2006 5:54 am

Ok fixed.
darkphader your solution is almost correct, at least as I solved it. I removed the tc_fillter from both the" cat wrld.lst >sys.lst" and the from the wrld_lst >build. Anything thats common to both is removed including TC items.. Also added a Tc variable that is trigered off the " -t " so that I had a test condition instead of just a logic of order, that got broken whin I fixed something else, This prevents -W from running when its used to just build the TC, " -Wt ".
An A-Z Index of the Linux BASH command line
Top
dagurasu
n00b
n00b
Posts: 74
Joined: Fri Apr 29, 2005 5:44 pm

  • Quote

Post by dagurasu » Mon Feb 13, 2006 12:10 am

@hielvc

It's been awhile. I've been using version 3.0.1 of emwrap.sh since it was released, but decided to give the latest version a go especially to get the improved failed-package features. Anyway, the first thing I tried with 4.0.0 was an "emwrap.sh -setp"(edit: fixed typo). This listed both toolchain packages AND system packages . Should it do that?

There were some early versions where the -p option would list everything but when it was removed it would only emerge what was expected. I don't follow the script anymore since it's changed quite a bit, so I can't tell if this is this case now. So it seems either it wants to emerge more than I expected, or that -p doesn't show what will actually happen.
Last edited by dagurasu on Mon Feb 13, 2006 4:55 am, edited 2 times in total.
Top
dagurasu
n00b
n00b
Posts: 74
Joined: Fri Apr 29, 2005 5:44 pm

  • Quote

Post by dagurasu » Mon Feb 13, 2006 4:45 am

I found a(nother?) small glitch(not even bug) in emwrap.sh (and probably in most any emerge wrapper). I wanted to hit cntrl-c, do some stuff and then resume. Unfortunately if the cntrl-c comes during an emerge it only kills the emerge, not the script. The script goes on to the next emerge and so on until you get lucky enough to hit cntrl-c during the actual script. By then I'd already killed several emerges(even though I was holding down cntrl-c) and lost them from the build list for my planned resume. My guess is emerge doesn't exit properly and this is why this happens. Anyway, I made a test script with several emerge processes and found the same behavior. The same script run with just sleep processes had no problem exiting as expected. Anyway, I googled a little and found a fix. Put the following:

trap "exit 1" 1 2 3 15

as the first command in the script (or at least before an emerge). I've only tested it on my little test script, but it works like a charm there.
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Tue Feb 14, 2006 4:59 am

Thanks dagurasu fixed the prob with -sept running -se aand added "trap", so much for my quickie failed list generation techinic :(
So if in newer version CRTL-C doesnt stop the script hunt for the
# Main where the functions are called and things get done.
#trap "exit 1" 1 2 3 15
color....
commented out, ' #trap"exit 1" 1 2 3 15 ' at the top of main and uncomment it, remove the # sign. I not planing on doing it, but I might forget. Like I said CRTL-C is a great way to generate a failed list when I test :lol:
An A-Z Index of the Linux BASH command line
Top
rommel
Veteran
Veteran
User avatar
Posts: 1145
Joined: Fri Apr 19, 2002 6:17 am
Location: Williamsburg Virginia

  • Quote

Post by rommel » Sun Feb 19, 2006 12:18 am

anyone get this when running the script

Code: Select all

 # emwrap -e world
/usr/bin/emwrap: line 464: 1: command not found
world
Top
eandry
n00b
n00b
User avatar
Posts: 50
Joined: Mon Nov 15, 2004 1:20 am

  • Quote

Post by eandry » Sun Feb 19, 2006 4:28 am

Thought it was time to do an update after 6 months. I check this thread to be sure I have the latest emwrap.sh so I downlaod from hielvc's website.

I check for the options by running as

Code: Select all

emwrap.sh -?
However, I don't get very helpful output:

Code: Select all

                                 Runnig emwrap.sh
         if emwrap.sh is run and it detects a "failed' or "build"
         file then it will offer to build them. You can ignor this by not doing  
         anything and what you wanted todo will start after 10 seconds.

It then returns back to the prompt. Nothing is written in /tmp/emwrap either.

What gives?
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Sun Feb 19, 2006 5:58 am

eandry fixed print_help. Its now posted at link and in a few on the front page. rommel are you running emwrap.sh or emwrap ? If its mine, emwrap.sh, what exactly did options did you use?
An A-Z Index of the Linux BASH command line
Top
eandry
n00b
n00b
User avatar
Posts: 50
Joined: Mon Nov 15, 2004 1:20 am

  • Quote

Post by eandry » Sun Feb 19, 2006 5:29 pm

hielvc,

Thanks for the quick update! Your script seems to be working now as it's finding packages that I need to have either unmasked or rebuilt. I will be attempting a full TC and system rebuild this afternoon.

Just an FYI, page one of this thread mentions the files sys-build.sh and basesys-build.lst both pointing to http://www.fi3nd.net/dads/ which doesn't allow directory browsing capability like yours does and that's where I found sys-build.sh.

Where can I find basesys-build.lst?

Are both of these files required for your emwrap.sh script?
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Sun Feb 19, 2006 6:48 pm

eandry Thanks for remainding me of those links to sys-build.sh. No those arent needed. Thats an old project that ended up proveing to me that portage does a very good job of building things in the correct order with the exception of linux-headers and glibc updates. But as I stated on the front page since most of the time they are minor revision updates they dont cause that many probs. Actually dictionary.lst is basesys-build.lst. I forgot to rename it. :oops: As to you rebuilding your system, what I do is

Code: Select all

emwrap.sh -suDt   ==> to make sure gcc isnt makeing a major jump gcc3.3.# > gcc3.4
emwrap.sh -Sb1  or -seb1 ==> rebuilds entire TC once then the rest of the system files.
emwrap.sh -W
This is what I did. I havent really looked at it, but if xorg isnt in your world file then it now gets built when you do a system update. Im going to try to look at that today. It used to be ,for me least, that building the TC and the system once was fine. Then rebuilding the world files once usually worked, but if things were slow or there minor gatchs then I would do a second world rebuild. The world rebuild Im talking about is the emwrap.sh world minus system. Now unless you manually emerge xorg which puts it into your world file, the new virtuals have it built during the system update. I havent checked out what other files are pulled into system with this behavior. So what I did was TC+system once and world once if only 3 months or less had gone by twice if more. This should work still work fine but i need to check.
An A-Z Index of the Linux BASH command line
Top
rommel
Veteran
Veteran
User avatar
Posts: 1145
Joined: Fri Apr 19, 2002 6:17 am
Location: Williamsburg Virginia

  • Quote

Post by rommel » Wed Feb 22, 2006 4:29 pm

hielvc, yeah i was running your emwrap.sh... the latest dated on the download page http://68.8.82.201:9002/ ... but something blew up.. i ran it with diff option comments listed in the script and it would just return me to a prompt... then i passed it -e world and after 20 mins started noticing econf errors scrolling by so i killed it and then nothing would emerge again... all failing with segmentation faults on configure

anyway i nuked that amd64 install and added its drive and another like it to a raid array for my users home on my ~x86 install.... i guess i better read this entire thread before i play with it more.
Top
eandry
n00b
n00b
User avatar
Posts: 50
Joined: Mon Nov 15, 2004 1:20 am

  • Quote

Post by eandry » Wed Feb 22, 2006 11:16 pm

rommel, I was having similar problems. After running doing manual 'emerge -vp world/system' and a python script (I can't remember the name at the moment) I found in one of the other threads which validates your portage configuration (e.g. package.mask, package.use, etc.).

I had blocks and a couple of use flags that were no longer valid. After fixing those problems I was able to eventually do a full rebuild of my system with hielvc's emwrap.sh script.

Thanks hielvc for such a wonderful way of rebuilding your entire system! :)
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Thu Feb 23, 2006 4:34 pm

eandry Im glad you figured out what was wrong. As you said and what I do is run emerge blaa first as emwrap.sh , all these scripts really, strip out usefull info that emerge will give. Here is a usefull little portage config checker script to help manage package.keywords,unmask and mask . They are several but since I havent used them for while I forgotten thier names. :oops: . and gentoolkit has gotten quit good. Oh yes and Porthole-0.5.0 released is a nice tool if you run gnome and there is one for KDE but I cant find it now but Dol-san mentions it in his thread.

\
Last edited by hielvc on Fri Feb 24, 2006 3:03 am, edited 3 times in total.
An A-Z Index of the Linux BASH command line
Top
kohno
Tux's lil' helper
Tux's lil' helper
Posts: 112
Joined: Sat Aug 28, 2004 4:12 am

  • Quote

Post by kohno » Thu Feb 23, 2006 4:44 pm

I tried the emwrap.sh script in my new install,here's what I did:
I unpacked a stage1 tarball, edited /etc/make.conf, then

Code: Select all

# mkdir /etc/portage/profile
# echo "sys-devel/gcc-3.3.6" >> /etc/portage/profile/package.provided
# emerge -uav gcc
# gcc-config 6 (switch to 3.4.4)
# source /etc/profile
Then I run the emwrap.sh script:

Code: Select all

# /root/emwrap.sh -Sb
It works very well. Thank you, hielvc!
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Thu Feb 23, 2006 5:18 pm

Oh joy. kohno Im glad it worked but I hope all those nuts , me excluded of course, dont come runnig over here from What exactly happened to stage 1? And bootstrapping? and start yelling and screaming. :D
An A-Z Index of the Linux BASH command line
Top
eandry
n00b
n00b
User avatar
Posts: 50
Joined: Mon Nov 15, 2004 1:20 am

  • Quote

Post by eandry » Fri Feb 24, 2006 2:50 am

Incidently, here's portage_syntax_checker.py the portage flag checker that was nameless to me the other day.

Thanks for the reminder about portpeek. I had it downloaded but have never tried it.

Good idea kohno using emwrap.sh during a NEW install. It's been a while since I've done a brand new install of Gentoo since it's been pretty stable since I installed it the first time, so I would have never thought about it.

I have a new AMD64 box that I'm just waiting for the chance to install Gentoo on...so I'm your new fanboy, hielvc! ;-)
Top
Treborius
Guru
Guru
User avatar
Posts: 585
Joined: Tue Oct 18, 2005 4:06 pm
Location: Berlin
Contact:
Contact Treborius
Website

  • Quote

Post by Treborius » Fri Feb 24, 2006 5:14 pm

great script, let me say thx first

but if you have a crosscompiler the script fails, cause

# emerge glibc

for example will fail with something like
: the package name glibc is ambious, please blah blah ....

could be solved by adding sys-libs/ to every glibc occurence and sys-devel to every gcc occurence and so on,

for now i just unmerged my crosscompiler :)
Systems running gentoo :
Desktop, Laptop, ZOTAC AD-10 media-center, odroid-xu4 server / wLan-router
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Sat Feb 25, 2006 5:20 am

Treborius this is turning out to be a pain in the dinkus. I take it your useing portage-2.1_pre4-r1 ? Well I am and they have changed what is an acceptble atom. these are and can be used with an " =" , gcc, sys-devel/gcc-3.4.4, gcc-3.4.4.. But this is no longer an acceptabe atom with "=" sys-devel/gcc, but is fine with out the "=". So I put in a merge_tc function that doesnt use "emerge =". Unforgently that breaks the resume or failed build if its a TC item or list.
Joy Joy. Well =package-version works and shouldnt be abiguous.so I shall try changeing the list editing to one common format ,package-version..
An A-Z Index of the Linux BASH command line
Top
carpman
Advocate
Advocate
Posts: 2202
Joined: Thu Jun 20, 2002 2:42 pm
Location: London - UK

  • Quote

Post by carpman » Mon Feb 27, 2006 7:27 pm

Hello having problems with blocked packages:

Code: Select all

/root/updating/emwrap.sh -uDwp



                         Runnig emwrap.sh

 Files made by emwrap.sh are located in /tmp/emwrap. Feel free
 to "rm -r /tmp/emwrap"

1 of 10
sys-libs/timezone-data-2006b

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] sys-libs/timezone-data-2006b [2006a]
2 of 10
sys-apps/man-pages-2.23

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] sys-apps/man-pages-2.23 [2.22]
3 of 10
sys-devel/flex-2.5.33-r1

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] sys-devel/flex-2.5.33-r1 [2.5.4a-r6]
4 of 10
sys-libs/cracklib-2.8.5-r1

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] sys-libs/cracklib-2.8.5-r1 [2.8.5]
5 of 10
app-admin/fam-2.7.0-r4

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] app-admin/fam-2.7.0-r4 [2.7.0-r2]
6 of 10
sys-apps/hal-0.5.5.1-r3

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] sys-apps/hal-0.5.5.1-r3 [0.4.8]
7 of 10
sys-apps/pmount-0.9.6

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild  N    ] sys-apps/pmount-0.9.6
8 of 10
app-portage/ufed-0.40-r1

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] app-portage/ufed-0.40-r1 [0.36]
9 of 10
gnome-base/gnome-volume-manager-1.5.4

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] gnome-base/gnome-volume-manager-1.5.4 [1.2.2]
10 of 10
sys-apps/ivman-0.6.8

These are the packages that I would merge, in order:

Calculating dependencies  ...done!
[ebuild     U ] sys-apps/ivman-0.6.8 [0.5_pre2]
sys-fs/cryptsetup
(is
blocking
sys-fs/cryptsetup-luks-1.0.1-r1)
sys-fs/cryptsetup
(is
blocking
sys-fs/cryptsetup-luks-1.0.1-r1)
perl-core/Test-Simple-0.62
sys-kernel/gentoo-sources-2.6.15-r1
sys-apps/hal-0.5.5.1-r3
sys-apps/pmount-0.9.6
app-editors/nano-1.3.9
gnome-base/gnome-volume-manager-1.5.4
sys-apps/ivman-0.6.8
sys-process/psmisc-21.9
sys-libs/timezone-data-2006b
sys-apps/hal-0.5.5.1-r3
sys-apps/pmount-0.9.6
gnome-base/gnome-volume-manager-1.5.4
sys-apps/ivman-0.6.8
If i try regular emerge update i don't get this:

Code: Select all

 emerge -uDp world

These are the packages that I would merge, in order:

Calculating world dependencies                              ...done!
[ebuild     U ] sys-devel/binutils-2.16.1 [2.15.92.0.2-r7]
[ebuild     U ] sys-devel/gcc-3.4.5 [3.4.3.20050110-r2]
[ebuild     U ] sys-kernel/linux-headers-2.6.11-r2 [2.6.8.1-r2]
[ebuild     U ] sys-libs/timezone-data-2006b [2006a]
[ebuild     U ] sys-libs/glibc-2.3.6-r3 [2.3.5]
[ebuild     U ] sys-apps/man-pages-2.23 [2.22]
[ebuild     U ] sys-devel/flex-2.5.33-r1 [2.5.4a-r6]
[ebuild     U ] sys-libs/cracklib-2.8.5-r1 [2.8.5]
[ebuild     U ] app-admin/fam-2.7.0-r4 [2.7.0-r2]
[ebuild     U ] sys-apps/hal-0.5.5.1-r3 [0.4.8]
[ebuild  N    ] sys-apps/pmount-0.9.6
[ebuild     U ] app-portage/ufed-0.40-r1 [0.36]
[ebuild     U ] gnome-base/gnome-volume-manager-1.5.4 [1.2.2]
[ebuild     U ] sys-apps/ivman-0.6.8 [0.5_pre2]
Work Station - 64bit
Gigabyte GA X48-DQ6 Core2duo E8400
8GB GSkill DDR2-1066
SATA Areca 1210 Raid
BFG OC2 8800 GTS 640mb
--------------------------------
Notebook
Samsung Q45 7100 4gb
Top
Post Reply

729 posts
  • Page 16 of 30
    • Jump to page:
  • Previous
  • 1
  • …
  • 14
  • 15
  • 16
  • 17
  • 18
  • …
  • 30
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic