some ftp mirrors is wrong or inconsistently

2009-10-26 Thread Oleg Ole
Hello maillist

Some ftp servers from official ftp mirrors

( http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html)

is incorrect or out of sync.

For example, test scripts ( require ftp/lftp ) says that only 90 from 167 ;)
have 8.0-RC1.iso

--

#!/bin/sh

cd /tmp

fetch
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html

SITE=`egrep -E (^target) /tmp/mirrors-ftp.html |tr|awk {'printf
$2\n'}`

for HST in ${SITE}; do

echo $HST

lftp -e ls; quit ${HST}ISO-IMAGES-amd64/8.0/

done

--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Why FreeBSD not popular on hardware vendors

2008-12-11 Thread Ole
BTW on the http://forums.freebsd.org number of multimedia-related questions is 
more than server-side ;) 
And this is fact - FreeBSD become to Desktop due to work of many peoples who 
porting multimedia application to FreeBSD. Therefore
this functional be want. But without good supports of hardware device this job  
come to nothing.

On Thursday 11 December 2008 15:36:32 Polytropon wrote:
 On Thu, 11 Dec 2008 07:19:14 -0500, Jerry [EMAIL PROTECTED] wrote:
  Define: 'Actual Work'? What you are referring to is that it meets your
  criteria. Everyone's work platform might not be so narrow.

 ometimes, actual work may be entertainment, gaming, or
 programming obscure hardware platforms. :-)

  I use FreeBSD for may things; however, it is by no means a perfect
  system. There are just too many things that either don't work, or don't
  work well.

 I may say this: At home, I'm using FreeBSD exclusively since
 approx. 2000 (at least since release 4.0). Here everything
 worked without any (!) problems, no need for problem reports.
 At work, FreeBSD and Solaris are present. For some fields of
 use, I would not FreeBSD instead of Solaris. However, I found
 no operating system that could replace FreeBSD in the fields
 where I use it.

 As in many other topics, this is only my very individual point
 of view.

 I do see FreeBSD's problems in most cases where hardware
 support isn't up to date, but that's mainly a thing of the
 hardware manufactureres that (a) build black boxes or (b)
 do not use existing standards, so accessing their hardware
 is a problem. Other problems are usual entertainment stuff
 that seems to hook that deeply into the operating system that
 it leads into problems - yes, I'm talking about Flash
 especially.

 Hardware vendors are mostly interested in operating systems
 that already have a huge market share. Allthough FreeBSD is
 a very professional OS and has a growing usage share, its
 market share isn't that big, so it is considered to be
 unimportant. Furthermore, FreeBSD is considered to be an
 OS for servers, allthough it scales very well from desktops
 over mixed forms to servers. And servers usually don't contain
 bleeding edge GPUs and strange WLAN USB sticks, so that's why
 the support isn't that good.

 Personally, I'd prefer an OS that supports a narrow subset
 of hardware excellently and efficiently instead of an OS that
 claims to support everything, supports most things poorly
 and through binary blobs where you can't be sure what it
 actually does.

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


Re: Why FreeBSD not popular on hardware vendors

2008-12-11 Thread Ole
Also you can use portupgrade -PP

   -PP
 --use-packages-onlyNever use the port even if a package is not avail-
able either locally or remotely, although you
still have to keep your ports tree up-to-date so
that portupgrade can check out what the latest
version of each port is.

In in some cases re-compiling it better then package usage. For example you 
may wish for GnomeVFS support by OO, or drop GNOME support and KDE support 
instead. This function sets in configure by program author and when you 
working with ports you can play this options

