Re: FreeBSD-multi-boot

2006-05-15 Thread Danny Butroyd
Vlad GURDIGA wrote:
> Hello all,
>
> I have these slices on my HDD:
> - /dev/ad0s1 - Windows XP
> - /dev/ad0s2 - FreeBSD/i386
> - /dev/ad0s3 - FreeBSD/amd64
>
> and I want them all in my boot.ini.
>
> Till now I succeeded with FreeBSD/i386 (first did "dd if=/dev/ad0s2
> of=boot.bsd bs=512 count=1" from FreeBSD/i386, then copied the
> resulted "boot.bsd" file to Windows C:\)
>
> I did the same trick with FreeBSD/amd64 (first did "dd if=/dev/ad0s3
> of=boot64.bsd bs=512 count=1" from FreeBSD/amd64, then copied the
> resulted "boot64.bsd" file to Windows C:\) so, my boot.ini looks like
> this:
>
> ---cut here--
> [boot loader]
> timeout=3
> default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
> [operating systems]
> multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP
> Professional" /noexecute=optin /fastdetect
> C:\boot.bsd="UNIX FreeBSD/i386"
> C:\boot64.bsd="UNIX FreeBSD/amd64"
> ---cut here--
>
>
> Now, the problem is that when I choose "UNIX FreeBSD/amd64" from the
> boot menu, it boots "UNIX FreeBSD/i386"!!!
>
> What did I missed?
this page may help:-

http://www.ubergeek.co.uk/howtos/grub-freebsd-windowsxp.html

Cheers
Danny
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: direct rending doesnt work in xorg

2006-04-18 Thread Danny Butroyd
Björn König wrote:
> Danny Butroyd schrieb:
> 
>> Section "Device"
>> Identifier  "Card0"
>> Driver  "ati"
>> VendorName  "ATI Technologies Inc"
>> BoardName   "Radeon R250 Lf [Radeon Mobility 9000 M9]"
>> BusID   "PCI:1:0:0"
>> Screen  0
>> EndSection
> 
> You have to use the driver "radeon" in order to use 3D acceleration.

