Re: What does RELEASE-p8 mean?

2007-11-27 Thread Andreas Rudisch
On Tue, 27 Nov 2007 20:01:03 +0100, Paul Schmehl <[EMAIL PROTECTED]>  
wrote:


I'm trying to find out what RELEASE-p8 means (specifically what the -p8  
means), and I can't seem to figure out where to find it.




It is the patch level. Take a look at http://www.freebsd.org/security/
and you will figure it out.

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


Re: kernel upgrades

2008-09-19 Thread Andreas Rudisch
On Fri, 19 Sep 2008 07:03:25 -0400
"Joe Tseng" <[EMAIL PROTECTED]> wrote:

> I know I can update ports by using portsnap fetch/extract/update - 
> does this update the kernel source as well?

No, it does not.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpRjcBSLa6w3.pgp
Description: PGP signature


Re: what are the top few mp3[4] Podcast helpers-apps for firefox-3.03?

2008-10-06 Thread Andreas Rudisch
On Mon, 6 Oct 2008 12:05:15 -0700
Gary Kline <[EMAIL PROTECTED]> wrote:

> what should I select to be my default mp3/postcast player?

mplayer?

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpmDv7tKzDgJ.pgp
Description: PGP signature


Re: How to get my Dad's Win2k system to access internet through my FreeBSD 6.2 system

2008-10-14 Thread Andreas Rudisch
On Tue, 14 Oct 2008 12:09:45 +0530
Manish Jain <[EMAIL PROTECTED]> wrote:

> I want my dad to be able to connect to the internet with my freebsd box
> serving as the gateway.

You might want to read:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-routing.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-dns.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpjiLS2YwRV9.pgp
Description: PGP signature


Re: Extract Songs from DVD

2008-10-22 Thread Andreas Rudisch
On Wed, 22 Oct 2008 17:34:41 +0300
"Odhiambo Washington" <[EMAIL PROTECTED]> wrote:

> player. Is there a tool that I can use to get the songs off the DVD in
> WAV format, or even MP3?

/usr/ports/multimedia/mplayer
/usr/ports/multimedia/mencoder
/usr/ports/audio/lame
...

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpYxEfOFoJN7.pgp
Description: PGP signature


Re: Question: the stable edition of Freebsd

2008-11-03 Thread Andreas Rudisch
On Mon, 3 Nov 2008 22:01:21 +0800
"Alex Zhang" <[EMAIL PROTECTED]> wrote:

> I'm a newcomer and want to install FreeBSD for study. Could you pls let me
> know which the stable edition of FreeBSD now? 

http://www.freebsd.org/
http://www.freebsd.org/releases/7.0R/announce.html

> And let me know how to subscribe the Q&A list that I prefer.

http://www.freebsd.org/community/mailinglists.html
http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpFi55vDLfTe.pgp
Description: PGP signature


Re: am I the only one, wrt gcc44 -- it is failing and I can't build octave or much else

2009-10-26 Thread Andreas Rudisch
On Mon, 26 Oct 2009 02:53:36 -0400
Henry Olyer  wrote:

> 'everything; is dying in /usr/ports/lang/gcc44

Update and clean out your ports tree (portsnap/ portsclean). And then
rebuild octave.

Take a look at the error message. Does it tell you to put something
like kern.maxdsiz="734003200" into /boot/loader.conf?

> I also want/need to run X, and my X session (just put up,) doesn't yet let
> me move the mouse.  I installed hal and dbus but what do I do now?
> 
> And where or where do I put the "ServerFlags" entry in my xorg.conf file.
>  I'm sorry, I just don't know these things...

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpbhb1exnbOn.pgp
Description: PGP signature


Re: PPPoE client+pf+nat

2009-10-27 Thread Andreas Rudisch
On Tue, 27 Oct 2009 06:51:26 -0700 (PDT)
Dánielisz László  wrote:

> Let's say I have two NICs in my PC: ext_if (for wan/pppoe connection) and 
> int_if for my LAN.
> How would you manage to get work NAT with pf using PPPoE from my ISP

As a start your pf.conf could look a bit like this:
#
ext_if = "tun0"
int_if = "em1"
localnet = $int_if:network

set block-policy return
set skip on lo0

scrub in all

nat on $ext_if from $localnet to any -> ($ext_if)

antispoof for ($ext_if)
antispoof for $int_if

block in log all

pass inet from { lo0, $localnet } to any
pass out on $ext_if all
#

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpxqmJCP5t4d.pgp
Description: PGP signature


Re: pppoe related

2009-11-10 Thread Andreas Rudisch
On Tue, 10 Nov 2009 06:52:22 -0800 (PST)
Dánielisz László  wrote:

> What do you use to keep alive your FreeBSD pppoe connection client even if 
> there is no traffic? What do you set to reconnect the pppoe client 
> automaticaly on any disconnection?

man ppp
-ddial

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpkFUClUr3Pn.pgp
Description: PGP signature


Re: ifconfig - GUI interface available?

2009-11-26 Thread Andreas Rudisch
On Thu, 26 Nov 2009 16:09:26 +0100
herbert langhans  wrote:

> Hi Daemons,
> I use my laptop in different wifi networks. To choose the ssid, passwords and 
> such necessities I have to use the all-knowing and confusing 'ifconfig'.
> 
> Question: Is there a GUI replacement for ifconfig? Where I can scan, choose 
> the ssid and do other basic things? I havent found anything in the ports 
> collection..

No idea, but what about using wpa_supplicant.
http://www.freebsd.org/doc/en/books/handbook/network-wireless.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgp1wpMxmqhPh.pgp
Description: PGP signature


Re: ifconfig - GUI interface available?

2009-11-26 Thread Andreas Rudisch
On Thu, 26 Nov 2009 16:35:55 +0100
herbert langhans  wrote:

> Its merely a matter of comfort. Like on OSX or the infamous MS-thing, there 
> is a simple window. It shows all the ssid, you click on one (maybe the 
> password is already assigned) and you get the certain wifi net. 
> 
> I use the laptop in different networks, often its auto selecting the wrong 
> one. It would be great to point and click and get the connection..

Hence the link and the keyword wpa_supplicant. Any way, here is another link:
http://www.freebsd.org/cgi/man.cgi?query=wpa_supplicant.conf&sektion=5

Take a look at the example section. You can define multiple networks.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgp8MBHHZFHRg.pgp
Description: PGP signature


Re: Root exploit for FreeBSD

2009-12-10 Thread Andreas Rudisch
On Thu, 10 Dec 2009 14:41:41 +
Anton Shterenlikht  wrote:

> FreeBSD isn't much used within the University (I understand) and has a
> (comparatively) poor security record.

In comparison to what it is supposed to have a poor security record?

> Most recently, for example:
> http://www.h-online.com/security/news/item/Root-exploit-for-FreeBSD-873352.html

Yes, and?

http://docs.freebsd.org/cgi/getmsg.cgi?fetch=0+0+archive/2009/freebsd-security-notifications/20091206.freebsd-security-notifications

http://security.freebsd.org/advisories/FreeBSD-SA-09:16.rtld.asc

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgps1e71xOvxr.pgp
Description: PGP signature


Re: Intel PRO/Wireless 2100 ipw WPA

2010-01-04 Thread Andreas Rudisch
On Sun, 3 Jan 2010 15:27:55 -0700 (MST)
Warren Block  wrote:

> Finishing a complete new install of 8-stable on a Thinkpad T42.  This 
> model came with the Intel PRO/wireless 2100.

I am not sure whether or not this information is still valid:
http://wiki.freebsd.org/8.0TODO#head-637d4dd09847005583f360ebb430cf32b64a4d8b

At the end of the week I will try to set up WLAN on a T41 using that
chip to see if I too run into problems.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgp1zPY2PZ2Hi.pgp
Description: PGP signature


Re: Updating from 7.2-STABLE FreeBSD 7.2-STABLE #901 to 8-release

2010-01-05 Thread Andreas Rudisch
On Mon, 04 Jan 2010 19:14:45 -0600
eculp  wrote:

> I intend to first upgrade my old, but up to date, 7.2-STABLE FreeBSD  
> 7.2-STABLE #901 to the latest 8.0 release

> I want to conserve as much as I can so I thought that I might give
> freebsd-update upgrade -r 8.0-RELEASE a try.

freebsd-update does not work on STABLE branches. You can only track a
RELEASE branch and a few Beta/RC releases with it.

> I am trying to follow the instructions at
> http://www.freebsd.org/releases/8.0R/announce.html

>From the first paragraph:
"Systems running 7.[012]-RELEASE, 8.0-BETA[1234], or 8.0-RC[123] can
upgrade"

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgp57onOdNsXA.pgp
Description: PGP signature


