Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

torsmo issues

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
332 posts
  • Page 3 of 14
    • Jump to page:
  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 14
  • Next
Author
Message
dmr
n00b
n00b
User avatar
Posts: 10
Joined: Mon Aug 09, 2004 11:45 am
Location: Wroclaw, Poland
Contact:
Contact dmr
Website

  • Quote

Post by dmr » Sat Aug 21, 2004 7:35 pm

While I was reading through this discussion I thought of one thing that could be added.
This patch is not as revolutionary as the xft support (this one really made my day), it's tiny and consists of two lines, but gives me disproportionate satisfaction as it's my first one.

torsmo-cvs-setlocale.patch

It applies to the CVS version.
Torsmo speaks my language now. I see "sobota" instead of "Saturday". I hope you will find it practical. Maybe it could even be worth sending to the sourceforge project page.
Szymon
Top
nightm4re
Guru
Guru
User avatar
Posts: 519
Joined: Sun Jun 20, 2004 3:28 am
Location: Providence, RI, USA
Contact:
Contact nightm4re
Website

  • Quote

Post by nightm4re » Sat Aug 21, 2004 8:14 pm

dmr wrote:While I was reading through this discussion I thought of one thing that could be added.
This patch is not as revolutionary as the xft support (this one really made my day), it's tiny and consists of two lines, but gives me disproportionate satisfaction as it's my first one.

torsmo-cvs-setlocale.patch

It applies to the CVS version.
Torsmo speaks my language now. I see "sobota" instead of "Saturday". I hope you will find it practical. Maybe it could even be worth sending to the sourceforge project page.
great idea, i'd say defintely submit that.
Nitrogen - GtkMM based background setter/restorer, please test!
Minuslab | d.minuslab.net
Top
Dracnor
Guru
Guru
User avatar
Posts: 397
Joined: Sun Jun 08, 2003 3:33 pm
Location: Pennsylvania
Contact:
Contact Dracnor
Website

  • Quote

Post by Dracnor » Sun Aug 22, 2004 12:53 am

Hi,
I decided to try to write an ebuild for torsmo cvs after reading through this thread as some of the patches were for the cvs version. I included 3 patches cvs_addused.patch, cvs_mozilla.patch (which had a small error preventing it from compiling), and torsmo-cvs-setlocale.patch. Here is the ebuild I came up with (needs to go in your portage overlay):

Code: Select all

# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: $

ECVS_SERVER="cvs.sourceforge.net:/cvsroot/torsmo"
ECVS_MODULE="torsmo"
ECVS_TOP_DIR="${DISTDIR}/cvs-src/${PN}"
inherit debug flag-o-matic eutils cvs

DESCRIPTION="System monitor that sits in the corner of your desktop"
HOMEPAGE="http://torsmo.sourceforge.net/"

KEYWORDS="x86 ~ppc ~amd64"
SLOT="0"
LICENSE="BSD"
IUSE="mozilla"
 
RDEPEND="virtual/libc
        virtual/x11"
DEPEND="${RDEPEND}
        >=sys-devel/automake-1.4
        sys-devel/autoconf
        sys-apps/grep
        sys-apps/sed
        sys-devel/gcc"

S=${WORKDIR}/${ECVS_MODULE}

src_compile(){
	cd ${S}
	
	epatch ${FILESDIR}/cvs_addused.patch
	use mozilla && epatch ${FILESDIR}/cvs_mozilla.patch
	epatch ${FILESDIR}/torsmo-cvs-setlocale.patch

	./autogen.sh 
	./configure --host=${CHOST} --prefix=/usr --enable-xft || die "./configure failed"
	emake || die
}

src_install(){
	make DESTDIR=${D} \
	install || die "./install failed"
	dodoc ChangeLog AUTHORS README torsmorc.sample
}

