Forums

Skip to content

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

Edirol FA-66

Help with creation, editing, or playback of sounds, images, or video. Amarok, audacious, mplayer, grip, cdparanoia and anything else that makes a sound or plays a video.
Post Reply
Advanced search
14 posts • Page 1 of 1
Author
Message
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

Edirol FA-66

  • Quote

Post by Dementia » Sat Oct 18, 2008 6:48 pm

Hello,

I've recently purchased an Edirol FA-66 and am trying to decide just how I should go about setting it up for my specific application.

I'm at a bit of a loss as ALSA doesn't appear to officially support the device, yet people seem to be getting this thing to work--however the documentation remains unclear.

I'd need the basic functions of playback and the ability to share the device with audio applications running simultaneously (Renoise, Ardour, Rosegarden, Audacity, etc.) in a manner that will allow complete interconnectivity--I've read that this can be accomplished with jack and ffado in some configuration.

So, I ask, where might I start? Can anyone reflect on a similar situation?

Regards.
Top
poly_poly-man
Advocate
Advocate
User avatar
Posts: 2477
Joined: Wed Dec 06, 2006 9:59 pm
Location: RIT, NY, US
Contact:
Contact poly_poly-man
Website

  • Quote

Post by poly_poly-man » Sun Oct 19, 2008 12:43 pm

pm aidy - he's done it before.

look up JACK to get started
iVBORw0KGgoAAAANSUhEUgAAA

avatar: new version of logo - see [topic]838248[/topic]. Potentially still a WiP.
Top
aidy
l33t
l33t
Posts: 915
Joined: Thu Apr 07, 2005 8:46 am

  • Quote

Post by aidy » Sun Oct 19, 2008 8:31 pm

You can't make firewire audio devices work with pure alsa, you need to use jack and route alsa audio to jack.

So what you need is this:
the FFADO drivers for JACK
the jack plugin for alsa
an .asoundrc; here's mine:

Code: Select all

pcm.!default {
	type plug
	slave { pcm "jack" }
}