Re: Intel PRO/Wireless 2100 ipw WPA

2010-01-07 Thread Andreas Rudisch
On Sun, 3 Jan 2010 15:27:55 -0700 (MST)
Warren Block  wrote:

> Finishing a complete new install of 8-stable on a Thinkpad T42.  This 
> model came with the Intel PRO/wireless 2100.
> 
> So far, it has almost but not quite been able to connect using WPA on 
> FreeBSD.

Same here when trying to set up wireless LAN on a T41 with an Intel
PRO/wireless 2100.

> rc.conf:
> wlans_ipw0="wlan0"
> ifconfig_wlan0="WPA DHCP"
> 
> loader.conf:
> legal.intel_ipw.license_ack=1
> if_ipw_load="YES"

That's what I did too. No joy.

> ifconfig wlan0 scan sees all the nearby access points, including mine.

Here too.

> wpa_supplicant can't quite attach, but doesn't give up trying.

> /var/log/messages:
> Jan  3 14:49:40 paddy wpa_supplicant[392]: CTRL-EVENT-SCAN-RESULTS
> Jan  3 14:49:40 paddy wpa_supplicant[392]: Trying to associate with 
> 00:14:bf:cd:a2:0b (SSID='myssid' freq=2412 MHz)
> Jan  3 14:49:50 paddy wpa_supplicant[392]: Authentication with 
> 00:14:bf:cd:a2:0b timed out.

Appart from that I got the following in /var/log/messages: 
  kernel: ipw0: need multicast update callback

Since the same setup worked fine on FreeBSD 7.2, maybe this infomation
regarding ipw is correct after all:
http://wiki.freebsd.org/8.0TODO#head-637d4dd09847005583f360ebb430cf32b64a4d8b

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpF3TNzlhYSz.pgp
Description: PGP signature


Re: FreeBSD takes over Linux at kernel.org

2008-04-02 Thread Andreas Rudisch
On Wed, 2 Apr 2008 16:15:09 +0200 (CEST)
Wojciech Puchar <[EMAIL PROTECTED]> wrote:

> posted 31.03

> >> http://lkml.org/lkml/2008/3/31/367

But written on 1.4.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpKE9dValf5G.pgp
Description: PGP signature


Re: How to switch scheduler on 7.0?

2008-04-15 Thread Andreas Rudisch
On Tue, 15 Apr 2008 16:56:37 -0400
Robert Huff <[EMAIL PROTECTED]> wrote:

>   Am I correct in remembering SCHED_ULE /is/ the default for 7.0+?

4BSD ist the default scheduler of 7.0. ULE will be default for 7.1+.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgp6aDblHqBCi.pgp
Description: PGP signature


Re: rsync'able ports tree instead of csup?

2008-05-13 Thread Andreas Rudisch
On Tue, 13 May 2008 13:27:05 -0400
"Joachim Rosenfeld" <[EMAIL PROTECTED]> wrote:

> IMO, something like rsync would be *way* faster for this task.

Take a look at portsnap.
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/portsnap.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpBdIab9AdPe.pgp
Description: PGP signature


Re: FreeBSD 6.2 update

2008-06-03 Thread Andreas Rudisch
On Tue, 03 Jun 2008 11:31:40 +0200
Jos Chrispijn <[EMAIL PROTECTED]> wrote:

> I want to upgrade 6.2 to 6.3. Can you tell me where I can obtain the 
> 'FreeBSD Update utility as described in the FreeBSD 6.3 and FreeBSD 7.0
> release announcements' ? Thanks.

http://www.freebsd.org/releases/6.3R/announce.html

Scroll down to 'FreeBSD Update'.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpraNLiEQuw6.pgp
Description: PGP signature


Re: How to mirror the FreeBSD OS on two disks

2012-07-11 Thread Andreas Rudisch
On Wed, 11 Jul 2012 17:18:56 +0800
miles kuo  wrote:

> Does the FreeBSD support the disk mirror? How to implement it?

Hi,

take a look at:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/geom-mirror.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpSW4UNQVW29.pgp
Description: PGP signature


Re: fbsd 8.2 security updates -p3 -p4

2011-10-05 Thread Andreas Rudisch

Am 05.10.2011, 07:11 Uhr, schrieb n dhert :


Less than a week ago, there was security update -p3, tonight already -p4
rolled in..
Does somone know why ?


http://security.freebsd.org/advisories/FreeBSD-SA-11:05.unix.asc

Andreas
___
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: df with ZFS vs. zpool list

2011-12-15 Thread Andreas Rudisch
On Thu, 15 Dec 2011 14:20:05 +0100
Frank Lanitz  wrote:

> I'm a bit confused about a thing. I did create a zpool using
> zpool create storage ada1 ada2 ada3

> storage   145G42k 145G0%  /storage

> freebsd-test# zpool list
> NAME  SIZE  ALLOC   FREECAP  DEDUP  HEALTH  ALTROOT
> storage   222G  9.10M   222G 0%  1.00x  ONLINE  -

> P.P.S.
> freebsd-test# zpool status
>   NAMESTATE READ WRITE CKSUM
>   storage ONLINE   0 0 0

> raidz1-0  ONLINE   0 0 0
  ^^
>   ada1ONLINE   0 0 0
>   ada2ONLINE   0 0 0
>   ada3ONLINE   0 0 0

Hi,

everything look fine. The pool consists of 3 80GB hds, on them you
created a RAIDZ1 filesystem. In your case a third of the pool is used
for parity information.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpyyvzAdajXh.pgp
Description: PGP signature


Re: torrent file for FreeBSD iso

2011-12-18 Thread Andreas Rudisch
On Sun, 18 Dec 2011 14:35:55 +0200
Коньков Евгений  wrote:

> It will be very, very handy to put here .torrent file for download
> FreeBSD .iso
> 
> ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/i386/ISO-IMAGES/9.0/


Torrents can already be found here:

http://torrents.freebsd.org:8080/

Regards,
Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpYqV9X6HVJx.pgp
Description: PGP signature


Re: freebsd-update upgrade -r 7.4-RELEASE-p12

2013-10-07 Thread Andreas Rudisch
On Mon, 7 Oct 2013 15:22:17 -0400
alexus  wrote:

> bash-4.2# freebsd-update upgrade -r 7.4-RELEASE-p12

> Is there a way to upgrade 7.4-RELEASE-p5 to 7.4-RELEASE-p12 using
> freebsd-update now?

What about:
# freebsd-update fetch
# freebsd-update install

http://www.freebsd.org/security/

Andreas
--
 Andreas Rudisch
 
___
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: what am i doing wrong?!

2005-12-23 Thread Andreas Rudisch
On Thu, 2005-12-22 at 19:12 -0800, Gary Kline wrote:
>   So far, I've upgraded my second FBSD platform to 5.4.  With 
> 
> # USB support
> device  uhci# UHCI PCI->USB interface
> device  ohci# OHCI PCI->USB interface
> #device ehci# EHCI PCI->USB interface (USB 2.0)
> device  usb # USB Bus (required)
>   [[ ... ]]
> 
> device  uscanner# Scanners
> 
>   builtin.  I just tried xsane again; still no devices.  I'm
>   still minus /dev/uscanner[01].  How, pray tell,  do I create 
>   these?
> 
>   gary

I hope you have taken a look here already:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/scanners.html
http://www.freebsd.org/cgi/man.cgi?query=uscanner&sektion=4&manpath=FreeBSD+6.0-RELEASE
http://www.sane-project.org/sane-supported-devices.html

Merry Christmas
Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: 6.0-REL && isos of distfiles

2005-12-29 Thread Andreas Rudisch

On Thu, 29 Dec 2005 16:10:00 +0100, <[EMAIL PROTECTED]> wrote:

El día Thursday, December 29, 2005 a las 04:58:14PM +0200, Giorgos  
Keramidas escribió:



The distfiles are the sources of the ported programs.


I know.


They are
not specific to a single release.  You can just copy over the
distfiles from the older notebook and rebuild your ports.


That's not true. I copied over the /usr/ports/distfiles from my
5.4-REL to the 6.0-REL but the ports-collection which comes with
6.0-REL will use other sources while doing 'make install' in
/usr/ports/x11/kde:


Well, since 6.0 came out much after 5.4, it uses updated ports/
packages (new features, bugfixes), so the versions of some ports
of 6.0 will be higher than of 5.4. What is the point in installing a
new release of FreeBSD and using 'old' ports.

Just install FreeBSD 6.0 and use the packages provided with the RELEASE,
or cvsup your ports tree and do a fresh install of the ports you need.

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


Re: 6.0-REL && isos of distfiles

2005-12-29 Thread Andreas Rudisch

On Thu, 29 Dec 2005 17:10:25 +0100, <[EMAIL PROTECTED]> wrote:


My point was that I don't have a fast Internet link at home to fetch all
the (new) sources for the distfiles and I was looking for distfiles on
CD which match exactly the 6.0-REL ports collection requirements;


In that case use the packages from the install CDs and do _not_ use ports.

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


Re: problem with USB Mobile data cabel prolific 2303 FreeBSD v5.3

2006-01-06 Thread Andreas Rudisch
You might want to reorganize your message.

Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: System time suddenly changed after reboot.

2006-01-10 Thread Andreas Rudisch
On Tue, 2006-01-10 at 09:01 +, Scott Ballantyne wrote:
> Running 5.3-RELEASE.
> 
> After many years of using FreeBSD, and as many reboots or more, I had
> occasion to reboot today, and a few hours later discovered to my
> horror that the system time had suddenly been moved ahead to the year
> 2020!
> 
> I did the best I could with the resulting mess, but I am curious if
> anyone else has seen this, or what would cause it.  This is the same
> hardware I have been running for a couple of years now, and I haven't
> changed anything in the bios or system.
> 
> Thanks,
> Scott

Just an idea, but maybe the BIOS battery ran out of power and needs to
be replaced.

Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: How do I subscribe to this list?

2006-01-16 Thread Andreas Rudisch
On Mon, 2006-01-16 at 13:05 -0600, Rick McCombs wrote:
> How do I subscribe to this list?
> I could not find on the web how to subcribe.
> I tried majordomo and apparently there is no majordomo.
> 
> Thanks

http://www.freebsd.org/community/mailinglists.html

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: Screen Capture

2006-01-30 Thread Andreas Rudisch
On Mon, 2006-01-30 at 10:51 -0800, ross wrote:
> I can't seem to figure out how to make a screen capture. Is there an  
> ability hidden in X11 or do I need to install a port? I'm running 6.0 and  
> also fluxbox as my window manager.

Try this:
/usr/ports/graphics/scrot

Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: Playing streaming music

2006-02-01 Thread Andreas Rudisch
On Wed, 01 Feb 2006 22:12:41 +0100, JD Arnold <[EMAIL PROTECTED]>  
wrote:



Now that I have my sound card working, I was wondering if there is a
port to play streaming music from my favorite college radio station?
The live streams from http://www.wzbc.com send me "PLS" files, which
I understand to be WinAmp "playlist" files.  Is there a FreeBSD app
that can play this streaming format?

I installed XMMS, but I'm not really sure if there is a plugin for
these files.


PLS-files are usually only normal text files containing a playlist of
music files or URLs to media streams. All you need to do is open the
PLS-file and write down the URL. mplayer, vlc or xmms should all be able
to play the music stream.

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


Re: Desperate

2006-02-24 Thread Andreas Rudisch
On Fri, 2006-02-24 at 16:00 -0500, Grant Peel wrote:
> Hi all,
> 
> I am getting server 'freeze ups". 4 in the past 3 days, on a very new server 
> with no apparent hardware issues.
> 
> There is nothing showing in any log anywhere. The sytem just stops 
> responding.
> 
> Can anyone help me with understanding how to setup crash dumps and how to 
> get to them and root cause the issue after the fact?

You might want to give us some information about the soft- and hardware.

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: Mail client like mulberry

2006-03-14 Thread Andreas Rudisch
On Wed, 15 Mar 2006 00:40:14 +0100, Paul Schmehl <[EMAIL PROTECTED]>  
wrote:


--On March 14, 2006 4:32:23 PM -0700 "Chad Leigh -- Shire.Net LLC"  
<[EMAIL PROTECTED]> wrote:


Kind of like the idea of a dynamic "smart folder" where the criterion   
is other folders with new mail?


Exactly.  Instead of copying new mail to a Favorites folder or  
displaying *all* Favorites folders, this folder only displays a folder  
if there's new mail in it.


Do you have a MUA in mind?


You could give the build-in email client of Opera - M2 a try (pop3, imap,
rss, atom, newsgroup support). It saves emails only once, has very nice
filters, auto-identifies mailing lists. Unread messages have their own
folder, once read they go to the correct view. All messages are indexed
and saved in a database. Find-as-you-type is very nice and fast.

Active contacts/threads are put in a seperate view, so they can be found
easily. Sort/search by label you have given to an email or by attachment.
etc.

Just take a look here and test it yourself:
http://www.opera.com/support/tutorials/mail/

BUT one thing is missing and might be the 'showstopper' for you, SMIME/PGP.
Hopefully this will be added in the near future, since they have already
changed the client a bit for Opera version 9.0.

Right now M2 is a good cross-plattform email client, when PGP will finally
be added it should be a _very_ good one.

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


Re: FreeBSD Newsletters

2006-03-15 Thread Andreas Rudisch
On Wed, 15 Mar 2006 08:58:00 +0100, Michael T. Almario  
<[EMAIL PROTECTED]> wrote:



Greetings,

I would just like to find out if you send out FreeBSD newsletters.  If  
so, how do we subscribe?


Newsletters about what?

Information about mailing lists can be found here:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL

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


Re: problem with ia64 installation cd

2006-03-16 Thread Andreas Rudisch

On Fri, 17 Mar 2006 00:29:53 +0100, Mario Beltran <[EMAIL PROTECTED]> wrote:


Kris Kennaway escribió:


You have an amd64 box, and amd64 != ia64.

Kris


In the bios information appears:

Intel  Pentium D CPU 3.0 GHz
multiple core capable = yes (dual)
64 bits technology = yes (intel EM64T)

any suggestions? i will apreciate


http://www.freebsd.org/releases/6.0R/hardware-ia64.html#PROC-IA64
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Installing FreeBSD with undetected USB keyboard

2006-03-19 Thread Andreas Rudisch

On Mon, 20 Mar 2006 08:04:01 +0100, Kenyon Ralph <[EMAIL PROTECTED]> wrote:


I have a USB Microsoft Natural Keyboard connected to an Intel
SE440BX-2 motherboard.  The keyboard works fine in the BIOS setup and
in Linux booted from a CD.  Booting with a
6.0-RELEASE-i386-bootonly.iso CD gives me no keyboard functionality at
all.


Have you tried option 7 'Boot FreeBSD with USB keyboard' of the boot menu  
yet?


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


Re: Filesystem layout with sperated /boot partition

2006-04-03 Thread Andreas Rudisch

On Mon, 03 Apr 2006 08:48:30 +0200, Andrew Reitz <[EMAIL PROTECTED]> wrote:

Dual booting FreeBSD along with other Operating Systems is definitely  
possible. And you're right, I couldn't find any reference to how this  
can be done in the Handbook either. :)


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/boot.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Azureus Program crash

2005-03-28 Thread Andreas Rudisch
On Mon, 2005-03-28 at 22:59 +1000, Warren wrote:
> For some reason Azureus is sucking up a lot of my computer and has a habbit 
> of 
> shutting itself down for no apparent reason.
> 
> It wont run in GDB so i can see whats going on .. is there any other way i 
> can 
> debug it to find out why its shutting itself down.

Take a look at my posting from Sat, 26 Mar 2005 09:41:15 +0100
"java / azureus core dumps if cputype is set in make.conf"

Apart from that I had similar problems with the latest stable version of
Azureus 2.2.0.2, where it would shut down without any good reason.
According to the Azureus website there might be a problem with the
caching.

I tested the old stable version 2.1.0.4 (just copied the jar-file
into /usr/local/share/java/classes and renamed it to azureus.jar) and it
worked fine.

Right now I am using the beta-build 2.2.0.3_B53 (latest B54, still need
to test this myself) which seem to be quite stable and faster. Give it a
try.

  Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: JDK on FreeBSD

2005-03-30 Thread Andreas Rudisch
On Wed, 2005-03-30 at 04:42 -0800, Spiral Eyed Girl wrote:
> Is there an easy way to get the java development kit on freebsd? I can't 
> seem to find any info on it anywhere.
> 
> Thanks.
> 
> S

http://www.freebsd.org/java/

 Andreas
-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: x11 help

2005-04-07 Thread Andreas Rudisch
On Thu, 2005-04-07 at 08:30 -0500, Dennis Olvany wrote:
> I'm attempting to run the Doom 3 Linux binary on FreeBSD 5.3. I really have 
> no idea how to get x11/Doom 3 started. I've tested my x11 configuration with 
> [Xorg -config xorg.conf.new] and it seems to work well. I'm sure Doom 3 
> expects x11 to already be running in the form of KDE or Gnome, but I would 
> like to run Doom 3 directly from the command line. I have no idea how to get 
> x11 started and then launch Doom 3.

Make sure you have a nvidia graphiccard. install the nvidia drivers from
the ports. fetch the linux installer for Doom3:

ftp://ftp.idsoftware.com/idstuff/doom3/linux/doom3-linux-1.1.1286.x86.run

Install Doom3 and play.

Have fun,
 Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Error with make buildworld

2005-06-17 Thread Andreas Rudisch
On Fri, 2005-06-17 at 15:41 -0500, Dan Braun wrote:
> I'm trying to run make buildworld to upgrade FreeBSD 5.0 to 5.4.  When I run
> make buildworld I get the following error:
> "/etc/make.conf", line 1: Need an operator
> make: fatal errors encountered cannot continue

Would it not be much easier to backup all important data and do a normal
installation?

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Explaining FreeBSD features

2005-06-21 Thread Andreas Rudisch
On Mon, 2005-06-20 at 14:55 -0500, Fafa Hafiz Krantz wrote:
> Hello.
> 
> Thank you all for everything so far.
> 
> But I am not looking for comparisons.
> 
> I am looking for stuff that has been written so that people can understand.
> 
> Let's say this:
> 
> Multi-threaded SMP architecture capable of executing the kernel in parallel 
> on multiple processors, and with kernel preemption, allowing high priority 
> kernel tasks to preempt other kernel activity, reducing latency. This 
> includes a multi-threaded network stack and a multi-threaded virtual memory 
> subsystem. With FreeBSD 6.x, support for a fully parallel VFS allows the UFS 
> file system to run on multiple processors simultaneously, permitting load 
> sharing of CPU-intensive I/O optimization.
> 
> In the real world, that ought to sound more like:
> 
> FreeBSD includes support for symmetric multiprocessing and multithreading. 
> This makes the kernel lock down levels of interfaces and buffers, minimizing 
> the chance of threads on different processors blocking each other, to give 
> maximum performance on multiprocessor systems.
> 
> Thanks.

But then again, if you are new to computers or are not that into the
technical stuff, neither the first nor the second description would make
much sense, or is easy to understand. So I for one would stick with the
first. 

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Freebsd Print Server

2005-06-21 Thread Andreas Rudisch
On Tue, 2005-06-21 at 15:31 -0400, Lord Raiden wrote:
>  Hi all.  I'm building a Freebsd 5.3 based mini-itx file server on 
> my network here and I'd like to also turn it into a print server.  Thing 
> is, I've got an HP Deskjet 842c printer that connects via USB that is my 
> printer.  It's not lan capable which kinda complicates things.  THEREFORE, 
> I'd like to connect it via USB to the new file server, then set it up to do 
> printing for the whole network.  Now, my questions are this.
> 
> 1.  What do I need to do to set this up on the file server?  Heck, if 
> someone's got a tutorial somewhere on setting up a print server using 
> freebsd and can tell me what special configs I need to make my usb 
> connected HP printer work off it, that'd be awesome.
> 
> 2.  What do I need to do to get my freebsd workstation to print to it?  To 
> date I haven't gotten around to configuring printing on the Freebsd 
> Workstation (it's running 4.10) yet, so I think it's time I did 
> that.  Again, a tutorial would be welcome.
> 
> 3.  What do I have to do special, if anything, to allow my windows machines 
> to print to the printer via the print/file server on the network?  I'm 
> running both 98se and WinXP Pro on them.
> 
>  Sorry to bug you guys with something so trivial, but google wasn't 
> being friendly to me with this subject, so I'm coming to you guys 
> next.  Thanks in advance for any answers.  :D
> 
> 
> 
> Steven Lake
> -Owner/Webmaster
> Raiden's Realm
> www.raiden.net


Here you go:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/printing.html
http://us4.samba.org/samba/docs/man/Samba-HOWTO-Collection/printing.html#id2579155

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: FreeBSD & mini-ITX

2005-06-22 Thread Andreas Rudisch
On Wed, 2005-06-22 at 14:43 -0700, Benjamin Keating wrote:
> I've been eyeing up these mini-ITX boards - would like to make a quite
> little file server. Does anyone here run a mini-ITX board (what
> model)? Does it work out of the box? Anything not supported? I'd go
> for one of VIA's as AMD's and others are still a little new and
> pricey. Recommend a shop to purchase from (in the US)?
> 
> Thanks!
> - bpk

I have tested a Via EPIA M1 a while ago. X installed and worked
fine, but the internal graphic was to slow to playback xvid-movies with
mplayer, an external pci-graphic card should solve this. The soundchip
was supported out of the box too.

Right now I have a Via EPIA PD1 (with two 10/100MBit LAN adapters
onboard) with 512MB RAM running as a home dsl router / gateway /
print-/fileserver but only for a small amount of not important data with
one harddisk drive.

I am quite happy with it, since it get its job done and does not use
much electricity. 

To give you an idea of its speed: a 'make buildworld' of FreeBSD 5.4 is
done in about 2 hours. 

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: How to go about the installation

2005-06-27 Thread Andreas Rudisch
On Mon, 2005-06-27 at 10:33 +0530, Jayesh Jayan wrote:
> Hi,
> 
> I am bit new to freebsd. I would like to install FreeBSD with below 
> specifications. How do I go about it.
> 
> My Hardware -- a dell server with below configuration.
> 
>  CPU: Dual Xeon 3.0GHz/2MB Cache
> RAM: 2GB (with room to grow to 12GB)
> Drive: 3 x 73GB SCSI with RAID 5 config
> Power: Dual power supply
> Rack: 2U and the server can take 6 drives.
> 
> 
> So can please let me know on how to go about installing freebsd 5.3 on the 
> above configuration with RAID 5 hardware.
> 
> Thank you.
> 

You do not want FreeBSD 5.3 , you want FreeBSD 5.4 . Make sure your
RAID-controller is supported and read ..

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install.html
http://www.freebsd.org/releases/5.4R/hardware.html
http://www.freebsd.org/releases/5.4R/installation-i386.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Azureus Update Problem

2005-07-01 Thread Andreas Rudisch
On Fri, 2005-07-01 at 15:38 +1000, Warren wrote:
> im running FreeBSD 5.4-STABLE CVSUPD and everything updated as of about 3 hrs 
> ago.  
> 
> Each time i try and update Azureus from 2.2.0.2 to 2.3.0.4 it fails and on 
> restart sais to check the update.log which dosent exist.  I have tried 
> re-installing Azureus from scratch running it as root and even as far as 
> giving everything possible assoicated with it to chmod +777 and still it 
> refuses to update and i have no idea why or if there is another way of 
> updating it.
> 
> Any information would be appreciated.

http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-June/089802.html

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Azureus Update Problem

2005-07-01 Thread Andreas Rudisch
On Fri, 2005-07-01 at 18:18 +1000, Warren wrote:

> ok, this worked an updated the Azureus version, but now not one of my 
> torrents 
> is downloading, even though there all showing green and testing the ports 
> from 6881-6889 all work in the NAT/Firewall test and were all downloading 
> before upgrading.  What is new/changed that may perhaps be stopping the 
> torrents from d/l ?


http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-June/089802.html

Since version 2.2.0.3_B60 Azureus does NOT work with Java 1.5 correctly
anymore, so you will have to edit the azureus start
script /usr/local/bin/azureus to use Java 1.4:

find and change the following variable: JAVA_VERSION="1.4+"

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Azureus Update Problem

2005-07-01 Thread Andreas Rudisch
On Fri, 2005-07-01 at 11:33 +0200, Andreas Rudisch wrote:
> On Fri, 2005-07-01 at 18:18 +1000, Warren wrote:
> 
> > ok, this worked an updated the Azureus version, but now not one of my 
> > torrents 
> > is downloading, even though there all showing green and testing the ports 
> > from 6881-6889 all work in the NAT/Firewall test and were all downloading 
> > before upgrading.  What is new/changed that may perhaps be stopping the 
> > torrents from d/l ?
> 
> 
> http://lists.freebsd.org/mailman/htdig/freebsd-questions/2005-June/089802.html
> 
> Since version 2.2.0.3_B60 Azureus does NOT work with Java 1.5 correctly
> anymore, so you will have to edit the azureus start
> script /usr/local/bin/azureus to use Java 1.4:
> 
> find and change the following variable: JAVA_VERSION="1.4+"

oh, and make sure you have Java 1.4 installed of course.

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Anyone running FreeBSD 4.x or 5.x on a 'VIA EPIA PD' mini-ITX

2005-07-02 Thread Andreas Rudisch
On Sat, 2005-07-02 at 18:24 +0800, Paul Hamilton wrote:
> Hi,
>  
> Anyone running FreeBSD 4.x or 5.x on a 'VIA EPIA PD'  mini-ITX
>  
> I would be interested to see if you get the full chipset functionality, ie.
> both NIC's, IDE HD, VGA (X-Windows or just CLI), Audio, USB?  How about the
> Digital IO section?
>  
> They look very nice :-)
>  
> http://www.viaembedded.com/product/4/8/epia_pdh.jpg
>  
> Cheers,
>  
> Paul Hamilton