pkg_postinst() {
        einfo 'default configuration file is "~/.torsmorc"'
        einfo "you can find a sample configuration file in"
        einfo "/usr/share/doc/${PF}/torsmorc.sample.gz"
        einfo
        einfo "Comment out temperature info lines if you have no kernel"
        einfo "support for it."
        einfo
        ewarn "Torsmo doesn't work with window managers that"
        ewarn "take control over root window such as Gnome's nautilus."
        ewarn "May not work on KDE until you exit (and then only breifly)"
        ewarn "for the above reason."
}
In the portage overlay directory I made a category app-admin, and then torsmo-cvs, and name the above ebuild torsmo-cvs-20040821.ebuild. Now you have to download the patches (the 3 I mentioned above, look in the previous posts) and put them in the "files" directory. Edit the cvs_mozilla.patch to change if (strchr(buf+21, '0') =! NULL) to if (strchr(buf+21, '0') != NULL) so that it will compile. Now just do ebuild torsmo-cvs-20040821.ebuild digest and then emerge it. Enjoy! Feel free to edit the ebuild to make it better and redistribute or contact me or to add patches, etc.

HTH
Registered Linux User #335028
Top
affinity
n00b
n00b
Posts: 66
Joined: Thu Jul 01, 2004 9:42 am

  • Quote

Post by affinity » Sun Aug 22, 2004 3:29 am

You should probably use torsmo-mozilla.patch instead of cvs_mozilla.patch.
Top
Dracnor
Guru
Guru
User avatar
Posts: 397
Joined: Sun Jun 08, 2003 3:33 pm
Location: Pennsylvania
Contact:
Contact Dracnor
Website

  • Quote

Post by Dracnor » Sun Aug 22, 2004 4:08 am

Thanks affinity. That applies cleanly. You can just modify the line

Code: Select all

use mozilla && epatch ${FILESDIR}/cvs_mozilla.patch 
to

Code: Select all

use mozilla && epatch ${FILESDIR}/torsmo-mozilla.patch
in the src_compile() funtion and re-digest and emerge. It worked on my system no problem.
Registered Linux User #335028
Top
affinity
n00b
n00b
Posts: 66
Joined: Thu Jul 01, 2004 9:42 am

  • Quote

Post by affinity » Sun Aug 22, 2004 1:09 pm

I edited the ebuild to make it install as /usr/bin/torsmo-cvs instead of /usr/bin/torsmo.
I also added 2 new use flags and made some other minor changes.

Code: Select all

# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils cvs

ECVS_SERVER="cvs.sourceforge.net:/cvsroot/torsmo"
ECVS_MODULE="torsmo"
ECVS_TOP_DIR="${DISTDIR}/cvs-src/${PN}"

DESCRIPTION="System monitor that sits in the corner of your desktop"
HOMEPAGE="http://torsmo.sourceforge.net/"

KEYWORDS="x86 ppc ~amd64"
SLOT="0"
LICENSE="BSD"
IUSE="mozilla xft seti"

RDEPEND="virtual/libc
        virtual/x11"
DEPEND="${RDEPEND}
        >=sys-devel/automake-1.4
        sys-devel/autoconf
        sys-apps/grep
        sys-apps/sed
        sys-devel/gcc"
S=${WORKDIR}/${ECVS_MODULE}

src_unpack() {
    cvs_src_unpack
    cd ${S}

    epatch ${FILESDIR}/cvs_addused.patch
    use mozilla && epatch ${FILESDIR}/torsmo-mozilla.patch
    epatch ${FILESDIR}/torsmo-cvs-setlocale.patch

    sed -e 's/CONF(xftfont)/CONF("xftfont")/' -i torsmo.c
}

src_compile() {
   ./autogen.sh
   econf `use_enable seti` \
         `use_enable xft` || die "./configure failed"
   emake || die
}

src_install() {
   make DESTDIR=${D} install || die "make install failed"
   mv ${D}/usr/bin/torsmo ${D}/usr/bin/torsmo-cvs
   mv ${D}/usr/share/man/man1/torsmo.1 ${D}/usr/share/man/man1/torsmo-cvs.1
   dodoc ChangeLog AUTHORS README torsmorc.sample
}