pcm.jack {
	type jack
	playback_ports {
		0 "system:playback_1"
		1 "system:playback_2"
	}
	capture_ports {
		0 "system:capture_1"
		1 "system:capture_2"
	}
}
Flash audio somehow doesn't work with the jack plugin, so what I did is connect the on-board audio to my FA-66's 3+4 inputs - which is a stupid hack but gets the job done. (I actually don't have an .asoundrc on my normal user, I just set up every program to use jack: mpd, mplayer, vlc, ...)

EDIT: you'll also need a realtime kernel if you want to use JACK reasonably well. Read http://gentoo-wiki.com/HOWTO_Jack (currently down, and might be a bit outdated too)
Top
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

  • Quote

Post by Dementia » Sat Oct 25, 2008 1:41 am

Sorry for the delay, but I haven't had much time to play with gentoo; midterms.

Apparently, the FFADO drivers aren't in portage and I'm also not quite sure how to setup ALSA when their documentation is written for people using PCI sound cards.

I was really hoping that gentoo-wiki.com would be back to normal by now as I'm a bit more lost than I might have admitted in the original post.

UPDATE:

Making use of the steps shown here, I've now compiled and installed the FFADO drivers from source.
Top
shickapooka800
Guru
Guru
User avatar
Posts: 304
Joined: Sun Dec 05, 2004 11:13 pm
Location: no

  • Quote

Post by shickapooka800 » Sat Oct 25, 2008 6:10 am

as for the realtime kernel, I would use layman to pull the pro-audio overlay and then emerge rt-sources. go hear: http://proaudio.tuxfamily.org/wiki/inde ... =Main_Page and follow the instructions for configuring rt-sources. also you can remerge pam, which should pull it from the overlay instead of normal portage, and the ebuild will give you a working /etc/security/limits.conf to start with for realtime audio.
I would recommend grabbing the latest rt-sources that the overlay offers. if you end up with something pre 2.6.23 (or around there) you will run into some issues with other drivers (possibly nvidia).
All I know is that the default rt-sources is a 2.6.18 kernel, which is not a terribly good idea if you are trying to use other, more up to date kernel modules.
Top
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

  • Quote

Post by Dementia » Sat Oct 25, 2008 7:33 pm

This is spit out every time I try to use "qjackctl":

Code: Select all

14:27:21.876 Patchbay deactivated.
14:27:21.881 Statistics reset.
14:27:21.883 Could not open ALSA sequencer as a client. ALSA MIDI patchbay will be not available.
ALSA lib seq_hw.c:457:(snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
14:27:38.383 Startup script...
14:27:38.383 artsshell -q terminate
sh: artsshell: command not found
14:27:38.784 Startup script terminated with exit status=32512.
14:27:38.784 JACK is starting...
14:27:38.784 /usr/bin/jackd -R -dfirewire -r48000 -p1024 -n3
14:27:38.786 JACK was started with PID=11985.
jackd: unknown driver 'firewire'
14:27:38.788 JACK was stopped with exit status=1.
14:27:38.788 Post-shutdown script...
14:27:38.788 killall jackd
jackd: no process killed
14:27:39.190 Post-shutdown script terminated with exit status=256.
14:27:40.812 Could not connect to JACK server as client. - Overall operation failed. - Unable to connect to server. Please check the messages window for more info.
I'm currently trying to figure out why the firewire (FFADO) drivers aren't being found.

What should I make of the ALSA errors near the top?
Top
aidy
l33t
l33t
Posts: 915
Joined: Thu Apr 07, 2005 8:46 am

  • Quote

Post by aidy » Sat Oct 25, 2008 8:16 pm

ignore the alsa errors, they don't matter much
don't know exactly what do to about the firewire driver error
you did follow this right? http://subversion.ffado.org/wiki/Instal ... FromSource
Top
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

  • Quote

Post by Dementia » Fri Oct 31, 2008 12:24 am

I'm currently on the "Compile and install FFADO" page.

Code: Select all

scons DEBUG=yes
Leaves me with:

Code: Select all

scons: Reading SConscript files ...
Checking for a working C-compiler (cached) yes
Checking for a working C++-compiler (cached) yes
Checking for pkg-config (at least version 0.0.0)... (cached) yes
Checking for C header file expat.h... (cached) yes
Checking for XML_ExpatVersion() in C library expat... (cached) yes
Checking for libraw1394 (1.3.0 or higher)...    (cached) yes
Checking for libavc1394 (0.5.3 or higher)...    (cached) yes
Checking for libxml++-2.6 (2.13.0 or higher)...         (cached) yes
Checking for dbus-1 (1.0 or higher)...  (cached) yes
Checking for libiec61883 (1.1.0 or higher)...   (cached) yes
Checking for lrint(3.2) in C library m... (cached) yes
Checking for lrintf(3.2) in C library m... (cached) yes
Checking whether 'which pyuic' executes (cached) yes
Checking for the python module 'dbus' (cached) no
Checking whether 'which pyuic4' executes (cached) yes
Checking for the python module 'dbus' (cached) no

        I couldn't find all the prerequisites ('pyuic' / 'pyuic4' and the python-modules 'dbus' and
        'qt', the packages could be named like dbus-python and PyQt) to build the mixer.
        Therefor the mixer won't get installed.
        
Checking for alsa (1.0.0 or higher)...  (cached) yes
 ALSA found, building ALSA plugin.
Trying to find the system triple: (cached) i686-pc-linux-gnu
Doing a DEBUG build
Detected DIST_TARGET = i686
Doing a 32-bit build
scons: done reading SConscript files.
scons: Building targets ...
scons: `src' is up to date.
scons: `support' is up to date.
scons: `tests' is up to date.
scons: done building targets.
I thought that the middle error was negligible at first, but now I can't help but wonder if the jackd ./configure output isn't somehow related.

Code: Select all

jack-audio-connection-kit 0.115.1 :

| Build with ALSA support............................... : true
| Build with old FireWire (FreeBob) support............. : false
| Build with new FireWire (FFADO) support............... : false
| Build with OSS support................................ : true
| Build with Sun audio support.......................... : false
| Build with CoreAudio support.......................... : false
| Build with PortAudio support.......................... : false
| Build with NetJack support............................ : false
| Compiler optimization flags........................... : -DREENTRANT -O3 -fomit-frame-pointer -ffast-math -funroll-loops -march=i686 -mmmx -msse -mfpmath=sse
| Compiler full flags................................... : -I$(top_srcdir)/config -I$(top_srcdir) -I$(top_srcdir) -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -O2
| Install dir for libjack + backends.................... : ${exec_prefix}/lib/jack
|
| Default driver backend................................ : "alsa"
| Shared memory interface............................... : "System V"
| IPC Temporary directory............................... : /dev/shm
| Install prefix........................................ : /usr/local
| Default tmp dir....................................... : /dev/shm
Apparently, jack can't locate libffado while slocate reveals:

Code: Select all

/usr/local/lib/libffado.so
/usr/local/include/libffado
/usr/local/include/libffado/ffado.h
Is that not for what it would be looking? Does this boil down to correctly pointing to the FFADO installation?
Top
aidy
l33t
l33t
Posts: 915
Joined: Thu Apr 07, 2005 8:46 am

  • Quote

Post by aidy » Fri Oct 31, 2008 2:35 pm

what happens if you explicitly enable ffado when doing ./configure? (see ./configure --help)
Top
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

  • Quote

Post by Dementia » Sat Nov 01, 2008 1:49 am

Doesn't appear to have altered anything.

Code: Select all

checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by gcc... /usr/i686-pc-linux-gnu/bin/ld
checking if the linker (/usr/i686-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for /usr/i686-pc-linux-gnu/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... gfortran
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran accepts -g... yes
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking for correct ltmain.sh version... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/i686-pc-linux-gnu/bin/ld
checking if the linker (/usr/i686-pc-linux-gnu/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking whether the gfortran linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether ln -s works... yes
checking whether byte ordering is bigendian... no
checking platform dependencies... checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking /usr/include/nptl/pthread.h usability... no
checking /usr/include/nptl/pthread.h presence... no
checking for /usr/include/nptl/pthread.h... no
checking for getopt_long... yes
checking for gethostent... yes
checking for setsockopt... yes
checking for connect... yes
checking for dlopen... no
checking for dlopen in -ldl... yes
checking for pthread_create... no
checking for pthread_create in -lpthread... yes
checking for on_exit... yes
checking for atexit... yes
checking for posix_memalign... yes
checking for sin in -lm... yes
checking for clock_gettime... no
checking for clock_gettime in -lrt... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking for mlockall... yes
checking shared memory support... System V shmget().
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
checking whether we can compile MMX code... yes
yes
checking whether we can compile SSE code... yes
checking for pthread_barrier_init in -lpthread... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for SNDFILE... yes
checking for SAMPLERATE... no
checking CoreAudio/CoreAudio.h usability... no
checking CoreAudio/CoreAudio.h presence... no
checking for CoreAudio/CoreAudio.h... no
checking sys/soundcard.h usability... yes
checking sys/soundcard.h presence... yes
checking for sys/soundcard.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking for LIBFREEBOB... no
no
checking for LIBFFADO... no
no
checking for ALSA... yes
checking for readline in -lreadline... yes
checking readline/chardefs.h usability... yes
checking readline/chardefs.h presence... yes
checking for readline/chardefs.h... yes
checking for doxygen... false
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config/Makefile
config.status: creating config/cpu/Makefile
config.status: creating config/cpu/alpha/Makefile
config.status: creating config/cpu/cris/Makefile
config.status: creating config/cpu/generic/Makefile
config.status: creating config/cpu/i386/Makefile
config.status: creating config/cpu/i486/Makefile
config.status: creating config/cpu/ia64/Makefile
config.status: creating config/cpu/m68k/Makefile
config.status: creating config/cpu/mips/Makefile
config.status: creating config/cpu/powerpc/Makefile
config.status: creating config/cpu/s390/Makefile
config.status: creating config/os/Makefile
config.status: creating config/os/generic/Makefile
config.status: creating config/os/gnu-linux/Makefile
config.status: creating config/os/macosx/Makefile
config.status: creating config/sysdeps/Makefile
config.status: creating doc/Makefile
config.status: creating doc/reference.doxygen
config.status: creating drivers/Makefile
config.status: creating drivers/alsa/Makefile
config.status: creating drivers/alsa-midi/Makefile
config.status: creating drivers/dummy/Makefile
config.status: creating drivers/oss/Makefile
config.status: creating drivers/sun/Makefile
config.status: creating drivers/portaudio/Makefile
config.status: creating drivers/coreaudio/Makefile
config.status: creating drivers/freebob/Makefile
config.status: creating drivers/firewire/Makefile
config.status: creating drivers/netjack/Makefile
config.status: creating example-clients/Makefile
config.status: creating tools/Makefile
config.status: creating jack.pc
config.status: creating jack.spec
config.status: creating jack/Makefile
config.status: creating jack/version.h
config.status: creating jackd/Makefile
config.status: creating jackd/jackd.1
config.status: creating libjack/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands

jack-audio-connection-kit 0.115.1 :

| Build with ALSA support............................... : true
| Build with old FireWire (FreeBob) support............. : false
| Build with new FireWire (FFADO) support............... : false
| Build with OSS support................................ : true
| Build with Sun audio support.......................... : false
| Build with CoreAudio support.......................... : false
| Build with PortAudio support.......................... : false
| Build with NetJack support............................ : false
| Compiler optimization flags........................... : -DREENTRANT -O3 -fomit-frame-pointer -ffast-math -funroll-loops -march=i686 -mmmx -msse -mfpmath=sse
| Compiler full flags................................... : -I$(top_srcdir)/config -I$(top_srcdir) -I$(top_srcdir) -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -O2
| Install dir for libjack + backends.................... : ${exec_prefix}/lib/jack
|
| Default driver backend................................ : "alsa"
| Shared memory interface............................... : "System V"
| IPC Temporary directory............................... : /dev/shm
| Install prefix........................................ : /usr/local
| Default tmp dir....................................... : /dev/shm
Top
aidy
l33t
l33t
Posts: 915
Joined: Thu Apr 07, 2005 8:46 am

  • Quote

Post by aidy » Sat Nov 01, 2008 1:56 pm

okay and what happens if you install libffado to /usr instead of /usr/local?
Top
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

  • Quote

Post by Dementia » Sun Nov 09, 2008 2:48 am

Alright, that worked. Jack now starts with ffado support.

Glad to to finally see some progress with my time so limited.

Now what?
Top
Dementia
n00b
n00b
User avatar
Posts: 18
Joined: Sat Nov 04, 2006 3:33 am

  • Quote

Post by Dementia » Sun Nov 09, 2008 7:52 pm

I now have decent playback capabilities; I can probably attribute what bit of noise there is to unbalanced, Radioshack TRS cables.

And yes, flash doesn't appear to work with jack so far as I can tell. Did you find that it wasn't possible or that it'd be too difficult?

Thanks aidy.

Regards,
Dementia
Top
aidy
l33t
l33t
Posts: 915
Joined: Thu Apr 07, 2005 8:46 am

  • Quote

Post by aidy » Sun Nov 09, 2008 8:54 pm

afaik it's simply not possible... they did something pretty wierd with their alsa calls I guess

there are some idiots that route alsa to pulseaudio and then pulseaudio to jack to make their flash work :D
Top
Post Reply

14 posts • Page 1 of 1

Return to “Multimedia”

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