View Full Version : some wiki's for fedora (gnome 2.5, kernel 2.6, buid rpm etc)
lupus
14th December 2003, 05:28 PM
<quote hoster
Okay, I have restored the wiki and the homepage (freax.be) on the same
server, still is this location very temporary.
The move of the domain is still planned within two weeks and it's
possible that both the wiki and the domain can go down at any time
between now and two weeks.
So if you have information (from the wiki) or the entire domain that you
want to keep for sure: get it now :)
>
Fedora core 1 with kernel 2.6-test:
http://www.freax.be/wiki/index.php/Fedora%20core%201%20with%20kernel%202.6-test
(mirror)
you have to copy paste the url in mozilla or IE, clicking on the link won't work
http://fullo.altervista.org/phpwiki/index.php/FedoraKernel2.6
Fedora core 1 packages:
http://www.freax.be/wiki/index.php/Fedora%20core%201%20packages
Gnome 2.5 on Fedora core 1:
http://www.freax.be/wiki/index.php/Gnome%202.5%20on%20Fedora%20core%201
(mirror) you have to copy paste the url in mozilla or IE, clicking on the link won't work
http://fullo.altervista.org/phpwiki/index.php/FedoraGarnome
NEW:
how to make rpm's for fedora:
http://www.freax.be/index.php/Building%20rpm%27s%20for%20Fedora%20core%201
Enjoy.
Feedback is always welcome.
prisen
14th December 2003, 07:53 PM
wow, nice wiki's, that should save people quite a bit of time.
Avatraxiom
23rd December 2003, 06:27 AM
Those look nice! :-)
-M
lupus
30th December 2003, 12:45 AM
enjoy
ps in the week when the new Garnome is released I will update the guide that everyone can compile gnome 2.5 ithout a problem :)
lupus
31st December 2003, 02:06 AM
I had hoped that someone could at an section to the wiki for
- NVIDIA nforce
- NVIDIA gfx
- ATI gfx
for kernel 2.6 this would help a lot off people
lupus
11th January 2004, 01:15 PM
My free hosting stopped.
So until I find a new host, the wiki's will be offline
fullo
12th January 2004, 01:06 AM
lupus,
i can offer some space on my wiki if you like :)
http://fullo.altervista.org/phpwiki/
ciuaz fullo
pejcao
17th January 2004, 01:49 AM
all of those URLs give me 404 :(
lupus
17th January 2004, 01:42 PM
this is an old backup from the wiki if someone can put it on his phpwiki page I'll be happy to update it.
it's an sql backup:
INSERT INTO version VALUES (839,22,1071156486,0,'!!INTROnnThis is a little guide how to configure fedora core 1 with kernel 2.6-test and ALSA.nnn!!INSTALLATIONnn!Install fedora core 1nnEasiest and cheapest way to get it, is to download it at:nn* http://fedora.redhat.com/download/nnBurn the 3 cd's (you won't need the source cd's) and install them.nn!Install kernel 2.6-test*nnYou can download an unofficial rpm from:nn* http://people.redhat.com/arjanv/2.5/RPMS.kernel/nnOnly download kernel + source the rest is older then the packages delivered with fedora!nnInstall with:nn<?plugin Codenrpm -i kernel-2.6.0-0.test*.rpmnrpm -i kernel-source-2.6.0-0.test*.rpmn?>nnUse -i instead of -Uhv so you can always switch back to the standard fedora kernel.nnNow you have installed the kernel, you have to remove /etc/sysconfig/hwconf so kudzu will configure modprobe.conf next boot.nKernel 2.4 uses /etc/modules.conf and kernel 2.6 /etc/modprobe.confnnkernel 2.6 doesn't need ide-scsi anymore so you have to remove it in grub:nedit /boot/grub/menu.lst and changenn<?plugin Codenkernel /boot/vmlinuz-2.6.0-0.test10.1.95 ro root=LABEL=/ hdc=ide-scsi rhgbninnkernel /boot/vmlinuz-2.6.0-0.test10.1.95 ro root=LABEL=/ rhgbn?>nncreate /sysnn<?plugin Codenmkdir /sysn?>nnNow you reboot.nnAfter reboot remove all lines that have to do with your soundcard in /etc/modprobe.confnn!OSSnnAlsa gave noise, I think a problem with the driver so I used the OSS drivers instead.nnAdd to /etc/modprobe.confn<?plugin Codenalias char-major-14* soundcorenalias sound-slot-0 via82cxxx_audionninstall sound-slot-0 /sbin/modprobe --ignore-install sound-slot-0 && { /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1 || :; }nremove sound-slot-0 { /bin/aumix-minimal -f /etc/.aumixrc -S >>/dev/null 2>&1 || :; }; /sbin/modprobe -r --ignore-removen?>nnvia82cxxx_audio must be replaced with the name of your OSS driver!nAs you can see is OSS mutch easier to set up :)nn!AlsannDownload alsa-driver, alsa-lib and alsa-utils at:nn* ftp://rpmfind.net/linux/freshrpms/fedora/linux/1nnInstall with:nn<?plugin Codenrpm -i alsa-drivers-*.rpmnrpm -i alsa-libs-*.rpmnrpm -i alsa-utils-*.rpmn?>nNow edit /etc/modprobe.conf and add your soundcards configuration.nn<?plugin Codenn# ALSA portionnalias char-major-116* sndnalias snd-card-0 snd-via82xxnn# OSS/Free portionnalias char-major-14* soundcorenalias sound-slot-0 snd-card-0nn# card #1nalias sound-service-0-0 snd-mixer-ossnalias sound-service-0-1 snd-seq-ossnalias sound-service-0-3 snd-pcm-ossnalias sound-service-0-8 snd-seq-ossnalias sound-service-0-12 snd-pcm-ossnninstall snd-card-0 /sbin/modprobe --ignore-install snd-card-0 && { /usr/sbin/alsactl restore >/dev/null 2>&1 || :; }nremove snd-card-0 { /usr/sbin/alsactl store >/dev/null 2>&1 || :; }; /sbin/modprobe -r --ignore-removenninstall sound-slot-0 /sbin/modprobe --ignore-install sound-slot-0 && { /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1 || :; }nremove sound-slot-0 { /bin/aumix-minimal -f /etc/.aumixrc -S >>/dev/null 2>&1 || :; }; /sbin/modprobe -r --ignore-removenn?>nnsnd-via82xx must be replaced with the correct driver for your soundcardnnYou can find your soundcards configuration at:nn* http://www.alsa-project.org/alsa-doc/nnn!!Bttvnif you have a bttv like me and you won't it to work under kernel 2.6 you have to chance in /etc/modprobe.confn<?plugin Codenalias char-major-81 bttvninnalias char-major-81* bttvn?>nn<de_lupus @pandora.be> Kristof Vansant','a:4:{s:6:"author";s:12:"81.82.31.106";s:9:"author_id";s:12:"81.82.31.106";s:6:"markup";d:2;s:11:"_supplanted";i:1071434728;}');
fullo
17th January 2004, 05:57 PM
sorry my wiki isn't on db but on filesystem. I'll try to convert SQL on valid text for wiki
update:
added here:
http://fullo.altervista.org/phpwiki/index.php/FedoraKernel2.6
if you send also the post on garnome I'll add to wiki
ciauz fullo
lupus
17th January 2004, 09:05 PM
can you plz mail me a username and password so I can edit the wiki's ?
PS: your link does not work I had to copy it and paste it in IE6
is this a IE fault or is the same problem with mozilla?
INSERT INTO version VALUES (842,31,1071592306,0,'!!!GARNOMEnnGARNOME - the bad-ass, bleeding edge GNOME distribution for testers and tweakers everywhere - is finally released unto the teeming masses. If you're dying to test the latest GNOME code, but don't want to fall into the depraved addictions and co-dependencies of testing from anonymous CVS, then GARNOME is for you.nnThe GARNOME website:nn* [http://www.gnome.org/~~jdub/garnome/]nnDownload here:nn* [http://www.gnome.org/~~jdub/garnome/download/]nn!!Configure where to install GARNOME:nnedit gar.conf.mk to change the location GARNOME will be installed.nI installed GARNOME in /GARNOME so that's the path I will be using.nnChange:n<?plugin Codenmain_prefix ?= $(HOME)/GARNOMEninnmain_prefix ?= /GARNOMEn?>nn!!Compile gnome 2.5:nnBefore you can compile you need some libs:n<?plugin Codenyum install openh323*nyum install mozilla-develnyum install bzip2-develn?>nI have installed fedora as workstation so maybe when you have costum installed fedora more lib dependencies are missing.nplz mail me if you get some missing libs.nnTo start compile:n<?plugin Codencd meta/gnome-desktop/nmake installn?>nnFedora core 1 has a problem :s when compiling fontconfig.nYou will get this error:nn<?plugin Coden/home/lupus/garnome-0.28.3/bootstrap/fontconfig/work/main.d/fontconfig-2.2.1/fc-cache/.libs/lt-fc-cache: "/usr/share/fonts": caching, 0 fonts, 4 dirsn/home/lupus/garnome-0.28.3/bootstrap/fontconfig/work/main.d/fontconfig-2.2.1/fc-cache/.libs/lt-fc-cache: "/usr/share/fonts/default": caching, 0 fonts, 2 dirs/home/lupus/garnome-0.28.3/bootstrap/fontconfig/work/main.d/fontconfig-2.2.1/fc-cache/.libs/lt-fc-cache: "/usr/share/fonts/default/ghostscript": make[8]: *** [install-data-local] Fout 139n?>nnI asked the fontconfig mailing list and got this answer:nnFreeType crashes when reading one of the fonts in that directory; I believe current FreeType releases have that bug fixed. -keithnSo the issue will continue to exist until FreeType of fedora is updated I guess.nn*Note: It seems that freetype has been updated and this is no longer an issue.nnMy workaround is:n<?plugin Codencd ../../bootstrap/fontconfig/work/main.d/fontconfig-2.2.1/n?>nnChange in Makefile.am:n<?plugin Codenif [ x$(DESTDIR) = x ]; then fc-cache/fc-cache -f -v; fininnif [ x$(DESTDIR) = x ]; then fc-cache/fc-cache -v; fin?>nRun:n<?plugin Codenmake cleanncd ../../../../../meta/gnome-desktop/ #to continue the compilenmake installn?>nn!!Create Runscript:nnThe easiest way is to create a garnome-session script, and use the standard method your distribution provides to launch it when you start X.nHere's what the script should look like:nn<?plugin Coden#!/bin/shnGARNOME=/GARNOME #path where you have installed GARNOMEnnPATH=$GARNOME/bin:$PATHnLD_LIBRARY_PATH=$GARNOME/lib:$LD_LIBRARY_PATHnPYTHONPATH=$GARNOME/lib/python2.2/site-packagesnPKG_CONFIG_PATH=$GARNOME/lib/pkgconfig:/usr/lib/pkgconfignGDK_USE_XFT=1nnexport PATH LD_LIBRARY_PATH PYTHONPATH PKG_CONFIG_PATH GDK_USE_XFTnnexec $GARNOME/bin/gnome-sessionn?>nnthen do:n<?plugin Codenchmod a+rx garnome-sessionnmv garnome-session /usr/bin/n?>nn!!Add GARNOME to GDM in Fedora:nnthis methode is Fedora only!!nn<?plugin Codencd /etc/X11/dm/Sessionsncp gnome.desktop garnome.desktopnsed -e 's/GNOME/GARNOME/g' < gnome.desktop > garnome.desktopn?>nnedit garnome.desktopnn<?plugin Codenchancenexec=gnome-sessionninnexec=garnome-sessionn?>nnnow you can select GARNOME when you have to login :)nn!!Info Sources:nn* [http://www.gnome.org/~~jdub/garnome/]nn<de_lupus @pandora.be> Kristof Vansant','a:4:{s:6:"author";s:12:"64.81.200.18";s:9:"author_id";s:12:"64.81.200.18";s:6:"markup";d:2;s:11:"_supplanted";i:1071845908;}');
fullo
18th January 2004, 01:04 AM
added to http://fullo.altervista.org/phpwiki/index.php/FedoraGarnome
same problem in mozilla, IMHO is a server rewrite rule problem...
lupus
18th January 2004, 03:45 PM
k I put my guide up again somewhere else enjoy people :)
you have to copy paste the url in mozilla or IE, clicking on the link won't work
http://fullo.altervista.org/phpwiki/index.php/FedoraKernel2.6
feedback is always welcome
you can always add some interresting stuff if you want :)
cybrjackle
22nd January 2004, 11:39 AM
I built garnome in the past and there is something different about the garnome-session part, I cant seem to get mine to show up when I use:
[code:1]cd /etc/X11/dm/Sessions
cp gnome.desktop garnome.desktop
sed -e 's/GNOME/GARNOME/g' < gnome.desktop > garnome.desktop[/code:1]
I get the following error:
[code:1]# sed -e 's/GNOME/GARNOME/g' < gnome.desktop > garnome.desktop
sed: -e expression #1, char 19: Unterminated address regex
[/code:1]
I thought the original was setup different?
lupus
22nd January 2004, 01:10 PM
it should be:
cd /etc/X11/dm/Sessions
cp gnome.desktop garnome.desktop
sed -e 's/GNOME/GARNOME/g' < gnome.desktop > garnome.desktop
I corrected it on the wiki mirror
the fault is not on freax.be
thk you for telling me this :)
cybrjackle
22nd January 2004, 02:03 PM
thx,
I will try it when i get home from work in 8-10 hours ;(
Just to give people an idea, it compiled in 98 minutes on an over clocked xp-2500 with the following CFLAGS:
-march=athlon-xp -O3 -pipe -fomit-frame-pointer
I'm doing it at work with a p3@733 right now, but I doubt it will be done anytime soon ;)
Also, just adding
bzip2-devel
mozilla-1.6
Compiled perfect! The last one I did, I had to fix it umpteen times for it to finish!
cybrjackle
23rd January 2004, 01:46 PM
I was able to get garnome to fire up with your changes, but it nautilus crashed around 10x's. I cleaned it out this morning and i'm doing it with out the added CFLAGS to see if it makes a differnece.
The p3 compiled in real 452m6.477s
lah
23rd January 2004, 04:14 PM
Hey
I am getting the following when I reboot my 2.6.1 kernel:
e2fsck 1.34 (25-Jul-2003)
Couldn't find ext2 superblock, trying backup blocks...
fsck.ext3: Bad magic number in super-block while trying to open /dev/hdb1
The superblock could not be read or does not describe a correct ext2
filesystem. If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
The partition is an ext3 partition. When i run the command the error message just keeps on coming. When I comment out the partition then the kernel loads just fine and of course when I boot the 2.4.22 kernel it mounts the partition just fine.
Any ideas?
lupus
24th January 2004, 03:27 PM
try bugzilla.redhat.com or fedora devel mailing list
I have no problems
lupus
24th January 2004, 03:30 PM
cyberjackle garnome = 2.5 = unstable
report errors to gnome bugzilla
cybrjackle
1st February 2004, 04:18 PM
cyberjackle garnome = 2.5 = unstable
report errors to gnome bugzilla
Sorry, i forgot to reply back to you. I've used garnome in the past so i know it is unstable ;-) but it works fine as long as i don't get crazy with the CFLAGS...
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.