pkg_postinst() {
        einfo 'default configuration file is "~/.torsmorc"'
        einfo "you can find a sample configuration file in"
        einfo "/usr/share/doc/${PF}/torsmorc.sample.gz"
        einfo
        einfo "Comment out temperature info lines if you have no kernel"
        einfo "support for it."
        einfo
        ewarn "Torsmo doesn't work with window managers that"
        ewarn "take control over root window such as Gnome's nautilus."
        ewarn "May not work on KDE until you exit (and then only briefly)"
        ewarn "for the above reason."
}
Last edited by affinity on Thu Nov 11, 2004 2:38 pm, edited 2 times in total.
Top
Paranoid
Apprentice
Apprentice
User avatar
Posts: 290
Joined: Wed Jan 07, 2004 1:11 am
Location: Portland, ME

  • Quote

Post by Paranoid » Sun Aug 22, 2004 4:09 pm

Great work people, the XFT support is nice! I love this app. One thing I haven't been able to accomplish and not sure it can be done at this stage is applying a formula to the i2c sensors data before it's displayed - IE. my fan speed read by i2c must be divided by 2 to get the correct value. Is there any way to do this?
A paranoid is someone who knows a little of what's going on.
William S. Burroughs
Top
dmr
n00b
n00b
User avatar
Posts: 10
Joined: Mon Aug 09, 2004 11:45 am
Location: Wroclaw, Poland
Contact:
Contact dmr
Website

  • Quote

Post by dmr » Sun Aug 22, 2004 4:39 pm

What comes to my mind right now is a shell script, eg.

Code: Select all

#!/bin/sh
FAN=`cat /sys/bus/i2c/devices/2-0290/fan1_input`
FAN_REAL=$((FAN/2))
echo $FAN_REAL;
inserted using exec, but eventually I guess it's not very elegant and effective (consumes resources).

Formulas seem interesting IMHO. It could elimate problems with data presentation (percentages). Question is: what's the limit for torsmo's features?
Szymon
Top
killfire
l33t
l33t
User avatar
Posts: 618
Joined: Sat Oct 04, 2003 11:48 pm
Contact:
Contact killfire
Website

  • Quote

Post by killfire » Tue Aug 24, 2004 7:10 pm

sorry about the bug in my patch. ive updated it, but ive been out of town for a few days.

i woudl suggest, for the fan issues, instead of a script, just patch the main source (correction, sources, theyve finally split it :)....

i would try to do this, but i dont have the sensors to test it.

my suggestion, is open up either torsmo.c or linux.c (get a copy of the cvs version, definately), im not sure which one it is, and find the line where they return the value, and just change the return to:
(what they had)/2

it should be pretty simple, and cleaner and less cpu using than a script.

torsmo.c is broken up into three (i think) main parts for each function. find the last one, it holds the displayed data.... i can try to look into it, but i really dont think ill get anywhere, because i cant test it.

dmr:
the limit is what you make it. in a less general, rediculous answer, dig into the code, and see how your ideas can be implemented, it may be easier than you think. the fact that we changed (ok, it hasnt been all that much) what we've changed, very easily, implies that other changes could be implemented as well.

give us a beta of what your thinking of, and then maybe we can all try to hack something up.

right now, i want double buffering! (the redraws are getting to be annoying)

killfire
my website, built in HAppS: http://dbpatterson.com
an art (oil painting) website I built a pure python backend for: http://www.lydiajohnston.com
Top
Hayl
Guru
Guru
User avatar
Posts: 442
Joined: Tue Jan 28, 2003 3:36 am
Location: Calgary, Alberta, Canada
Contact:
Contact Hayl
Website

  • Quote

Post by Hayl » Fri Aug 27, 2004 12:12 pm

Is there a cli-based app that will check IMAP mailboxes so I can have it pipe its self back to torsmo?
"I do not fear computers. I fear lack of them." - Isaac Asimov
Top
killfire
l33t
l33t
User avatar
Posts: 618
Joined: Sat Oct 04, 2003 11:48 pm
Contact:
Contact killfire
Website

  • Quote

Post by killfire » Fri Aug 27, 2004 3:49 pm

i would suggest that you get an app like fetchmail to run on a cron script, and then point torsmo to the mailbox.

