Re: using the date command

2007-09-30 Thread Bruce Cran
Brian A. Seklecki wrote: To set time: $ sudo /usr/sbin/ntpdate pool.ntp.org 29 Sep 23:48:31 ntpdate[9404]: adjust time server 66.250.45.2 offset 0.001289 sec ntpdate is deprecated, you should use "ntpd -q" instead if you want ntpd to set the time once then exit. From ntpdate(8): Note: The

Re: zero copy tcp send

2007-10-08 Thread Bruce Cran
Wojciech Puchar wrote: i found sendfile(2) doing this. but the question - does normal write(2) doing this when sending from user process memory, not file? does memory have to be aligned special way,like to page boundary? Yes - see zero_copy(9) -- Bruce _

Re: hard drive testing...

2007-10-08 Thread Bruce Cran
Gary Kline wrote: Last question for today. Well, hopefullly. Is bonnie++ the only meeans of testing a hard drive? I thought thre was something you had to put on a floppy to be able to test more thoroughly. This had been "awhile ago"... maybe ~5 years.

Re: rebranding a i386 binary to be a amd64 binary

2007-10-10 Thread Bruce Cran
Aryeh Friedman wrote: On 10/11/07, Kris Kennaway <[EMAIL PROTECTED]> wrote: Aryeh Friedman wrote: Even though I know this is asking for it I want to test the new nVidia driver on amd64 and the only issue with a hand compile (from nVidia's tar not the ports one) is src/nv-kernel.o is branded elf

Re: www.freebsd.org won't load in IE 7.x in vista box.

2007-10-17 Thread Bruce Cran
ry running traceroute to check for routing problems to see where the problem is. -- Bruce Cran While his reply may not have been the most cordial that I have seen, it was nevertheless quite on point. I have used Vista and IE7 to connect to FBSD without incident. It therefore becomes evident that t

Re: Two questions about UNIX(r) certification.

2007-10-18 Thread Bruce Cran
Aryeh M. Friedman wrote: Dan Mahoney, System Admin wrote: I recently noticed that Apple's new OS, Leopard, is Unix certified. "UNIX Certified" what the [EMAIL PROTECTED]@ does that mean as far I know no one is in a position to make such a statement except maybe the current owner of the Unix t

Re: msttf?

2007-10-20 Thread Bruce Cran
User Roberth wrote: Is /usr/ports/chinese/msttf the right port of microsofts truetype fonts? It seems the msttf package was renamed some time ago - I believe the port you should install is /usr/ports/x11-fonts/webfonts -- Bruce ___ freebsd-questio

Re: mounting a uif dvd image

2007-10-20 Thread Bruce Cran
mdX device, which you can then mount with: mount -t udf /dev/mdX /path/to/mount/dir -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: mounting a uif dvd image

2007-10-20 Thread Bruce Cran
Bruce Cran wrote: Aryeh M. Friedman wrote: I have a uif dvd image that I want to mount how do I do this (or convert to ISO). You can do this by using mdconfig and mount_udf (which is called by 'mount'). First, create a md device: mdconfig -a -t vnode -f /path/to/dvd_image

Re: Rebuilding world

2007-10-21 Thread Bruce Cran
you want to be running 8-CURRENT? It's very very new and will probably break in many ways in the coming months. You almost certainly want to be running 7-BETA1 (from the RELENG_7 branch) which is current at BETA1 stage - HEAD recently changed from 7-CURRENT to bec

Re: Mentor for C self study wanted

2007-10-23 Thread Bruce Cran
e the correct size for variables. Your segv is because scanf was trying to put an int where it won't fit. You will get the same result if you go off the end of an array. -Derek It's well worth increasing the number of warnings enabled when writing C code, to catch any

Re: Mentor for C self study wanted

2007-10-23 Thread Bruce Cran
cpghost wrote: There's a mismatch here: scanf("%d", ...) expects a pointer to int, while &nnote is a pointer to a short. Normally, an int occupies more bytes in memory than a short (typically sizeof(int) == 4 on 32bit platforms, and sizeof(int) == 8 on 64bit platforms; while typically sizeof(sho

Re: First panic in 7.0-BETA1 on i386

2007-10-24 Thread Bruce Cran
Kris Kennaway wrote: Doug Poland wrote: I'd like to report the details but I'm unfamiliar with the process. Should I post here on -questions or on -current mailing list? -stable. I know 7-BETA1 is currently in a region somewhere between -current and -stable but I thought the -current list

Re: Can't overwrite a particular swap partition

2007-10-24 Thread Bruce Cran
RW wrote: I have two swap partitions, ad4s1b is part of my main slice, and ad6s1b is on a second drive. The permissions are the same, but I can't overwrite the second one. The same thing happens whether I use swapoff or reboot into single user mode. What's the difference? # dd if=/dev/random of

Re: CPU usage 100% but no process hogging CPU

2007-10-27 Thread Bruce Cran
Gunther Mayer wrote: Hi there, I'm having some capacity issues on the FreeBSD 6.2/Core 2 Duo/2GB RAM server that I manage. For quite a few days now it constantly shows load averages of around 1 and a CPU usage of around 100%. Yet summing up the CPU usage of the individual processes running I

Re: Rebuilding world

2007-10-27 Thread Bruce Cran
Aryeh M. Friedman wrote: Roberth Sjonøy wrote: Hello, i am updating FreeBSD to 8-CURRENT, and im at the "23.4.1 The Canonical Way to Update Your System" part of the handbook, when running "make buildworld", this occours: Before anyone gets on my friends case he is using 6.2 (i386) with the

Re: nvidia display driver on amd64

2007-10-30 Thread Bruce Cran
Yuri Pankov wrote: On Mon, 2007-10-29 at 22:32 +, Tino Engel wrote: Dear all, Does anyone see any chance to get the nvidia display driver (with OpenGL support) set up on amd64? Or someone has even succeded? The ports driver tell me they are only for i386, the downloaded driver from nvid

Re: vim doesn't preserve the terminal content

2007-11-02 Thread Bruce Cran
Jerry McAllister wrote: On Fri, Nov 02, 2007 at 02:29:47PM -0700, Yuri wrote: I use vim both on Linux and FreeBSD. On Linux after I exit vim original screen content is restored. On FreeBSD vim leaves the last content viewed in vim. How do I make vim preserve the screen? I don't know how to d

Re: Socket programming question

2007-11-14 Thread Bruce Cran
Derek Ragona wrote: With internet sockets, these get added to the TCP stack, and their are kernel structures created too I'm sure, but I have no idea how to find those. Netstat will show sockets in use though. sockstat(1) might also be useful as it shows information about what program open

Re: How to set maximum disk cache size?

2007-11-15 Thread Bruce Cran
Wojciech Puchar wrote: > Laszlo wrote: Hi All, Is there a way (sysctl?) to tell FreeBSD (6.2 RELEASE) how many memory can it use for caching file data from disk? It might be that FreeBSD will use all available RAM, and reduce the cache it already does It may seem strange since it's genera

Re: How to set maximum disk cache size?

2007-11-16 Thread Bruce Cran
Ivan Voras wrote: On 16/11/2007, Laszlo Nagy <[EMAIL PROTECTED]> wrote: Ivan Voras wrote: http://www.freebsd.org/doc/en_US.ISO8859-1/books/arch-handbook/vm-fileio.html I read this too but I don't understand. Too difficult for me. So what is the answer? Do I need to set a sysctl or will Fre

Re: Strange kernel log message

2007-11-26 Thread Bruce Cran
Giorgos Keramidas wrote: On 2007-11-26 09:58, Ceri Davies <[EMAIL PROTECTED]> wrote: So I have this in my security run output: kernel log messages: +++ /tmp/security.hLYJI0kF Sun Nov 25 03:01:02 2007 +222>2>>>NNNMNMMIII M III SIISAS SAAA 3 303,020,0 ,, EE IEIIESSSAIAA S A f f

Re: Upper limit on make -j ?

2007-11-27 Thread Bruce Cran
Pieter de Goeje wrote: On Tuesday 27 November 2007, Andy Greenwood wrote: Aryeh Friedman wrote: Before I file a PR I just want to know if it is worth it to file a PR for: make -j1000 buildworld buildkernel installkernel seg faulting I thought that the kernel builds couldn't be built using par

Re: Upper limit on make -j ?

2007-11-28 Thread Bruce Cran
Brian wrote: Isn't 1000 an unrealistically high value? Brian On a system with only 2 cores and 2GB RAM - yes. I'm not sure that even with a huge number of cores you'd get much benefit from running such a massively parallel make, unless the build system is more intelligent than I think it is

Re: what is /dev/xpt0/

2007-12-13 Thread Bruce Cran
Gary Kline wrote: this probably is irrelevant to 90% of the list, but it's got me wondering. can anybody 'splain what kind of SCSI device xpt0 is? Is there a /dev/xpt1 if you're running a second optical drive/ thanks, gary It's the CAM transport layer d

Re: Questions drivers for VGA and NIC

2008-10-03 Thread Bruce Cran
y what NVIDIA is requesting. Sorry - wrong list. Try: http://lists.freebsd.org/pipermail/freebsd-hackers/2006-June/016995.html There's also http://wiki.freebsd.org/NvidiaFeatureRequests -- Bruce Cran ___ freebsd-questions@freebsd.

Binding SCTP sockets to the IPv6 lopback address

2008-10-15 Thread Bruce Cran
esn't work over IPv6 loopback? The code I'm running calls getaddrinfo with the hints to set AF_UNSPEC, SOCK_STREAM, AI_PASSIVE and then it calls bind with the protocol set to IPPROTO_SCTP. -- Bruce Cran ___ freebsd-questions@freebsd.o

Re: High Performance Computing Mini-Cluster

2008-10-21 Thread Bruce Cran
ml The slides are at http://2007.asiabsdcon.org/papers/P02-slides.pdf and the paper is at http://2007.asiabsdcon.org/papers/P02-paper.pdf -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ques

Re: GCC help

2008-10-23 Thread Bruce Cran
he port will use the base-system version. Can't you set $CC to gcc44 or whatever to make the ports system use a different version of gcc? -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: the age old 3D hardware question

2008-10-25 Thread Bruce Cran
On Sat, 25 Oct 2008, [EMAIL PROTECTED] wrote: On 20081025 10:18:01, Wojciech Puchar wrote: I'm looking to buy a new workstation that needs to be able to run in 64-bit (long) mode (working with large data sets). What are my options for 3D acceleration without binary drivers? My needs are qui

Re: Is KDE4 usable on FreeBSD?

2008-11-01 Thread Bruce Cran
that being done for me, since I would much prefer to spend my time coding instead of hacking config files to import files, get stuff printed etc. Most people I know are moving from Debian to Ubuntu for the same reason - things just work. At the same time, it's nice to know that if

Re: Is KDE4 usable on FreeBSD?

2008-11-02 Thread Bruce Cran
ndliness of Windows with the power of *NIX. And lots of people have moved over to using it. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: garmin forerunner 305

2008-11-03 Thread Bruce Cran
On Thu, 4 Sep 2008 20:24:02 +0100 Bruce Cran <[EMAIL PROTECTED]> wrote: > On Thu, 4 Sep 2008 11:51:33 -0300 > "Joey Mingrone" <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > Has anyone had any success collecting data from a Garmin Forerunner >

Re: garmin forerunner 305

2008-11-04 Thread Bruce Cran
On Tue, Nov 04, 2008 at 08:28:05AM -0500, Bob McConnell wrote: > On Behalf Of Bruce Cran > > On Thu, 4 Sep 2008 20:24:02 +0100 > > Bruce Cran <[EMAIL PROTECTED]> wrote: > > > >> On Thu, 4 Sep 2008 11:51:33 -0300 > >> "Joey Mingrone" <

Re: garmin forerunner 305

2008-11-04 Thread Bruce Cran
On Tue, 04 Nov 2008 14:57:14 +0300 Boris Samorodov <[EMAIL PROTECTED]> wrote: > Bruce Cran <[EMAIL PROTECTED]> writes: > > > I don't know if it'll work with the usb stack that's in shipping > > version of FreeBSD though, and even with the new stack

Re: /etc/src.conf WITHOUT_PROFILE=yes

2008-11-04 Thread Bruce Cran
lib and you'll see for example libc.so and libc_p.so - the _p version is the profiled version. The only problem I can see with disabling it using WITHOUT_PROFILE is that unless you remove the _p libraries they'll become stale over time. -- Bruce Cran _

Re: uhub0: device problem

2008-11-05 Thread Bruce Cran
it struggles with modern USB devices. Unfortunately I don't know of any solutions - or even if that's the problem. The first step would probably be to let people see what sort of hardware you have: could you post the output of the dmesg command please? -- Bruce Cran __

Re: Sluggish scheduling during a long disk copy

2008-11-09 Thread Bruce Cran
oing. It may be that FUSE is aggressively caching data and pushing your applications out of memory. This commonly happens on Linux and may be happening here too. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Official FreeBSD Forums

2008-11-16 Thread Bruce Cran
On Sun, 16 Nov 2008 22:56:28 +0100 (CET) Wojciech Puchar <[EMAIL PROTECTED]> wrote: > > Having a larger user-base is definitely a good thing. That means > > attracting > > NO IT IS NOT! Well, it sounds like Minix may be gaining a new user soon

Re: re changing from vista

2008-11-17 Thread Bruce Cran
easily have switched to Debian or Gentoo where more manual configuration is required - just like in FreeBSD. One of the strengths of Linux is that if you find one of the new trendy features doesn't work, you can generally just build a new kernel - without including it. If it's user-space y

Re: FreeBSD and hardware??

2008-11-18 Thread Bruce Cran
Windows. I think that's where the likes of Gnome and KDE go wrong too, in trying to cater for two types of users at once and possibly failing both. I think beginners might actually be better off using one of the simpler window managers like Window Maker which have fewer items on the screen with simple rules to get things done. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: FreeBSD and hardware??

2008-11-19 Thread Bruce Cran
that being able to restart is being advanced user. good > to know. > Actually, I think it is. See http://www.joelonsoftware.com/items/2006/11/21.html for the reasoning. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freeb

Re: large binary, why not strip ?

2008-11-27 Thread Bruce Cran
or not: > nm /bin/ls nm: /bin/ls: no symbols > nm /usr/local/bin/a2p 004030d0 T Myfatal 00510308 D No 0051a200 B Str 00510300 D Yes 00519e00 A _DYNAMIC [...] KLD .ko files are built with full debug data but the source information (filenames, line number

Re: FreeBSD and hardware??

2008-12-02 Thread Bruce Cran
have to realise that it's actually a GVFS mount, not a kernel-level mount. So only Gnome applications which know about GVFS are able to see the files. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Swapping to MMC (Was: To swap or not to swap)

2008-12-02 Thread Bruce Cran
it was more a worry about someone pulling the MMC card out of the slot; in that case I think FreeBSD would panic rather quickly! Another thing to consider is that the bus the MMC sits on is probably somewhat slower than the bus the SSD is on, so any swapping is going to slow the system down even more than usual. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: To swap or not to swap

2008-12-04 Thread Bruce Cran
he machine's run out of memory; however the current behaviour seems good to me. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: / almost out of space just after installation

2009-10-10 Thread Bruce Cran
On Sat, 10 Oct 2009 22:00:53 +0200 Polytropon wrote: > On Sat, 10 Oct 2009 12:28:08 -0700 (PDT), Richard Mahlerwein > wrote: > > I agree completely. I also go a step farther and put most other > > things that I consider user data in there. Like Subversion > > repositories and non-user-specific

Re: win 7 dual boot

2009-10-28 Thread Bruce Cran
ister on the site and download the beta of 2.0 from the forums - the 1.x version won't work. -- Bruce Cran ___ 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: I'm sure you've heard this before...

2009-10-28 Thread Bruce Cran
my ATAidle utility from sysutils/ataidle. In FreeBSD 7 you can also use the "spindown" command that's been added to atacontrol(8). -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/free

Re: Effing HAL

2009-10-30 Thread Bruce Cran
/local/etc/hal/fdi/policy/ that tells it what layout to use. It's rather frustrating that information is scattered in forums - I couldn't see any official-looking articles on configuring it. -- Bruce Cran ___ freebsd-questions@freebsd.org

Re: amd64

2009-11-09 Thread Bruce Cran
On Mon, 9 Nov 2009 04:27:54 -0800 (PST) Clayton Wilhelm da Rosa wrote: > Hi, > > i made the download of FreeBSD amd64 and i wanna know if the amd64 is > the same as x86_x64. Yes, it's the same. amd64, x86_64 and x64 are all the same architecture

Re: Bad Blocks... Should I RMA?

2009-11-16 Thread Bruce Cran
s probably time to think about RMA'ing the drive - if you trust that the 'raw' column is reporting what you think it is (you should really only base your decision on the value, worst and threshold columns). -- Bruce Cran ___ freebsd-quest

Re: What does this message mean?

2009-11-29 Thread Bruce Cran
serious problem? It seems to be a harmless warning message - I've seen it many times when starting the Bluetooth stack. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To uns

Re: Phoronix Benchmarks: Waht's wrong with FreeBSD 8.0?

2009-11-30 Thread Bruce Cran
program which runs sync() every 5 > seconds, or even every 1 second. Your performance will be completely > trashed, but that's the way things break." - Theodore Ts'o wrote on > 2009-03-06 This is actually the way UFS/FFS works too

Re: geometry does not match label (255h,63s != 16h,63s)

2009-12-09 Thread Bruce Cran
me last year: http://lists.freebsd.org/pipermail/svn-src-head/2008-December/002175.html -- Bruce Cran ___ 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: is this getting out?

2009-12-17 Thread Bruce Cran
found. > Name service error for > name=ethic.thought.org type=A: Host not found It looks like the server is EHLO'ing as ethic.thought.org but is actually plato.thought.org. -- Bruce Cran ___ freebsd-questions@freebsd.org mailin

Re: is this getting out?

2009-12-17 Thread Bruce Cran
is still propogating? $ host aristotle.thought.org aristotle.thought.org has address 209.180.213.210 -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: question about building a custom kernel

2009-12-19 Thread Bruce Cran
drivers I knew were used and added pf support, but it does show that substantial savings are still possible. Another reason for building a custom kernel is to add functionality that isn't available through modules, such as support for DTrace. -- Bruce Cran _

Re: cvs-ports => svn-ports

2009-12-21 Thread Bruce Cran
On Mon, 21 Dec 2009 12:45:51 +0100 Dominic Fandrey wrote: > Is there an svn equivalent to the cvs-ports mailing list? ports are still stored in a cvs repository, unlike src. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list h

Re: FreeBSD beastie plush toy?

2009-12-21 Thread Bruce Cran
On Mon, 21 Dec 2009 13:41:05 -0500 Aleksandr Miroslav wrote: > Where can I purchase a FreeBSD beastie plush toy? Something like http://www.freebsdmall.com/cgi-bin/fm/bsdbeanie?id=NkWSe8g8&mv_pc=144 ? -- Bruce Cran ___ freebsd-questions@free

Re: Tuning for very little RAM

2010-01-06 Thread Bruce Cran
that's running 8-STABLE my kernel is just 4.1MB. You should also be able to build Xorg so it'll use less memory - for example by not requiring hald but getting it to read the configuration from xorg.conf instead. You can also tell FreeBSD to agressively

Re: Web Site Mistype

2008-03-20 Thread Bruce Cran
Alexis Megas wrote: Hello, The page http://www.freebsd.org/java/dists/16.html has a date mistype (November 15, 2008). Thanks! freebsd-www@ is the mailing list which deals with errors on the FreeBSD web pages - I've cc'd them. -- Bruce __

Re: virtual machine software

2008-03-22 Thread Bruce Cran
Jim Stapleton wrote: I need to get a VM work for XP. I tried QEmu, but XP wouldn't install. I wouldn't mind VMWare, but I want to run it under trial first if possible. Any documents/suggestions that anyone can point me to? Thanks, -Jim Stapleton There's also VMWare Server, which is free. --

Re: virtual machine software

2008-03-22 Thread Bruce Cran
Jim Stapleton wrote: Really? And runs on FreeBSD (or does it use Linux Compat?) I don't think any modern versions of VMWare run on FreeBSD - the version in ports is 3.x. -- Bruce On Sat, Mar 22, 2008 at 8:27 AM, Bruce Cran <[EMAIL PROTECTED]> wrote: Jim Stapleton wrote: >

Re: virtual machine software

2008-03-22 Thread Bruce Cran
Jim Stapleton wrote: Sorry, QEmu crashes when I try to boot the CD. Same happens with Bochs. -Jim Stapleton If it crashes with 'Bad system call' make sure you have aio support loaded. I missed it when I recently installed it, but the pkg-message does mention it: - qemu now uses aio at lea

Re: ifconfig gif0 and rc.conf [was: Re: IP packet with options]

2008-03-22 Thread Bruce Cran
Malcolm Clarke wrote: We are trying to configure an IPv6 tunnel for IPSec, ie IPv6 in IPv6. The command line would be ifconfig gif0 inet6 tunnel src-addr dst_addr (IPv6 addresses) There appears to be no equivalent line for rc.conf. Regards Malcolm To configure an if_gif interface for IPv6

Re: Powerpc port

2008-03-24 Thread Bruce Cran
K. Bradford wrote: I have installed 7.0-RELEASE on an old Mac G4. I have cvs'ed the latest sources (using the RELENG_7 tag) in order to track 7.0-STABLE. The problem: I can boot only off the FreeBSD install CD, by breaking into open firmware upon bootup like this: 0 > boot mac-io/[EMAIL PROTEC

Re: disable periodic scripts

2008-03-30 Thread Bruce Cran
Warner Lambert wrote: Hi How can I disable those nightly/monthly/... periodic scripts? I don't need them, these days professional monitoring software such as nagios is used to monitor 200+ systems. I can't read 200 mails showing me hundreds of lines of output even if nothings happening. Am I

Re: Why are some linux users saying that FreeBSD is dying

2008-04-08 Thread Bruce Cran
E. J. Cerejo wrote: Pollywog wrote: On Tuesday 08 April 2008 21:32:01 E. J. Cerejo wrote: "FreeBSD is a dying OS because netcraft.com confirms it" that's the argument used some of these guys, and I'm wondering what data are they using to make their point! Even netcraft is running FreeBSD and t

Re: RAM & Swap & Speed

2008-04-21 Thread Bruce Cran
Jon Radel wrote: herbert langhans wrote: Hi Daemons, recently I had to add some more RAM on a workstation. Was 512MB before and is 2GB now, the reason was to give some graphic apps more space. But to my surprise the workstation ran faster--but before adding RAM it did NOT make use of the swap

Re: determining what's in the base system

2008-04-21 Thread Bruce Cran
Chad Perrin wrote: On Tue, Apr 15, 2008 at 04:35:52PM -0700, Luke Dean wrote: For the second question, I've always assumed that /COPYRIGHT applied to everything in the base system. I'm pretty sure GCC is in the base system (for instance), and it's GPL software. There's no mention of it in /CO

Re: Firewalls

2008-04-28 Thread Bruce Cran
Doug Hardie wrote: FreeBSD supports 3 firewalls: IPF, IPFW, and PF. Some time ago (perhaps years) I seem to recall some discussion that one or more of those was better maintained and higher quality than the others. I don't see any indications of this in the handbook. Several years ago I nee

Re: does make buildworld/buildkernel require you to root

2008-05-07 Thread Bruce Cran
Aryeh M. Friedman wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 does make buildworld/buildkernel require you to root? I know installX does but build? No, you can build kernel, world and ports as an ordinary user as long as permissions on the build directories are configured appropria

Re: time drift

2008-05-15 Thread Bruce Cran
Volker Jahns wrote: On Thu, May 15, 2008 at 09:53:02PM +0200, Volker Jahns wrote: On Thu, May 15, 2008 at 12:18:57PM -0700, Chuck Swiger wrote: On May 15, 2008, at 11:57 AM, Volker Jahns wrote: FreeBSD 6.2 running on X86 hardware (FSC) shows a remarkable time drift running ntpdate every hal

Re: Status of KDE4

2008-05-19 Thread Bruce Cran
Derek Graham wrote: Just curious when KDE4 is going to be officialy in the port tree and if there is any word on running KDE3 and KDE4 together? I want to try it out but want to hear what others got to say about installing it and if there is a good guide to doing it? I believe the current p

Re: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-05 Thread Bruce Cran
s stuff people would have to break, but UEFI. I think secure boot actually makes sense, but preventing users disabling it or installing their own keys on ARM platforms is totally wrong. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http

Re: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-05 Thread Bruce Cran
tand it, on ARM secure boot will be enabled by default and users won't have any option of disabling it or adding their own keys. On x86 secure boot will be enabled by default too, but with the option of disabling it or adding custom keys. -- Bruce Cran ___

Re: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-06 Thread Bruce Cran
project, the logical consequence is that FreeBSD source should come with a signing key for anyone to use. It just means that anyone wishing to run their own kernels would either need to disable secure boot, or purchase/create their own certificate and install it. -- Bruce Cran

Re: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-06 Thread Bruce Cran
m, but the fact that it's Verisign (actually Symantec, since they bought Verisign) that you deal with. Whereas Globalsign accept applications from individuals, Verisign require company documents before they'll generate a certificate. -- Bruce Cran

Re: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-06 Thread Bruce Cran
On 06/06/2012 11:38, Bruce Cran wrote: It's not the $99 that'll be the problem, but the fact that it's Verisign (actually Symantec, since they bought Verisign) that you deal with. Whereas Globalsign accept applications from individuals, Verisign require company documents

Re: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-06 Thread Bruce Cran
is asking for a lawsuit. To me it would be perfectly reasonable to revoke the key as soon as you signed the first piece of malware. And then anyone who has used the service is left with broken binaries, so the model fails. -- Bruce Cran ___ fr

Configuration problem with IPv6 router ("cannot forward src")

2012-06-07 Thread Bruce Cran
orward src" messages on the router (strangely, despite hisaddr being fe80::205:... in ppp.log, the kernel logs the address as fe80:f::205:...). Is there some extra configuration I've likely missed that's needed when using IPv6 via PPP? -- Bruce Cran

Re: Configuration problem with IPv6 router ("cannot forward src")

2012-06-08 Thread Bruce Cran
" dhcpd_chroot_enable="YES" dhcpd6_chroot_enable="YES" dhcpd_devfs_enable="YES" dhcpd6_devfs_enable="YES" dhcpd_rootdir="/var/db/dhcpd" dhcpd6_rootdir="/var/db/dhcpd6" rtadvd_enable="NO" rtadvd_interfaces="em0" I've tried configuring a machine with a static configuration, bypassing any issues with rtadvd/dhcpd6 so I'm fairly sure the problem is on the router. -- Bruce Cran ___ 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: Configuration problem with IPv6 router ("cannot forward src")

2012-06-08 Thread Bruce Cran
"nat on $ext_if..." line fixed it. -- Bruce Cran ___ 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: Is this something we (as consumers of FreeBSD) need to be aware of?

2012-06-10 Thread Bruce Cran
lenty of AMD machines in major stores and they come with Windows too. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-question

Re: GUI for "gpart"

2012-07-07 Thread Bruce Cran
On 07/07/2012 23:04, Thomas Mueller wrote: I think gpart is the newer disk partitioning program for FreeBSD, replacing the older gpt still used in NetBSD and DragonFlyBSD. No. gpart is the tool - it supports both mbr and gpt partitioning schemes. -- Bruce Cran

Re: GUI for "gpart"

2012-07-07 Thread Bruce Cran
On 07/07/2012 23:08, Bruce Cran wrote: On 07/07/2012 23:04, Thomas Mueller wrote: I think gpart is the newer disk partitioning program for FreeBSD, replacing the older gpt still used in NetBSD and DragonFlyBSD. No. gpart is the tool - it supports both mbr and gpt partitioning schemes

Re: Format a USB flash drive using gpart

2012-07-08 Thread Bruce Cran
ut for an ordinary user adding a new disk maybe once a year it's most likely more efficient to just use the GUI. -- Bruce Cran ___ 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: Format a USB flash drive using gpart

2012-07-08 Thread Bruce Cran
On 08/07/2012 16:06, Ian Smith wrote: In general they're not distinct in usage from any other type of disk. The more expensive disks of course support TRIM so you'd want to pass -t to newfs to enable it. -- Bruce Cran ___ freebsd

Re: Format a USB flash drive using gpart

2012-07-08 Thread Bruce Cran
On 08/07/2012 21:51, Wojciech Puchar wrote: can you give me an example of pendrive that supports TRIM? LaCie FastKey (http://www.tomshardware.co.uk/usb-3.0-thumb-drive-flash-drive,review-32174-5.html). -- Bruce Cran ___ freebsd-questions

Re: Format a USB flash drive using gpart

2012-07-09 Thread Bruce Cran
On 08/07/2012 13:10, Warren Block wrote: bsdinstall(8) has a curses partition editor. There is probably a trick needed to use that outside of an install context. Just run "bsdinstall partedit". -- Bruce Cran ___ freebsd-questions@f

Re: Format a USB flash drive using gpart

2012-07-09 Thread Bruce Cran
ices are now partitions, and instead of 'ada0s1a' (disk 0, slice 1, partition a) you just have 'ada0p1'. A partition table supports up to 4096 entries (gpart creates one supporting 128 by default) so there's no need for the freebsd container any more - you just create f

Re: Format a USB flash drive using gpart

2012-07-09 Thread Bruce Cran
ple using floppy or USB disks would be more ready for there to be data on the disk without a partition table. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscr

Re: Format a USB flash drive using gpart

2012-07-09 Thread Bruce Cran
On 09/07/2012 13:29, Wojciech Puchar wrote: only your fault, not FreeBSD. Why you connected your data disk at first place. I didn't say it was FreeBSD's fault. If I thought it was, I would have fixed it! -- Bruce Cran ___ freebsd

Re: YASSDQ

2012-07-09 Thread Bruce Cran
On 09/07/2012 11:31, Wojciech Puchar wrote: All use 4K as it is NTFS default block size and most are sold to be used with windoze. Apparently the Intel 320 SSDs use an 8KB page/block size. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list

Re: Using smartctl to detect "scan errors" (like google tells me to do ...)

2012-07-09 Thread Bruce Cran
On 09/07/2012 16:12, Jason Usher wrote: What is a scan error, and which metric should I tell smartctl to check ? I think they mean a SMART scan, as in a self-test - http://www.twopenguins.it/2011/12/test-an-hard-disk-with-smartctl/ has details of how to run it. -- Bruce Cran

Re: using gpart(8) to slice a disk

2011-02-28 Thread Bruce Cran
On Mon, 28 Feb 2011 14:52:44 +0100 Matthias Apitz wrote: > I've read the man page of gpart(8) but do not see clearly what I did > wrong with the above sequence and esp. what would have set the missing > boot flag? gpart set -a active -i 1 ad4

Re: atacontrol spindown 0 does not work

2011-03-01 Thread Bruce Cran
imer in the ad(4) driver which sends a spindown command when it expires. You'll need to keep using ataidle to fix the APM value. -- Bruce Cran ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: atacontrol spindown 0 does not work

2011-03-01 Thread Bruce Cran
On Tue, 2011-03-01 at 11:47 +0100, Matthias Apitz wrote: > I'm wondering why you would > prefere atacontrol? I think everyone's been looking for an "official" solution. -- Bruce Cran ___ freebsd-questions@fre

Re: portmaster -afv -no-confirm --clean-distfiles-all command - too much automation???

2011-03-02 Thread Bruce Cran
See the man page for details. -- Bruce Cran ___ 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"

  1   2   3   4   5   >