On Thursday 11 December 2008 18:23:04 Julien Cigar wrote:

   that this is a well known bug that require some rearchitecting and that
   a proper umount has always been the way to umount a drive, but,
   honestly, you cannot seriously convince someone to use FreeBSD with
   things like this ...
   - Altough ports are fantastic, building things like OpenOffice or ...
   is just inhuman, especially when you cannot use -j for building ports
   (but it's being resolved I think). Of course there are packages, but
   it's far less friendly to use (and manage) than apt-get/dpkg.
 
  you may pkg_add from ftp repository

 of course .. too bad that there is no pkg_upgrade

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


source data for host CPU temperature

2008-12-08 Thread Ole
Hello maillist,

Whether there is a unique, a  general method of fetching of statistics on CPU 
temperature in FreeBSD. The general method - is available in view of excluding 
vendor-specific healh-agents with their vendors lock-in API.

As i know some way for this: smb(4) (for old PC?), coretemp(4) (this is for 
new and only Intel hardware ?) and ipmi(4) if available, so each machine 
customize for temp statistics throuch individual setup for source data?

And it is necessary to prefer what data if it is some given. For example 2 
commands on host give diffrent result:
(With 'ipmitool sensor |grep -i temp)
--
Ambient Temp | 26.000 | degrees C  | ok| na| na| 
na| 32.000| na| 39.000
CPU 1 Temp   | na | degrees C  | na| na| 74.000| 
-128.000  | -48.000   | na| na
CPU 2 Temp   | na | degrees C  | na| na| 74.000| 
-128.000  | -48.000   | na| na
CPU 1 OverTemp   | 0x0| discrete   | 0x0080| na| na| 
na| na| na| na
CPU 2 OverTemp   | 0x0| discrete   | 0x0080| na| na| 
na| na| na| na
--

  i get 74C on my CPU1 and CPU2

(with coretemp(4) i get individual per-core sensor)
% sysctl -a |egrep -E cpu\.[0-9]+\.temp
dev.cpu.0.temperature: 38
dev.cpu.1.temperature: 45
dev.cpu.2.temperature: 42
dev.cpu.3.temperature: 69

ipmi/coretemp facility is fetching information for CPU from diffrent sensors?

And how much correctly with coretemp(4) to receive the general temperature 
(one number as in Bios) if average(sum(core temperature)) / (num of core) ? 
Thanks in advance!



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


Re: Why FreeBSD not popular on hardware vendors

2008-12-07 Thread Ole Vole
If only 3D or super-high-speed has been affected by this driver. Regrettably 
most application simple is not usable, like video-players, google-earth, 
KDE4 - all of that on my desktop station with  4Gb of RAM is looksworks 
like nightmare in vesa (xorg nv)-driver. And me too a very long time waiting 
for news from NV/BSD team.

On Sunday 07 December 2008 21:18:08 Wojciech Puchar wrote:
  Does anyone know of any recent progress on a 64bit Nvidia Driver?
  there is mention of progress on this page
  http://www.nvnews.net/vbulletin/showthread.php?t=41545page=24

 most freebsd users don't need 3D at all, or don't need super-high-speed
 3D.

 so simply don't use nvidia/ati
 ___
 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]


Asus eeepc, Freebsd-head, problem with ath/wifi driver

2008-11-20 Thread Ole Vole
Hello maillist!

I trying setup FreeBSD according Wiki notes http://wiki.freebsd.org/AsusEee 
and get system without ath Wi-Fi devices (Fn+f2/Bios settings for Wifi: 
Enabled)

buildin/install kernel/world from 20081120 snapshot FreeBSD-CURRENT with/or 
patching from madwifi.org-project  ( http://snapshots.madwifi-
project.org/madwifi-hal-0.10.5.6/madwifi-hal-0.10.5.6-r3875-20081105.tar.gz ) 
(old link http://snapshots.madwifi-project.org/special/madwifi-ng-
r2756+ar5007.tar.gz is wrong) with extracting hal/ to 
/usr/src/sys/contrib/dev/ath/ and recompile the kernel  


Also, trying to test http://people.freebsd.org/~sam/ath_hal-20081028.tgz

As result from attemps is string in dmesg:
ath_hal: 0.10.5.6 (AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, 
RF5413, RF2133, RF2425, RF2417)

but ifconfig show only LAN ale0 Ethernet interface. 

On the list pciconf i see Ralink Technology, Corp devices but iy without 
drivers.

What is wrong here? Thanks!

Additional info:


 pciconf -vl output:
--
[EMAIL PROTECTED]:0:0:0:  class=0x06 card=0x830f1043 chip=0x27ac8086 
rev=0x03 hdr=0x00  
vendor = 'Intel Corporation'
  
class  = bridge 
  
subclass   = HOST-PCI   
  
[EMAIL PROTECTED]:0:2:0: class=0x03 card=0x830f1043 chip=0x27ae8086 
rev=0x03 hdr=0x00  
vendor = 'Intel Corporation'
  
class  = display
  
subclass   = VGA
  
[EMAIL PROTECTED]:0:2:1: class=0x038000 card=0x830f1043 chip=0x27a68086 
rev=0x03 hdr=0x00  
vendor = 'Intel Corporation'
  
device = 'Mobile 945GM/GU Express Integrated Graphics Controller'   
  
class  = display
  
[EMAIL PROTECTED]:0:27:0:  class=0x040300 card=0x831a1043 chip=0x27d88086 
rev=0x02 hdr=0x00  
vendor = 'Intel Corporation'
  
device = '82801G (ICH7 Family) High Definition Audio'   
  
class  = multimedia 
  
subclass   = HDA
  
[EMAIL PROTECTED]:0:28:0:  class=0x060400 card=0x830f1043 chip=0x27d08086 
rev=0x02 hdr=0x01  
vendor = 'Intel Corporation'
  
device = '82801G (ICH7 Family) PCIe Root Port'  
  
class  = bridge 
  
subclass   = PCI-PCI
  
[EMAIL PROTECTED]:0:28:1:  class=0x060400 card=0x830f1043 chip=0x27d28086 
rev=0x02 hdr=0x01  
vendor = 'Intel Corporation'
  
device = '82801G (ICH7 Family) PCIe Root Port'  
  
class  = bridge 
  
subclass   = PCI-PCI
  
[EMAIL PROTECTED]:0:28:2:  class=0x060400 card=0x830f1043 chip=0x27d48086 
rev=0x02 hdr=0x01  
vendor = 'Intel Corporation'
  
device = '82801G (ICH7 Family) PCIe Root Port'  
  
class  = bridge 
  
subclass   = PCI-PCI
  
[EMAIL PROTECTED]:0:28:3:  class=0x060400 card=0x830f1043 chip=0x27d68086 
rev=0x02 hdr=0x01  
vendor = 'Intel Corporation'
  
device = '82801G (ICH7 Family) PCIe Root Port'  
  
class  = bridge 
  
subclass   = PCI-PCI   

documentation for sysctl MIB

2008-11-06 Thread Ole
Hello maillist, 

I have to small question
- Where i can get documentation for description some base sysctl variables?
- And, what the diffrence between 
sysctl hw.machine hw.machine_arch
?

For example, i extract i386 installation, but my hardware is EM64T  and 
supporting AMD64 distribution correctly. Both variable get i386 value. One of 
them must be amd64?

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


Re: Devil Mascot

2004-06-14 Thread Ole Guldberg Jensen
Edward Hendrie wrote:
Why do you have a Devil for a trademark mascot?
http://www.freebsd.org/copyright/daemon.html
From a marketing
perspective, you are shooting yourselves in the foot.  There are many people
of various religious backgrounds who will be dissuaded from trying FreeBSD
because they have religious objections to a product that is promoted by a
devil.
Why should The FreeBSD project be interested in users ? It is not a 
commerial project. I think the FreeBSD folks are interested in making a 
cool unix-like operating system, not much else.

Ole
--
DarwinPorts committer, www.opendarwin.org/~olegb
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


kdelibs3 configure script reports LibXext error

2004-02-11 Thread Ole Voß
I'm trying to install the KDE3 which came with freeBSD 4.9 from ports.
Unfortunately the installation fails while installing the kdelibs3 with the 
following error:

-
checking for libXext... no
configure: error: We need a working libXext to proceed. Since configure
can't find it itself, we stop here assuming that make wouldn't find
them either.
===  Script configure failed unexpectedly.
Please report the problem to [EMAIL PROTECTED] [maintainer] and attach the
/usr/ports/x11/kdelibs3/work/kdelibs-3.2.0/config.log including the output
of the failure of your make command. Also, it might be a good idea to provide
an overview of all packages installed on your system (e.g. an `ls
/var/db/pkg`).
*** Error code 1
Stop in /usr/ports/x11/kdelibs3.
-
But LibXext IS installed and 'ldconfig -r' does list it. What am I doing wrong?

Thanks,

Ole.



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


Re: kdelibs3 configure script reports LibXext error

2004-02-11 Thread Ole Voß


 locate libXext

gives:

/usr/X11R6/lib/libXext.a
/usr/X11R6/lib/libXext.so
/usr/X11R6/lib/libXext.so.6
/usr/compat/linux/usr/X11R6/lib/libXext.so.6
/usr/compat/linux/usr/X11R6/lib/libXext.so.6.4
/usr/ports/x11/libXext
/usr/ports/x11/libXext/Makefile
/usr/ports/x11/libXext/distinfo
/usr/ports/x11/libXext/pkg-descr
/usr/ports/x11/libXext/pkg-plist
My output is:

titan# locate libXext
/usr/X11R6/lib/libXext.a
/usr/X11R6/lib/libXext.la
/usr/X11R6/lib/libXext.so
/usr/X11R6/lib/libXext.so.6
/usr/ports/distfiles/libXext-6.4.2.tar.bz2
/usr/ports/x11/libXext
/usr/ports/x11/libXext/Makefile
/usr/ports/x11/libXext/distinfo
/usr/ports/x11/libXext/pkg-descr
/usr/ports/x11/libXext/pkg-plist
/var/db/pkg/libXext-6.4.2_1
/var/db/pkg/libXext-6.4.2_1/+COMMENT
/var/db/pkg/libXext-6.4.2_1/+CONTENTS
/var/db/pkg/libXext-6.4.2_1/+DESC
/var/db/pkg/libXext-6.4.2_1/+MTREE_DIRS


pkg_which on

/usr/X11R6/lib/libXext.a, /usr/X11R6/lib/libXext.so, 
/usr/X11R6/lib/libXext.so.6

all give:
My ouput:

titan# pkg_which /usr/X11R6/lib/libXext.a
XFree86-libraries-4.3.0_6 libXext-6.4.2_1
titan# pkg_which /usr/X11R6/lib/libXext.so
XFree86-libraries-4.3.0_6 libXext-6.4.2_1
titan# pkg_which /usr/X11R6/lib/libXext.so.6
XFree86-libraries-4.3.0_6 libXext-6.4.2_1
This seems alright, doesn't it? Now what?

Regards,

Ole.


XFree86-libraries-4.3.0_6

Is this the same for you?  Depending on your answer, portupgrade -f
XFree86-libraries might help.
Joey






On February 11, 2004 09:30, Ole Voß wrote:
 I'm trying to install the KDE3 which came with freeBSD 4.9 from ports.
 Unfortunately the installation fails while installing the kdelibs3 with the
 following error:


 -
 checking for libXext... no
 configure: error: We need a working libXext to proceed. Since configure
 can't find it itself, we stop here assuming that make wouldn't find
 them either.
 ===  Script configure failed unexpectedly.
 Please report the problem to [EMAIL PROTECTED] [maintainer] and attach the
 /usr/ports/x11/kdelibs3/work/kdelibs-3.2.0/config.log including the
 output of the failure of your make command. Also, it might be a good idea
 to provide an overview of all packages installed on your system (e.g. an
 `ls
 /var/db/pkg`).
 *** Error code 1

 Stop in /usr/ports/x11/kdelibs3.
 -

 But LibXext IS installed and 'ldconfig -r' does list it. What am I doing
 wrong?

 Thanks,

 Ole.



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

Joey Mingrone
[EMAIL PROTECTED]
(902) 423-7327
http://mingrone.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (FreeBSD)
iD8DBQFAKkRk0NQPEWppBZsRAgkwAJ9iZKKD3yQWz+I6vKy64/aV2nYkuQCglY9N
lbnajvDvMckqDiZ/LIXY4Sw=
=1R1a
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Grave vinum problem (at least for me)

2004-02-04 Thread Ole Voss
Last night I reinstalled freebsd and obviously somewhere along the way my 
400GB concat vinum volume wasn't unmounted (at least that's what freebsd 
told me). Now, when I run 'fsck -t ufs /dev/vinum/abyss'

I get this:

titan# fsck -t ufs /dev/vinum/abyss
** /dev/vinum/abyss
CANNOT READ BLK: 843781344
CONTINUE? [yn] y
THE FOLLOWING DISK SECTORS COULD NOT BE READ: 843781344, 843781345, 
843781346, 843781347,
/dev/vinum/abyss: CANNOT FIGURE OUT FILE SYSTEM PARTITION

It mounted fine last night and everything looked perfect. Then I did a 
reboot and ... well, this is it now.

Can anybody help me out?

Regards,

Ole.

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