or if you use a mail client (like thunderbird, or really anything that fetchs its own mail) then you can have itt running in another desktop and automatically check your mail, and then point torsmo to your mailbox file.

i think that would be cleaner than having torsmo do it with an execi, especially because then you only have to hit the server once, instead of twice (otherwise you would check it, and then once you got an email you would have to fetch it)....


killfire
my website, built in HAppS: http://dbpatterson.com
an art (oil painting) website I built a pure python backend for: http://www.lydiajohnston.com
Top
dmr
n00b
n00b
User avatar
Posts: 10
Joined: Mon Aug 09, 2004 11:45 am
Location: Wroclaw, Poland
Contact:
Contact dmr
Website

  • Quote

Post by dmr » Fri Aug 27, 2004 4:52 pm

Maybe this isn't a point, but I've been struggling with Xft font encoding for some time and I give up. The setlocale patch is half good when a word consists of the i18n letters.
When I type in GIMP these characters are displayed properly, but how do I tell torsmo to use iso8559-2 instead of the default iso88559-1?
Szymon
Top
Hayl
Guru
Guru
User avatar
Posts: 442
Joined: Tue Jan 28, 2003 3:36 am
Location: Calgary, Alberta, Canada
Contact:
Contact Hayl
Website

  • Quote

Post by Hayl » Sun Aug 29, 2004 11:05 pm

killfire wrote:i would suggest that you get an app like fetchmail to run on a cron script, and then point torsmo to the mailbox.

or if you use a mail client (like thunderbird, or really anything that fetchs its own mail) then you can have itt running in another desktop and automatically check your mail, and then point torsmo to your mailbox file.

i think that would be cleaner than having torsmo do it with an execi, especially because then you only have to hit the server once, instead of twice (otherwise you would check it, and then once you got an email you would have to fetch it)....


killfire
i dont fetch my mail... so that won't work.

it is left on my IMAP server.
"I do not fear computers. I fear lack of them." - Isaac Asimov
Top
Paranoid
Apprentice
Apprentice
User avatar
Posts: 290
Joined: Wed Jan 07, 2004 1:11 am
Location: Portland, ME

  • Quote

Post by Paranoid » Sun Aug 29, 2004 11:52 pm

Thanks for the info Killfire, sounds easy enough. Will check it out tomorrow.
A paranoid is someone who knows a little of what's going on.
William S. Burroughs
Top
killfire
l33t
l33t
User avatar
Posts: 618
Joined: Sat Oct 04, 2003 11:48 pm
Contact:
Contact killfire
Website

  • Quote

Post by killfire » Mon Aug 30, 2004 12:50 am

Hayl wrote:\

i dont fetch my mail... so that won't work.

it is left on my IMAP server.

sorry, my mistake.

fetchmail has a -c option, which means just check it, dont fetch, which should work for you, but fetchmail may seem a bit heavy for what your trying to do. let me know if that works out.

killfire
my website, built in HAppS: http://dbpatterson.com
an art (oil painting) website I built a pure python backend for: http://www.lydiajohnston.com
Top
dmr
n00b
n00b
User avatar
Posts: 10
Joined: Mon Aug 09, 2004 11:45 am
Location: Wroclaw, Poland
Contact:
Contact dmr
Website

  • Quote

Post by dmr » Tue Aug 31, 2004 5:04 pm

This one works fine for me (tribute to Windfall):

Code: Select all

#!/bin/sh
status=`fetchmail -c`
total=$( echo "$status" | grep -o "^[0-9]*" - )
seen=$( echo "$status" | sed "s/^[0-9]*[^0-9]*\([0-9]*\).*/\1/" )
new=$(( $total - $seen ))
You can echo the $new variable and put it with execi to the torsmo's output. Don't forget to add 'options keep' to the .fetchmailrc. At least I want to keep them ;)
Szymon
Top
killfire
l33t
l33t
User avatar
Posts: 618
Joined: Sat Oct 04, 2003 11:48 pm
Contact:
Contact killfire
Website

  • Quote

Post by killfire » Tue Aug 31, 2004 5:20 pm