I have tried this but it has made no difference :(
> 
>> [rvn] /home/danny# glxinfo
>> name of display: :0.0
>> libGL: XF86DRIGetClientDriverName: 5.0.3 r200 (screen 0)
>> libGL: OpenDriver: trying /usr/X11R6/lib/modules/dri/r200_dri.so
>> libGL error: dlopen /usr/X11R6/lib/modules/dri/r200_dri.so failed
>> (/usr/X11R6/lib/modules/dri/r200_dri.so: Undefined symbol
>> "_glapi_add_entrypoint")
>> libGL error: unable to find driver: r200_dri.so
>>
>> The solution (according to the wiki) is to reinstall DRI and LIBGL from
>> source, however, I have reinstalled all the relevant ports but I still
>> get the same problem.  Can anyone help?
> 
> Does /usr/X11R6/lib/modules/dri/r200_dri.so exist?

Yes it does

> 
> Regards
> Björn
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


direct rending doesnt work in xorg

2006-04-16 Thread Danny Butroyd
Hi All

I have been tearing my hair out trying to fix this problem.  Basically
Direct Rendering isnt working.  My setup:-

OS:-

FreeBSD 6.1-PRERELEASE #3

Xorg Installed from ports:-

[rvn] /home/danny# pkg_info | grep xorg
xorg-6.9.0  X.Org distribution metaport
xorg-clients-6.9.0_2 X client programs and related files from X.Org
xorg-documents-6.9.0 Documentation of X11 protocol and libraries from X.Org
xorg-fonts-100dpi-6.9.0_1 X.Org 100dpi bitmap fonts
xorg-fonts-75dpi-6.9.0_1 X.Org 75dpi bitmap fonts
xorg-fonts-cyrillic-6.9.0_1 X.Org Cyrillic bitmap fonts
xorg-fonts-encodings-6.9.0_1 X.Org font encoding files
xorg-fonts-miscbitmaps-6.9.0_1 X.Org miscellaneous bitmap fonts
xorg-fonts-truetype-6.9.0 X.Org TrueType fonts
xorg-fonts-type1-6.9.0 X.Org Type1 fonts
xorg-fontserver-6.9.0_1 X font server from X.Org
xorg-libraries-6.9.0 X11 libraries and headers from X.Org
xorg-manpages-6.9.0 X.Org library manual pages
xorg-nestserver-6.8.2 Nesting X server from X.Org
xorg-printserver-6.8.2_2 X Print server from X.Org
xorg-server-6.9.0_1 X.Org X server and related programs
xorg-vfbserver-6.9.0 X virtual framebuffer server from X.Org


dri-devel install from ports:-

[rvn] /home/danny# pkg_info | grep dri
dri-6.2.20050719,1  DRI OpenGL drivers snapshot

All drivers seem to be working ok:-

[rvn] /home/danny# dmesg | grep drm
drm0:  port 0xc000-0xc0ff mem
0xe800-0xefff,0xfcff-0xfcff irq 11 at device 0.0 on pci1
info: [drm] AGP at 0xe000 128MB
info: [drm] Initialized radeon 1.19.0 20050911
info: [drm] Loading R200 Microcode

Xorg is setup correctly (as far as I know):-

---snip---
Section "Module"
Load  "extmod"
Load  "glx"
Load  "dri"
Load  "dbe"
Load  "record"
Load  "xtrap"
Load  "type1"
Load  "freetype"
EndSection

Section "DRI"
Mode 0666
EndSection

Section "Device"
Identifier  "Card0"
Driver  "ati"
VendorName  "ATI Technologies Inc"
BoardName   "Radeon R250 Lf [Radeon Mobility 9000 M9]"
BusID   "PCI:1:0:0"
Screen  0
EndSection
---snip---

>From this page (http://dri.freedesktop.org/wiki/DriTroubleshooting) I
have been through all the checks and my setup fails on the following:-

[rvn] /home/danny# setenv LIBGL_DEBUG verbose
[rvn] /home/danny# glxinfo
name of display: :0.0
libGL: XF86DRIGetClientDriverName: 5.0.3 r200 (screen 0)
libGL: OpenDriver: trying /usr/X11R6/lib/modules/dri/r200_dri.so
libGL error: dlopen /usr/X11R6/lib/modules/dri/r200_dri.so failed
(/usr/X11R6/lib/modules/dri/r200_dri.so: Undefined symbol
"_glapi_add_entrypoint")
libGL error: unable to find driver: r200_dri.so

The solution (according to the wiki) is to reinstall DRI and LIBGL from
source, however, I have reinstalled all the relevant ports but I still
get the same problem.  Can anyone help?

Thanks in advance.
Danny

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Firefox 1.5 getting downright irritating

2006-04-04 Thread Danny Butroyd
Paul Schmehl wrote:
> --On April 3, 2006 5:48:34 PM +0100 Danny Butroyd <[EMAIL PROTECTED]>
> wrote:
>>>>
>>>> Maybe you're editing the wrong file? Or while Firefox is running? Too
>>>> tight file permissions? Just some thoughts. Here's mine profiles.ini:
>>>>
>>> Or maybe it's KDE.there are several things that, when changed in
>>> Xwindows do not change at all.  profiles is just one of them.
>>>
>>> I'll have to investigate some more..
>> I use Fluxbox and am experiencing exactly the same problem.and yes
>> it is very irritating.  If I get anywhere with it I will let post to the
>> list.
>>
> Or maybe it's Gnome.  I'm playing around with Firefox tonight from
> home, and each time it starts up it asks me if I want to make it the
> default browser.  When I click on Yes, I get this in the terminal
> window I launched Firefox from:
>
>
> (Gecko:31267): libgnomevfs-WARNING **: Deprecated function.  User
> modifications to the MIME database are no longer supported.
>
> (Gecko:31267): libgnomevfs-WARNING **: Deprecated function.  User
> modifications to the MIME database are no longer supported.
>
> (Gecko:31267): libgnomevfs-WARNING **: Deprecated function.  User
> modifications to the MIME database are no longer supported.
>
> (Gecko:31267): libgnomevfs-WARNING **: Deprecated function.  User
> modifications to the MIME database are no longer supported.
>
> (Gecko:31267): libgnomevfs-WARNING **: Deprecated function.  User
> modifications to the MIME database are no longer supported.
>
> (Gecko:31267): libgnomevfs-WARNING **: Deprecated function.  User
> modifications to the MIME database are no longer supported.
>
> I'm going to uninstall Gnome and see what happens.  I've had nothing
> but trouble from it anyway
I did this on my last upgrade of Firefox and unfortunately it has not
helped.

Danny

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Firefox 1.5 getting downright irritating

2006-04-03 Thread Danny Butroyd
Paul Schmehl wrote:
> --On Monday, April 03, 2006 18:11:25 +0200 Karol Kwiatkowski
> <[EMAIL PROTECTED]> wrote:
>>
>> it's working here as expected - "Don't ask at startup" box changes
>> StartWithLastProfile to 0/1 and ProfileManager starts every time if
>> set to 0.
>>
>> I'm using it ever since I installed Firefox 2.0a in addition to 1.5.
>> The machine is running FreeBSD 6-STABLE, Firefox 1.5 and 2.0a,
>> Enlightenment DR17 but I doubt it's related.
>>
>> Maybe you're editing the wrong file? Or while Firefox is running? Too
>> tight file permissions? Just some thoughts. Here's mine profiles.ini:
>>
> Or maybe it's KDE.there are several things that, when changed in
> Xwindows do not change at all.  profiles is just one of them.
>
> I'll have to investigate some more..
I use Fluxbox and am experiencing exactly the same problem.and yes
it is very irritating.  If I get anywhere with it I will let post to the
list.

Cheers
Danny

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Portupgrad Problem

2006-04-03 Thread Danny Butroyd
Cody Holland wrote:
> Using FreeBSD 5.4-Stable #0.  Trying to update my ports using portsnap,
> pkg_version, and portupgrade.  All goes well until I get to portupgrade
> -arR.  All my ports update except for of them.  Here is the message I
> get:
>
> # portupgrade -arR
> cd: can't cd to /usr/ports/archivers/pear-Archive_Tar
> cd: can't cd to /usr/ports/devel/pear-Console_Getopt
> cd: can't cd to /usr/ports/devel/pear-XML_RPC
> cd: can't cd to /usr/ports/devel/php4-pear
> ** Package 'php4-pear' has been removed from ports tree.
> ** Port directory not found: devel/php4-pear
> ** Package 'pear-Console_Getopt' has been removed from ports tree.
> ** Port directory not found: devel/pear-Console_Getopt
> ** Package 'pear-XML_RPC' has been removed from ports tree.
> ** Port directory not found: devel/pear-XML_RPC
> ** Package 'pear-Archive_Tar' has been removed from ports tree.
> ** Port directory not found: archivers/pear-Archive_Tar
> ** Listing the failed packages (*:skipped / !:failed)
> !  (php4-pear-4.4.1_1)  (port directory error)
> !  (pear-Console_Getopt-1.2)(port directory error)
> !  (pear-XML_RPC-1.4.3) (port directory error)
> !  (pear-Archive_Tar-1.3.1) (port directory error)
> --->  Packages processed: 0 done, 73 ignored, 0 skipped and 4 failed
>
> I know this is telling me that there is no ports directory for these
> ports...and there isn't one.  I just don't know what to do, to correct
> this.  Any advice would greatly be appreciated.
>   
/usr/ports/UPDATING reports the following:-

-snip-

20051213:
  AFFECTS: users of pear ports
  AUTHOR: [EMAIL PROTECTED]

  A few old pear ports have been removed from the tree in favor of a
  single devel/pear port.  If portupgrade complains about missing ports,
  you may safely remove pear-XML_RPC, pear-Console_Getopt, pear-Archive_Tar
  and php[45]-pear and then run:

  portupgrade -o devel/pear -f pear-PEAR


-snip-

Cheers
Danny
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: stupid question - disk mirroring

2006-03-22 Thread Danny Butroyd
Wojciech Puchar wrote:
> what is right/best/simplest way to configure mirrored disk system?
> there was raid driver in NetBSD, but how in FreeBSD. possibility of
> booting from this set is important.
>
If you are talking software raid then try Geom.  A really nice howto can
be found here:-

http://people.freebsd.org/~rse/mirror/

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using boot manager with FreeBSD and Windows

2006-03-21 Thread Danny Butroyd
Benjamin Sher wrote:
> Dear Jud and friends:
>
> OK, I finally figured out how to make OSL2000 work. In scanning all
> bootable partitions, it lists FreeBSD as two partitions: the 512 MB
> /boot partition (name unknown) and the FreeBSD 37 GB partition. It
> will not boot FreeBSD from the FreeBSD partition but, after changing
> the mode to swap, it booted at last directly into FreeBSD with the
> command "startx". I first saw during bootup that it said that I named
> "localhost" (for Mindspring) incorrectly. At any way, I was pretty
> disheartened when I finally arrived in FreeBSD. What I saw were two
> rectangular screens (with green edges): the one on the left said:
> "login", the one on the right said: "xterm". Plus a tiny clock in the
> upper corner. I feel completely lost. Where is KDE? What command
> should I use to get into KDE or to access the Internet?
You probably need to edit/create the .xinitrc file in your home
directory.  I dont use kde but a quick search on google reveals that
this may work in your case:-

exec startkde

Google is definately your friend for this kind of setup question :)

Danny

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"