Hi Paul, 

I use a VIA EPIA PD-1 as a small dsl- router / ftp / print /
whatever-server for my LAN here at home running FreeBSD 5.4. The NICs,
HDD, USB, CLI work fine. Audio and X-Windows should work too. (I have
only tested this on an EPIA M-1, but there it worked without any
problems. The onboard graphic chip is fast enough for most 2D
application, but it was to slow for me to playback xvid/divx, but an
additional PCI graphic card should solve this problem.) When transfering
data via ftp I get about 10MB/s up/down. Make buildworld takes about two
hours. All in all, it is a nice system and fits my needs. I like it.

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Azureus Update Problem

2005-07-04 Thread Andreas Rudisch
On Mon, 2005-07-04 at 16:29 -0400, Eric Ekong wrote:
> Has anyone successfully accomplished this with the latest release of 
> Azureus and is it possible to switch the jdk15 for this release? 

Azureus 2.3.0.4 and 2.3.0.5_B4 work fine here with Java 1.4. But Azureus
still does not work with Java 1.5. Even Windows user had to update their
Java to get Az 2.3.0.0 to run properly, but I think this patch has not
found its way to the FreeBSD port yet. (Keep in mind, jdk15 is still
considered 'alpha' quality)

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Top output isn't quite right

2005-07-16 Thread Andreas Rudisch
On Sat, 2005-07-16 at 13:54 -0400, Louis LeBlanc wrote:
> I'm confused about the output from top in 5.4-RELEASE-p4.  The gkrellm
> CPU monitor is telling me I'm running at 95% load while updating the
> portsdb, but top tells me everything is taking 0.0% of the CPU.
> 
> It may have something to do with the CPU HT being enabled, but I don't
> know.  The system has one physical CPU, but with HT, some processes
> run on CPU 0 while others run on CPU 1.
> 
> Any idea how to get top to get the actual (or virtual) CPU loads?
> 
> Here is the output I'm seeing:
> 
> last pid: 82084;  load averages:  2.10,  1.88,  1.17 up 9+17:06:23  13:47:44
> 131 processes: 3 running, 128 sleeping
> CPU states: 73.3% user,  0.0% nice, 23.5% system,  0.0% interrupt, 3.1% idle
> Mem: 296M Active, 477M Inact, 148M Wired, 27M Cache, 111M Buf, 44M Free
> Swap: 2048M Total, 70M Used, 1978M Free, 3% Inuse

User and System use about 97% of CPU load together, I do not see a
problem, everything seems to be as it should.

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: only see cpu0 working after rebuilding kernel with SMP support

2005-07-22 Thread Andreas Rudisch
On Fri, 2005-07-22 at 00:12 -0700, Lei Sun wrote:
> Hi,
> I wanted to enable the second logical CPU on my P4 HT. and...
> Something seems to be strange to me as:
> 
> All of the processes are running with CPU0 and none is working with CPU1

> Here is the steps and places I read and followed
> 
> 1. I followed the custom kernel documents from
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
> http://www.freebsddiary.org/smp.php
> 
> and compiled the custom kernel
> 
> and my kernel config:
> -
> ...
> options SMP
> device  apic# I/O APIC
> ...
> -
> 
> 2. Then I compiled the custom kernel, and installed it
> 
> 3. I check the startup output, and found
> SMP: AP CPU #1 Launched!
> 
> So my question is, how come in top, only cpu0 is working, and no entry for 
> cpu1?
> 
> Thanks in advance:)
> 
> Lei


Take a look at this:

ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-05:09.htt.asc

Andreas.

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Staircaseeffect with HP Deskjet Plus

2005-10-18 Thread Andreas Rudisch
On Fri, 14 Oct 2005 12:29:26 +0200, Stevan Tiefert  
<[EMAIL PROTECTED]> wrote:



You didn't read the e-mail... :-(

cyb schrieb:
On Thu, 13 Oct 2005 13:03:08 +0200, Stevan Tiefert   
<[EMAIL PROTECTED]> wrote:



Hello list,

when I want to print an ASCII-text via lpr to my HP Deskjet Plus I got  
a  staircaseeffect on my printer.
   
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/printing-advanced.html  
 9.4.1.3 Simulating PostScript on Non PostScript Printers


Actually I did, did you read 9.4.1.3 ?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: newbie

2005-10-24 Thread Andreas Rudisch
On Mon, 2005-10-24 at 07:51 +0200, Eyad Salah wrote:
> I'm kinda new to Linux, How can I start FreeBSD GUI (Like windows)?

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: sound on FreeBSD

2005-10-29 Thread Andreas Rudisch
On Sun, 30 Oct 2005 02:15:32 +0200, Jim Pazarena <[EMAIL PROTECTED]>  
wrote:



does anyone have a link where a web page has been created
which explains clearly how to install sound drivers
_and_ test them I.E. play a sound?


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/multimedia.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-setup.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Error Compiling Buildworld when upgrading from 5 to 6

2005-11-09 Thread Andreas Rudisch
On Wed, 2005-11-09 at 21:17 +1000, Warren wrote:
> Im trying to upgrade my 5.4-STABLE FreeBSD machine to 6 via CVS and have 
> problems compiling Buildworld.
> 
> Any help/pointers to ways to do the upgrade i may be missing are most welcome.
> -
> 
> 
> ===> sbin/ipf/libipf (obj)
> /usr/obj/usr/src/sbin/ipf/libipf created for /usr/src/sbin/ipf/libipf
> ===> sbin/ipf/ipf (obj)
> mkdir: /usr/obj/usr/src/sbin/ipf/ipf: File exists
> *** Error code 1
> 
> Stop in /usr/src/sbin/ipf/ipf.
> *** Error code 1
> 
> Stop in /usr/src/sbin/ipf.
> *** Error code 1
> 
> Stop in /usr/src/sbin.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.
> 

You might want to read section 20.4.16.6 of the Handbook.
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: make buildworld failure

2005-12-13 Thread Andreas Rudisch
On Tue, 2005-12-13 at 09:54 -0600, Dan Ross wrote:
> I am trying to build a new kernel with smp.  I started with make clean 
> and got no errors.
> I then type make buildworld from /usr/src directory

> suggestions?

1. You do not need to recompile world if you only want to build a new
kernel with smp support.

2. read:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
especially chapter 20.4.10 and 20.4.16.6.

Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: can't mount msdos fs on freebsd6?

2005-12-13 Thread Andreas Rudisch
On Tue, 2005-12-13 at 09:08 -0800, Jeff D. Hamann wrote:
> The results I get back from mount are:
> 
> mothra# mount -t msdos /dev/ad0s2 /data
> mount_msdosfs: /dev/ad0s2: Invalid argument

> Help?

#mount -t msdosfs /dev/ad0s2 /data
  or
#mount_msdosfs /dev/ad0s2 /data

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


signature.asc
Description: This is a digitally signed message part


Re: download cvsup?

2010-10-17 Thread Andreas Rudisch
On Sun, 17 Oct 2010 23:44:42 -0400
Tim Dunphy  wrote:

>  I accidentally deleted my ports tree thinking that cvsup was already
> installed. it wasn't. :(

csup is part of the system, no need to use cvsup from the ports any longer.

>  I seem to be having a little trouble resolving external hosts tho my
> trusty named server on this host is working fine to resolve the local
> network. I need to reinstall my ports with sysinstall but to do that i
> need to resolve externally of course. I think this problem could use a
> fresh set of eyes.

For a start take a look at the cable/connection.

>   media: Ethernet autoselect (none)
>   status: no carrier

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpx4ZwAOBVFk.pgp
Description: PGP signature


Re: zfs on 7.3 with 7.2 world

2010-11-14 Thread Andreas Rudisch
On Mon, 15 Nov 2010 09:22:06 +0300
cronfy  wrote:

> I want to start using ZFS v13 and I have FreeBSD 7.2 world with 7.3 kernel.
>
> And if I need to upgrade something in the world - what should it be?

Why do you not update FreeBSD properly? If you want to use 7.3, install
kernel _and_ world. (I would suggest using 8.1 though.)

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading.html

It is far easier to help you once you run into problems, if your system
is consistent.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpHmEbUBA9CS.pgp
Description: PGP signature


Re: Just wanted to install vim - had to spend entire day building X11

2011-01-10 Thread Andreas Rudisch
On Sun, 9 Jan 2011 22:19:02 +0100
Tony Maserati  wrote:

> Hi,
> 
> I'm just curious - what's the point of including X11 as a dependency to vim?
> And then making a vim-lite port (which you usually discover after installing
> X11). How about making it vim and vim-x11 instead?