affinity wrote:I edited the ebuild to make it install as /usr/bin/torsmo-cvs instead of /usr/bin/torsmo.
I also added 2 new use flags and made some other minor changes.

Code: Select all

**snip**
KEYWORDS="x86 ~ppc ~amd64"
**snip**
if you want to change it to KEYWORDS="x86 ppc ~amd64", i can confirm that it works on ppc.

question:

have you submitted the ebuild upstream?

killfire
my website, built in HAppS: http://dbpatterson.com
an art (oil painting) website I built a pure python backend for: http://www.lydiajohnston.com
Top
affinity
n00b
n00b
Posts: 66
Joined: Thu Jul 01, 2004 9:42 am

  • Quote

Post by affinity » Tue Aug 31, 2004 6:26 pm

killfire wrote:if you want to change it to KEYWORDS="x86 ppc ~amd64", i can confirm that it works on ppc.
Done.
killfire wrote:have you submitted the ebuild upstream?
No.
Top
Paranoid
Apprentice
Apprentice
User avatar
Posts: 290
Joined: Wed Jan 07, 2004 1:11 am
Location: Portland, ME

  • Quote

Post by Paranoid » Wed Sep 01, 2004 1:43 am

killfire (re. proper fan speed),

After browsing the source & checking out some of the patches that have been added to the source code this is going to be a bigger problem than I thought. A patch that has been added to the source-I2C divisor is majorly flawed. I'm not going to go into too much detail but if you look at the patch on the project page and check out/have knowledge of lm_sensors fan divisors this is so wrong. So basically that patch needs to be reversed. My plan is to add a variable in the .torsmorc file to compute proper fan speed. Not sure how I'm going to do this yet as I'm no programmer but any ideas would be appreciated. Right now my head hurts :wink: so I'm going to take a break until tomorrow. Time to buy a book on C...
A paranoid is someone who knows a little of what's going on.
William S. Burroughs
Top
killfire
l33t
l33t
User avatar
Posts: 618
Joined: Sat Oct 04, 2003 11:48 pm
Contact:
Contact killfire
Website

  • Quote

Post by killfire » Wed Sep 01, 2004 2:02 am

Paranoid wrote:killfire (re. proper fan speed),

After browsing the source & checking out some of the patches that have been added to the source code this is going to be a bigger problem than I thought. A patch that has been added to the source-I2C divisor is majorly flawed. I'm not going to go into too much detail but if you look at the patch on the project page and check out/have knowledge of lm_sensors fan divisors this is so wrong. So basically that patch needs to be reversed. My plan is to add a variable in the .torsmorc file to compute proper fan speed. Not sure how I'm going to do this yet as I'm no programmer but any ideas would be appreciated. Right now my head hurts :wink: so I'm going to take a break until tomorrow. Time to buy a book on C...
reversing the patch should be as easy as getting a copy of the patch and:

Code: Select all

patch -R <./patch
in the directory of torsmo-cvs(you are using the cvs version right?)

also look at this if youd like. im not even too sure which variable it is you are calling, but if it is i2c, then this patch will split all the return values. something similar to this should do what you need, but as i do not have sensors to test if the patch will work, im not going to be much help.

Code: Select all

--- torsmo.c    2004-08-30 20:07:15.000000000 -0400
+++ torsmo_new.c        2004-08-31 21:53:43.476471640 -0400
@@ -1005,9 +1005,9 @@
       r = get_i2c_info(obj->data.i2c.fd, obj->data.i2c.arg);
 
       if (r >= 100.0 || r == 0)
-        snprintf(p, n, "%d", (int) r);
+        snprintf(p, n, "%d", ((int) r)/2);
       else