I guess the next time you should simply install: /usr/ports/editors/vim-lite/

Andreas.
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpSevs8cxKAJ.pgp
Description: PGP signature


Re: openbsd packet firewall

2012-09-07 Thread Andreas Rudisch
On Thu, 6 Sep 2012 23:41:44 -0400 (EDT)
Darrel  wrote:

> Packet Filter does not work 

Hi,

you might want to give more information other than that.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565
___
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: FreeBSD update

2012-10-08 Thread Andreas Rudisch
On Mon, 08 Oct 2012 16:52:24 +0200
Istvan Gabor  wrote:

> As I remember correctly during the fetch I saw a message that the current 
> patch level is p4.
> After rebooting the computer uname gives p3 on the updated system:
>
> Why does uname reports p3 while freebsd-update indicates p4 state?

Hi,

if freebsd-update does not update the kernel uname will not show the
'correct' patch level.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565
___
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: FreeBSD update

2012-10-09 Thread Andreas Rudisch
On Tue, 09 Oct 2012 11:47:02 +0200
Istvan Gabor  wrote:

> FreeBSD Handbook (at the end of section 25.2.2) says:
> 
> "However, freebsd-update will always update the /usr/src/sys/conf/newvers.sh 
> file.
> The current patch level (as indicated by the -p number reported by uname -r) 
> is obtained
> from this file. Rebuilding your custom kernel, even if nothing else changed, 
> will allow
> uname(1) to accurately report the current patch level of the system."
> 
> From this I conclude that if I rebuild the kernel (the general kernel, not a 
> custom kernel),
> it should reflect patch level correctly.

Yes.

> This raises another question: are the updates made sequentially, as p1, p2, 
> etc.?
> This would explain why the kernel stayed at p3 level while the system was 
> updated to
> p4.

Yes.

> I Suppose if the update was done in one step after fetching and applying all
> update patches the kernel should reflect the system's patch level. Is this 
> correct?

Well, it 'should', but it does not, since freebsd-update does not work
that way. p4 did not require rebuilding the kernel, so it had not been
done.

> I am confused a little bit.

Feel free to browse the mailing lists, you are not the first one to be
confused.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565
___
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: WARNING: FreeBSD 9.0-RELEASE is approaching its End-of-Life date.

2012-11-15 Thread Andreas Rudisch
On Thu, 15 Nov 2012 23:46:53 +0100
Matthias Petermann  wrote:

> Thanks for the clearification. One technical thing: is it possible, to upgrade
> from FreeBSD 9.0 to 9.1 with the freebsd-update utility? 

Yes, it is.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565
___
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: WARNING: FreeBSD 9.0-RELEASE is approaching its End-of-Life date.

2012-11-16 Thread Andreas Rudisch
On Thu, 15 Nov 2012 17:04:17 -0800
mer...@stonehenge.com (Randal L. Schwartz) wrote:

> >> Thanks for the clearification. One technical thing: is it possible, to 
> >> upgrade
> >> from FreeBSD 9.0 to 9.1 with the freebsd-update utility? 
> 
> Andreas> Yes, it is.
> 
> Can I go from 8.3 directly to 9.1, or should I stop over at 9.0 first?

Once 9.1 will be release soon, you will see something like that:
  http://www.freebsd.org/releases/9.0R/installation.html

You should of course backup your data. I did an upgrade from 8.3 to 9.1-RC3
recently without problems. But keep in mind that you will have to recompile/
reinstall all installed ports. I usually delete all installed ports before
the upgrade to a new major version.

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565
___
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: WARNING: FreeBSD 9.0-RELEASE is approaching its End-of-Life date.

2012-11-16 Thread Andreas Rudisch
On Fri, 16 Nov 2012 08:52:02 +0100
"Matthias Petermann"  wrote:

>do I understand it right - the default behaviour of freebsd-update will
>be to update a 9.0 system to 9.1 when it becomes available? So this is
>a rolling procedure?
>I ask this because I could not find a parameter etc. in the man page
>which may influent this, e.g. to limit updates to stay in a main
>release (9.0, 9.0-p1, 9.0-p., 9.0-p12) but don't upgrade to 9.1.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading-freebsdupdate.html

Andreas
--
GnuPG key  : 0x2A573565|http://www.gnupg.org/howtos/de/
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565
___
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: Azureus downloads slow

2006-09-03 Thread Andreas Rudisch
On Sat, 2 Sep 2006 18:06:57 -0500 (CDT)
[EMAIL PROTECTED] wrote:

> I know all that. I am saying that Azureus on FreeBSD runs slower than
> d/ling the same torrent on a windows or even a linux (ubuntu) box when
> getting the same torrent from the same network.

You did not mention that before. Anyway, make sure to run Azureus on
Java 1.4.2. Neither 1.5.0 from ports nor Diablo from the FreeBSD
Foundation seem to work well with it.

At least for me.

Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpoZKwGxEXzo.pgp
Description: PGP signature


Re: Azureus downloads slow

2006-09-03 Thread Andreas Rudisch
On Sun, 3 Sep 2006 09:48:19 +1000
"Wei Hu" <[EMAIL PROTECTED]> wrote:

> Give utorrent a try. Azureus is slow and takes too much resources.

utorrent is Windows-only. Do not come with the excuse to run it with Wine. And 
Azureus is far from being slow. It might use a few more resources than other 
clients, but I have no problem running it on FreeBSD 6.1 downloading torrents 
at almost full speed of my internet connection.

Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpQgAuxNUjzn.pgp
Description: PGP signature


Re: FTP server behind router/gateway

2006-09-14 Thread Andreas Rudisch

On Thu, 14 Sep 2006 16:40:18 +0200, <[EMAIL PROTECTED]> wrote:


I have a FreeBSD 6.1 box running behind a router/gateway.  When it tries
to go into passive mode, it returns it's internal 192.168. ip address to
the client which the client stupidly uses to try to connect to.  I've
confirmed this by tyring to FTP from several external systems (windows &
linux).  Is there anyway to get the FreeBSD box to return the external
address without making it act as the router/gateway?

Thanks,
Marty


Maybe this site will help a bit:

http://slacksite.com/other/ftp.html

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


Re: Unsubscribe me please

2006-11-18 Thread Andreas Rudisch
On Sat, 18 Nov 2006 09:42:26 +0100, Clyde's Human Unit  
<[EMAIL PROTECTED]> wrote:



Dear FreeBSD,

I have no idea how this has happened, but somehow I have been put on  
your mailing lists.


I do not use your products or service and it has no application for me.

I would appreciate it if you would remove me from your mailing list.

Sincerely,



Read the last line on _any_ email on this list.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Newbie--new install on Core 2 Duo?

2007-02-14 Thread Andreas Rudisch
On Wed, 14 Feb 2007 07:44:57 +0100, Abdullah Ibn Hamad Al-Marri  
<[EMAIL PROTECTED]> wrote:



Why shall you do the double job by installing the FreeBSD, then
reinstall it after adding SMP option to kernel? Couldn't we get
FreeBSD to install the right kernel based on the number of  the cpu(s)
in the system?


I recently installed FreeBSD 6.2 from scratch and the installer
automagically installed the SMP-kernel. So this feature is already
there.

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


Re: NEED HELP

2007-02-14 Thread Andreas Rudisch
On Wed, 14 Feb 2007 08:57:51 +0100, Ata ur Rehman Alvi  
<[EMAIL PROTECTED]> wrote:



HELLO

I NEED YOUR HELP REGARDING INSTALLING FREE BSD ON MY NEWLY BOUGHT PC.


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install.html

Just read this chapter of the handbook and try not to use capital letters
all time.

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


Re: Install Freebsd 5.4

2007-03-09 Thread Andreas Rudisch
On Thu, 08 Mar 2007 16:46:49 +0100, Thomas H. Bellus <[EMAIL PROTECTED]>  
wrote:


I have not been able to see the screens for configuring X for my monitor  
or

video card. I have ver 5.4, I have used both the standard install and the
custom install. I have used the most recent install documents on the
internet and I have a copy of Complete BSD by Greg Lehey.


I am new to BSD but I want to get this install to work. I can not get
anytype of graphical interface.


1.) Why do you not install FreeBSD 6.2 if you are new?
2.) read http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11.html

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


Re: CPUTYPE for VIA EPIA M-Series Mini-ITX

2007-03-15 Thread Andreas Rudisch
On Thu, 15 Mar 2007 02:44:21 +0100, Jeffrey Goldberg  
<[EMAIL PROTECTED]> wrote:



I have one of these

CPU: VIA C3 Nehemiah (999.52-MHz 686-class CPU)
   Origin = "CentaurHauls"  Id = 0x691  Stepping = 1
   Features=0x380b035

And 6.2-RELEASE p2

When I set CPUTYPE=c3 in /etc/make.conf the world seemed to build just  
fine, but (at least) gcc ended up broken.  Most compiling attempts after  
that ended up with gcc reporting an internal error.


Does anyone have a similar system?  And what CPUTYPE or local tuning do  
you recommend?


I have a Via Epia PD1 with the same CPU and use:

CPUTYPE= i686

Although it does not seem to be mentioned in  
/usr/share/examples/etc/make.conf

anymore (afaik i686==pentiumpro), it works just fine.


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


Re: How to create torrent files?

2006-12-18 Thread Andreas Rudisch
On Mon, 18 Dec 2006 20:25:51 +0100
Erik Norgaard <[EMAIL PROTECTED]> wrote:

> Hi:
>
> Which tools are available for creating torrent files? I am looking for a
> commandline tool or a perl module that would permit creating a torrent
> file like this
>
> $ maketorrent -t  -o .torrent path
>
> But it seems only py-torrent provides a tool and it's GUI based.
>
> Thanks, Erik

Hi Erik,

one tool you could use is ctorrent.

/usr/ports/net-p2p/ctorrent/
ctorrent -t -u tracker_url -s torrent_name source

Andreas

--
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpK8DL7ZZ844.pgp
Description: PGP signature


Re: 6.2 rc2, VMWARE, seeing USB disks

2006-12-31 Thread Andreas Rudisch
On Sun, 31 Dec 2006 12:40:29 +0100
"Christoph P. Kukulies" <[EMAIL PROTECTED]> wrote:

> Hi,
>
> I installed FreeBSD 6.2 rc2 in a VMWARE VM machine. So far so good.
> It boots and works fine. Just I cannot see a hard disk that I have connected
> to a USB port.

What about mounting the hard disk?
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/usb-disks.html

Andreas

--
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpZ8J6undted.pgp
Description: PGP signature


Re: is THIS why the 6.2 release seems stalled ?

2007-01-09 Thread Andreas Rudisch
On Wed, 10 Jan 2007 00:08:45 +0100, Nikolas Britton  
<[EMAIL PROTECTED]> wrote:



Why then? Are you guys ever going to do something about Xorg DRI/DRM
for Radeon cards, Java, and Flash support? More importantly:


Since when is Xorg a part of FreeBSD?
Java ports / Java-diablo anyone?


1. Xen Dom0 support?
2. Fix SATA RAID driver problems?
3. Better chipset support for new 51xx Xeon and Core 2 Duo systems?
4. ZFS support?
5. Better support for 2TB, or greater, RAID arrays: (fsck, etc.)?
6. Speed up GigE and 10GigE stuff? checksum offloading, Interrupt load
problems, packet processing speed, etc?
7. Better SMP support, GIANT lock in RAID/LAN drivers, etc...


?


Why should I continue using FreeBSD when the project never delivers on
it promises?


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


Re: Error upgrading Azureus

2007-02-06 Thread Andreas Rudisch
On Tue, 06 Feb 2007 06:59:25 -0800
Garrett Cooper <[EMAIL PROTECTED]> wrote:

>  From pkg_tree:
>
> azureus-2.5.0.0_2

Latest version in ports is Azureus 2.5.0.4. I just did a portupgrade
yesterday including Azureus without problems.

Andreas

--
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgp19apjJFvev.pgp
Description: PGP signature


Re: setting a network printer

2005-08-22 Thread Andreas Rudisch
On Mon, 2005-08-22 at 18:25 +0200, Roldán wrote:
> hello, i have a network printer and i need to set up
> in order to print, what can i do?

You could start with reading this:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/printing.html

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: mod_php5 with-gd option

2005-08-22 Thread Andreas Rudisch
On Mon, 2005-08-22 at 19:28 +0300, Carstea Catalin wrote:
> Please, how can i install mod_php5 with-gd option?
> 
> 
> I tried to modify the Makefile with the line :
> 
> LIB_DEPENDS+=   gd.2:${PORTSDIR}/graphics/gd
> 
> but doesn't work
> .
> i have  FreeBSD 4.11-RELEASE and apache2 on my computer.
> 

What about installing:
  /usr/ports/graphics/php5-gd


Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Sending files to Win/Linux client from FreeBSD server?

2005-08-25 Thread Andreas Rudisch
On Thu, 2005-08-25 at 01:57 -0700, Jamie Ann P. Zamodio wrote:
> Hi everyone :)
> 
> I'd just like to ask if there's a specific command I
> can use to send files from my FreeBSD 4.3 server to my
> Windows XP/ Red Hat Linux clients. I'm totally stuck
> to mounting and unmounting a floppy disk and
> transferring the files by copying and pasting from PC
> to PC. There's got to be an easier way, but I can't
> seem to find anything on Google. Please help me.
> 
> Thanks in advance,
> Jamie

You could set FTP-Server (I prefer vsftpd) or Samba.

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Problem with Epia 800 and Freebsd 5.3

2005-08-26 Thread Andreas Rudisch
On Fri, 2005-08-26 at 10:41 -0400, Lord Raiden wrote:
> Just installed 5.3 onto an Epia 800 just a few weeks back and aside from 
> the controlers being bloody picky as hell (got that fixed by using special 
> cables), the stupid lan card is now giving me fits just a day after I put 
> it into active service.  Here's the error I'm getting in my logs repeatedly.
> 
>  > vr0: rx packet lost
>  > vr0: watchdog timeout

What about installing 5.4-Release or -Stable? 5.4-Stable works fine here
on an EPIA PD1. If you still get the error, it might be hardware
related.

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Torrent Program

2005-09-02 Thread Andreas Rudisch
On Fri, 2005-09-02 at 22:30 +1000, Warren wrote:
> Being as Azureus is broken in the ports ... is there another torrent program 
> that is as good/equivelant to it available ?

I have no problems at all with Azureus 2.3.0.4 or 2.3.0.5_B22 running on
FreeBSD 5.4-stable using Java 1.4.

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: A good server motherboard.

2007-05-01 Thread Andreas Rudisch
On Tue, 01 May 2007 17:01:48 +0200, Christopher Prance  
<[EMAIL PROTECTED]> wrote:



If you were to build a server using FreeBSD 6.2 , basically for home use,
serving media files, small web server, basically a very small load, which
motherboard would you recommend?  Mid range as far as price is concerned.


What about one of these: http://www.via.com.tw/en/products/mainboards/

I have been running a VIA Epia PD for a couple of years now as a home
server/router without any problems.

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


Re: Problems upgrading a 6.0 install to 6.2-RELEASE-p4

2007-05-18 Thread Andreas Rudisch
On Fri, 18 May 2007 17:54:41 +0200, Andrew Falanga <[EMAIL PROTECTED]>  
wrote:



Ok, I'm reading through the web link you sent.  I see in section
23.4.1 the steps are:

# make buildworld
# make buildkernel
# make installkernel
# reboot



# mergemaster -p
# make installworld
# mergemaster
# reboot

I did these steps then, and I'm still getting the missing audit group
errors.  What is this audit group, what's its function, etc.?  Since
nothing of "world" has been installed yet, can I simply erase /usr/src
and replace with the 6.0-RELEASE cd's, which I have, and then do the
cvsup once again.  This time doing a mergemaster *before* I buildworld
and then installworld?

Andy


In /usr/src/UPDATING you can find.

20060204:
The 'audit' group was added to support the new auditing  
functionality

in the base system.  Be sure to follow the directions for updating,
including the requirement to run mergemaster -p.

Either you add the group manually or you make sure to use mergemaster
and merge the required files _correctly_.

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


Re: disk too big to mount

2007-05-21 Thread Andreas Rudisch
On Mon, 21 May 2007 17:12:52 +0200, Garrett Cooper  
<[EMAIL PROTECTED]> wrote:


Why on earth would you want to create a 400GB MSDOSFS formatted disk?  
MSDOSFS was quick but offered no protection against power outages or  
incomplete writes, and was horrible in terms of disk fragmentation..


Not to mention the fact that you cannot create files larger than 4GB on it.

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


Re: Installing FreeBSD on large disk >2TB

2007-06-11 Thread Andreas Rudisch
On Mon, 11 Jun 2007 10:13:04 +0200
Enrique Ayesta Perojo <[EMAIL PROTECTED]> wrote:

> Hello
> 
> I'm trying to install FreeBSD 6.2 on a HP DL320s. This server has a P400 RAID 
> controller with 12 SATA disk drives attached to it. The RAID controller is 
> supported in FreeBSD through the ciss driver.
> 
> The problem happens when i try to use a RAID larger in size to 2 Terabyte, 
> then the install program freezes and the machine reboots (it cannot find the 
> disk). If the array is smaller than 2 Terabytes then there is no problem, the 
> controller detects the disk and i can install FreeBSD on it. I have tried 
> with i386 and AMD64 versions (the server has a Xeon processor supported by 
> AMD64)
> 
> Any clue on how to solve it? FreeBSD can't be installed on disks larger than 
> 2 
> TB?
> 
> Thanks

A quick google search revealed this:

http://www.freebsd.org/projects/bigdisk/index.html


Andreas

-- 
GnuPG key  : 0x2A573565  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: 925D 2089 0BF9 8DE5 9166  33BB F0FD CD37 2A57 3565


pgpDEW6j2M2Mb.pgp
Description: PGP signature


Re: mail reader/agent for xfce4

2007-06-15 Thread Andreas Rudisch

On Fri, 15 Jun 2007 11:15:49 +0200, chatlove <[EMAIL PROTECTED]> wrote:


Hi everybody,

Could anyone share their experiences on which mail reader or agent they  
use

with xfce4? Something simple, lightweight, with GUI, is highly desirable.
I tried xmail, but it looks a bit complicated for my 8 years old son.
Just for the record: FreeBSD i386 STABLE.



I like these:

ports/mail/sylpheed2/
ports/www/opera/

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


Re: Unending compilation of OpenOffice-1.1.2

2005-04-21 Thread Andreas Rudisch
On Fri, 2005-04-22 at 12:42 +0800, Edwin D. Vinas wrote:
> hi,
> 
> Is it normal for OpenOffice-1.1.2 to take a very long compilation
> time? I installed using the ports. I actually have consumed almost 24
> hours to compile openoffice in FreeBSD-5.3 and until now it is still
> compiling. I also tried installing the source but when I execute
> "seetup", it jst shows the loading programs but doesn't proceed with
> the installtion/setup. Is there anyway to quickly install openoffice
> in FreeBSD-5.3?
> 
> -edwin
> 

That depends on the speed of your system. But why don't use the latest
stable version 1.1.4 ?

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: freebsd mount porblem

2005-04-22 Thread Andreas Rudisch
On Fri, 2005-04-22 at 19:39 +0500, [EMAIL PROTECTED] wrote:
> hi all,
> i m having trouble in mounting. I would like all users to read particular 
> mounted directory.what 
> option do i have to specify for making other users
> r/w the mounted file system? i tried uid=1001 (
> the users id)  in fstab under mount options but it 
> didnt work.
> 
> thanks,
> ananth.g

man chmod

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: non-official support for 5.2.1

2005-04-24 Thread Andreas Rudisch
On Sun, 2005-04-24 at 11:11 +0200, Stevan Tiefert wrote:

> Hello Kris,
> 
> to explain better, what I want (It was my job to specify better what I 
> want :-)
> 
> Does the RELENG_5_2 security branch still exist? And if not, when and 
> where did they annouced to stop the support for 5.2.1?
> 
> With regards
> Stevan


http://www.freebsd.org/security/index.html

quote:
"Older releases are not maintained and users are strongly encouraged to
upgrade to one of the supported releases mentioned above."

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: non-official support for 5.2.1

2005-04-24 Thread Andreas Rudisch
On Sun, 2005-04-24 at 11:49 +0200, Stevan Tiefert wrote:

> Hello Wash,
> 
> a small question: Why is then 4.11, 4.10 still supported? :-)
> 
> With regards
> Stevan

4.10 and 4.11 are from the STABLE-branch. As far as I know 5.2.1 was the
CURRENT-branch which let to the 1st STABLE 5 version FreeBSD 5.3 .

Quote from http://www.freebsd.org/security/index.html :
"Early adopter -
Releases which are published from the -CURRENT branch will be supported
by the Security Officer for a minimum of 6 months after the release."

As you found out yourself, RELENG_5_2 was never officially supported.

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Azureus shutdowns

2005-04-24 Thread Andreas Rudisch
On Sun, 2005-04-24 at 15:30 +0300, Perttu Laine wrote:
> I have problems with Azureus 2.2.0.2 (from ports). It shutdowns
> without any error message on logs or anything. Sometimes it runs for
> hour sometimes a day and few times even for a week. But then suddenly
> it just dissappears with no warning. Anybody have idea what could be
> wrong?

Get the latest beta-build (Azureus2203-B62.jar) from the Azureus website
and replace /usr/local/share/java/classes/azureus.jar with it (remember
to backup the original file). The beta-builds work more stable for me
(no crash or shutdown so far).

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: /usr/src/UPDATING

2005-04-30 Thread Andreas Rudisch
On Sat, 2005-04-30 at 05:11 -0400, Brett Wiggins wrote:
> hello,
>   This may sound like a stupid question but do I have to implement
> all of the changes in UPDATING?
> 
> Thanks
> 
> Brett

Well, only the information for the ports you have installed are
important.

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: /usr/src/UPDATING

2005-04-30 Thread Andreas Rudisch
On Sat, 2005-04-30 at 03:27 -0700, Kris Kennaway wrote:

> He said /usr/src, not /usr/ports.
> 
> Kris

He did, didn't he. :)

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: CVS tag for specific release candidate

2005-05-07 Thread Andreas Rudisch
On Sat, 2005-05-07 at 00:05 -0700, Luke Dean wrote:

> I've managed to get 5.4-RELEASE installed, but I absolutely cannot get 
> into single-user mode.  I've tried selecting option 4 from the boot menu 
> and just running a "shutdown now" from multiuser mode.

> I think something about my configuration must be fouled up.  I don't think 
> it's 5.4.  Sorry for the confusion.

It's a known problem and will be fixed as soon as possible. Check the
freebsd-stable list:

Subject: HEADS-UP: Problem with RELENG_5{_4}
Date: Fri, 06 May 2005 11:37:19 -0400 (17:37 CEST)

Andreas

-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: mozilla

2005-05-09 Thread Andreas Rudisch
On Mon, 2005-05-09 at 14:46 +0200, Gert Cuykens wrote:
> Doesnt matter what i do, make clean, portmanager or cvsup. Mozilla
> always gets stuck at the same place i have this problem for months now

> ===>   Generating temporary packing list
> ===>  Checking if www/mozilla already installed
> /bin/mkdir -p /usr/X11R6/lib/mozilla
> /bin/chmod 755 /usr/X11R6/lib/mozilla
> install  -o root -g wheel -m 555
> /usr/ports/www/mozilla/work/fake/bin/mozilla /usr/X11R6/lib/mozilla
> install  -o root -g wheel -m 555
> /usr/ports/www/mozilla/work/fake/bin/mozilla-config
> /usr/X11R6/lib/mozilla
> cd /usr/ports/www/mozilla/work/fake/lib/mozilla && /usr/bin/find . | 
> /usr/bin/cpio -pdm -L -R root:wheel /usr/X11R6/lib/mozilla
> /usr/bin/cpio: /usr/X11R6/lib/mozilla/./components/nsProxyAutoConfig.js
> not created: newer or same age version exists
> /usr/bin/cpio: /usr/X11R6/lib/mozilla/./components/nsHelperAppDlg.js
> not created: newer or same age version exists
> /usr/bin/cpio: /usr/X11R6/lib/mozilla/./components/nsProgressDialog.js
> not created: newer or same age version exists
> /usr/bin/cpio: /usr/X11R6/lib/mozilla/./components/nsCloseAllWindows.js
> not created: newer or same age version exists

^^^ Make sure Mozilla is deinstalled properly before you try to install
it again.



-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


Re: Broadcom BCM5751 Gigabit Ethernet

2005-05-27 Thread Andreas Rudisch
On Fri, 2005-05-27 at 12:15 -0500, Fafa Hafiz Krantz wrote:
> Hello!
> 
> I got this Broadcom BCM5751 network interface that works just great in 
> FreeBSD.
> I was just wondering though, does anybody know where to find its Windows XP 
> driver?
> 
> I need it to function in both sceneries.
> 
> I found an EXE on an Asus.com mirror, but it was some sort of floppy 
> extractor and
> not really the actual driver, or so it seemed, that I was looking for. I 
> ain't got no floppies
> anyway, they're all corrupt ;-)
> 
> Thanks!
> 
> --
> 
> Fafa Hafiz Krantz
>   Research Designer @ http://www.home.no/barbershop
>   Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf


http://www.google.com/search?q=Broadcom
+BCM5751&sourceid=opera&num=0&ie=utf-8&oe=utf-8


-- 
GnuPG key  : 0xD25FCC81  |  http://cyb.websimplex.de/pubkey.asc
Fingerprint: D182 6F22 7EEC DD4C 0F6E  564C 691B 0372 D25F CC81





signature.asc
Description: This is a digitally signed message part


  1   2   >