-        snprintf(p, n, "%.1f", r);
+        snprintf(p, n, "%.1f", r/2);
     }
     OBJ(kernel) {
       snprintf(p, n, "%s", cur->uname_s.release);
just patch <./i2c.patch in the torsmo-cvs directory (this is a patch against cvs sources, but mine may be a bit stale so sorry if its off by a couple lines, shouldnt matter though). also, on the patch, the first values are not going to be all that acccurate, as its ints/2 (and ints cannot hold decimal values) but it should be close enough.

writing a new variable is not that complicated.

there are three places in torsmo.c that it needs to be mentioned, follow the pattern for the rest and it should be pretty straioghtforward. also, if you are going to be making new functions, putting them in linux.c (i think) would be wise, and make sure to put the prototypes in torsmo.h

--killfire
my website, built in HAppS: http://dbpatterson.com
an art (oil painting) website I built a pure python backend for: http://www.lydiajohnston.com
Top
Hayl
Guru
Guru
User avatar
Posts: 442
Joined: Tue Jan 28, 2003 3:36 am
Location: Calgary, Alberta, Canada
Contact:
Contact Hayl
Website

  • Quote

Post by Hayl » Wed Sep 01, 2004 2:21 pm

dmr wrote:This one works fine for me (tribute to Windfall):

Code: Select all

#!/bin/sh
status=`fetchmail -c`
total=$( echo "$status" | grep -o "^[0-9]*" - )
seen=$( echo "$status" | sed "s/^[0-9]*[^0-9]*\([0-9]*\).*/\1/" )
new=$(( $total - $seen ))
You can echo the $new variable and put it with execi to the torsmo's output. Don't forget to add 'options keep' to the .fetchmailrc. At least I want to keep them ;)
^ This works, thanks.
"I do not fear computers. I fear lack of them." - Isaac Asimov
Top
Paranoid
Apprentice
Apprentice
User avatar
Posts: 290
Joined: Wed Jan 07, 2004 1:11 am
Location: Portland, ME

  • Quote

Post by Paranoid » Wed Sep 01, 2004 5:32 pm

Thanks for the advice killfire, working on it now...
A paranoid is someone who knows a little of what's going on.
William S. Burroughs
Top
CybeRDukE
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 92
Joined: Tue Jul 16, 2002 4:36 pm

  • Quote

Post by CybeRDukE » Wed Sep 01, 2004 6:07 pm

i really agree with you, torsmo is great!

and so i wrote a little patch that reads the temperature-sensors of nvidia-based graphics cards. maybe someone wants to try it and give me some feedback. it's available at torsmos's project page.
Top
syscrash
Guru
Guru
User avatar
Posts: 541
Joined: Mon Apr 14, 2003 12:43 am
Contact:
Contact syscrash
Website

  • Quote

Post by syscrash » Thu Sep 02, 2004 4:06 pm

Could anybody write up a patch so that torsmo can have a background colour? It would be much appreciated, thanks :P
(I don't know C)
Play ET? Come by #gentoo.et on freenode!
http://syscrash.ca
Top
killfire
l33t
l33t
User avatar
Posts: 618
Joined: Sat Oct 04, 2003 11:48 pm
Contact:
Contact killfire
Website

  • Quote

Post by killfire » Thu Sep 02, 2004 4:56 pm

syscrash2k wrote:Could anybody write up a patch so that torsmo can have a background colour? It would be much appreciated, thanks :P
(I don't know C)
I have a feeling that would take a lot of doing, as torsmo as it is now, is meant to draw text on the root, it doesnt do anything to do with backgrounding (AFAIK).

heres an ugly hack toget what i think your looking for:
(ill edit and post a screenie if i can):
open up you background with gimp, and draw a solid color block (or it could be partially transparent) in the spot where torsmo resides, and then it will look like it has a background color :)
[EDIT]
heres a shot, its kind of messy, and if you tried harder, you could mess with rounded corners and all that:
http://www.sover.net/~ljohnstn/fake_torsmo_bg.jpg
but if i could come up with that in five minutes, im sure you coud hack something up to your liking. btw, i used a blue box at 30 percent opacity for this shot.
[/EDIT]

just my two cents.

-killfire
Last edited by killfire on Thu Sep 02, 2004 5:07 pm, edited 1 time in total.
my website, built in HAppS: http://dbpatterson.com
an art (oil painting) website I built a pure python backend for: http://www.lydiajohnston.com
Top
Post Reply

332 posts
  • Page 3 of 14
    • Jump to page:
  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 14
  • Next

Return to “Desktop Environments”

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