Re: xfce display

2010-05-17 Thread Mark Stapper
On 17/05/2010 19:10, Jean-Paul Natola wrote:
>> Did you configure Xorg to use the intel driver?
>> Check the handbook chapter 5.4 especially 5.4.3.1 Configuration with
>> Intel(r) i810 Graphics Chipsets.
>> 
> I have got it configured, now I'm a bit confused on which  "display" section 
> I'm supposed to add the "mode"  there are many do I add the 10.24x768  to all 
> of them?
>
>   
No you don't.
Once you get your videocard driver correct, Xorg should detect the
correct settings.
If it doesn't: you should add the correct resolution to 16 and 24.
Could you post your entire config file?



signature.asc
Description: OpenPGP digital signature


Where has my gbde write performance gone?

2010-05-17 Thread Joseph Gleason
Sometime between FreeBSD 7.2-RELEASE-p4 and 8.0-RELEASE write
performance of gbde encrypted devices seems to have dropped
significantly.  A system I have running 7.2 seems to run gbde drives
at or near the drive max rate (30-40MB/s) while I am seeing less than
10% of that on 8.0 systems.

I get the same slow writes on 8.0-RELEASE-p2 as well as 8.0-RELEASE.

Here is an example on a fresh 8.0 install which shows gbde taking the
drive write performance of 40 MB/s down to 2.6 MB/s:

lab# uname -a
FreeBSD lab.int.fireduck.com 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat
Nov 21 15:02:08 UTC 2009
r...@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64

lab# dd if=/dev/urandom of=/dev/ad4s1d bs=32k count=32k
32768+0 records in
32768+0 records out
1073741824 bytes transferred in 25.130537 secs (42726577 bytes/sec)

lab# gbde init /dev/ad4s1d
Enter new passphrase:
Reenter new passphrase:

lab# gbde attach /dev/ad4s1d
Enter passphrase:

lab# dd if=/dev/urandom of=/dev/ad4s1d.bde bs=32k count=32k
32768+0 records in
32768+0 records out
1073741824 bytes transferred in 401.097004 secs (2677013 bytes/sec)

iostat from while that last 'dd' was running:

   tty ad4 cpu
 tin  tout  KB/t tps  MB/s  us ni sy in id
   022  5.67 483  2.67   0  0  4  1 96
   066  5.67 509  2.82   0  0  4  1 95
   022  5.69 514  2.86   0  0  6  1 94
   022  5.67 506  2.80   0  0  6  1 93
   022  5.67 472  2.61   0  0  4  1 95


iostat on a FreeBSD 7.2-RELEASE-p4 box doing a similar operation:

 tin  tout  KB/t tps  MB/s  us ni sy in id
   0   22 29.54 1208 34.86   3  0 56  2 39
   0   22 29.56 1177 33.97   3  0 57  1 39
   0   22 29.54 1201 34.64   3  0 58  2 37
   0   22 29.57 1144 33.04   2  0 51  3 44
   0   22 29.56 1126 32.52   3  0 54  2 42
   0   22 29.53 1179 34.01   3  0 53  2 42
   0   22 29.57 1165 33.65   2  0 58  2 38

One thing I notice is the larger block size the 7.2 writes but I don't
imagine that would be that significant.

I've been using FreeBSD in various amateurish and wrong ways since
2.2, so I wouldn't rule out me doing something stupid.  If so, I'd
love to know what.
___
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: Find a file with an unknown name

2010-05-17 Thread Roy Hubbard

Steve Bertrand wrote:

I want to find a file that was recently created.

The content within the file is known, so I can grep for that. The
directory structure that contains the file is also known. The filename
is not known.

What command string do I use to search a directory structure for a file,
when my search pattern only matches content and not filename?

Steve
___
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"
  

Maybe this will work.

From the top of the directory structure:

grep -R {expression} .
___
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: Find a file with an unknown name

2010-05-17 Thread Steve Bertrand
On 2010.05.17 22:17, Randal L. Schwartz wrote:
>> "Steve" == Steve Bertrand  writes:
> 
> Steve> What command string do I use to search a directory structure for a 
> file,
> Steve> when my search pattern only matches content and not filename?
> 
> grep -r 'pattern here' top-level-dir-here

Something I do all the time, but couldn't think of it when I needed it most.

Much respect for your first response on a FBSD list.

Cheers ;)

Steve
___
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: Find a file with an unknown name

2010-05-17 Thread Randal L. Schwartz
> "Steve" == Steve Bertrand  writes:

Steve> What command string do I use to search a directory structure for a file,
Steve> when my search pattern only matches content and not filename?

grep -r 'pattern here' top-level-dir-here

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
 http://www.stonehenge.com/merlyn/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion
___
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"


Find a file with an unknown name

2010-05-17 Thread Steve Bertrand
I want to find a file that was recently created.

The content within the file is known, so I can grep for that. The
directory structure that contains the file is also known. The filename
is not known.

What command string do I use to search a directory structure for a file,
when my search pattern only matches content and not filename?

Steve
___
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: 100Mb LAN hardware

2010-05-17 Thread Steve Bertrand
On 2010.05.17 20:40, Steve Bertrand wrote:
> I'm cleaning up my office, and I've come across a piece of hardware that
> has been successfully hacked with FBSD as a FW/GW in the past.

I also have (found) two Cisco Catalyst 2924 switches that I will get rid
of too.

...and I'm not done yet. Preferably, everything will go together. I'm
certain I have routers as well... does FreeBSD have need for
hardware?... I can find more!

Steve
___
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: 100Mb LAN hardware

2010-05-17 Thread Steve Bertrand
On 2010.05.17 20:40, Steve Bertrand wrote:

> The unit is a Multi-Tech RF600VPN device, and it contains three 100Mbps
> interfaces.
> 
> I'd like to give this away.

fwiw...

I am an hour east of Toronto, Ontario.

...Canada.

-sb
___
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"


100Mb LAN hardware

2010-05-17 Thread Steve Bertrand
I'm cleaning up my office, and I've come across a piece of hardware that
has been successfully hacked with FBSD as a FW/GW in the past.

The last time the hardware ran, it was from a 2GB CF card, but it also
has a fully capable IDE channel that does work (that's how I installed
FBSD onto the CF card).

The unit is a Multi-Tech RF600VPN device, and it contains three 100Mbps
interfaces.

I'd like to give this away.

Note, I know lists, so I'm not looking to sell. I'm literally looking to
give it away. Depending on destination, shipping may be included.

...unit is fantastic for a fan-less SMB fw.

...let me know. Take it, or it goes into hazardous waste.

Steve
___
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: VirtualBox: no network

2010-05-17 Thread Anselm Strauss
I'm using the default adapter, that's the intel desktop one I think.
Establishing the connection with DHCP is indeed a bit inconsistent.
Sometimes it's there just after boot, sometimes it scans for half a minute
before making the connection. No problems with DNS. So far I tested browsing
and software updates, worked pretty well. I have not yet done extensive
networking or used it for very long time.

On Mon, May 17, 2010 at 5:32 PM, Ondrej Majerech wrote:

> Ondrej Majerech wrote:
>
>> Anselm Strauss wrote:
>>
>>> I switched to NAT networking for now. It doesn't require any modules to
>>> load
>>> besides the vboxdrv.ko and runs stable so far. Only strange that ICMP is
>>> not
>>> working ...
>>>
>>>
>> NAT networking doesn't work for me. Which Adapter Type are you using? And
>> did you have to do any further configuration or did it jsut work
>> out-of-the-box?
>>
>> ~ Ondra
>>
>
> Ah, wait.
>
> The connection partly does work with the default settings. ICMP doesn't
> work for me either, so testing with ping gave me "false" negative. Also,
> DHCP-configured DNS resolver doesn't work for me -- I had to type in a DNS
> server IP address manually. That way, Firefox running on Ubuntu inside VBox
> can finally load pages.
>
> ~ Ondra
>
___
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"


Problems dumping to a SCSI device.

2010-05-17 Thread Patrick Mahan


Platform: HP 350DL
FreeBSD version: FreeBSD 8.0 (amd64)

Beginning of /var/run/dmesg.boot

Copyright (c) 1992-2009 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.0-RELEASE-p2 #0: Fri May  7 03:52:28 PDT 2010

bu...@build8064:/users/build/p4build/FBSD80REL/amd64/obj/users/build/p4build/FBSD80REL/src/sys/MPATH
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Intel(R) Xeon(R) CPU   E5440  @ 2.83GHz (2833.45-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x10676  Stepping = 6

Features=0xbfebfbff

Features2=0xce3bd
  AMD Features=0x2800
  AMD Features2=0x1
  TSC: P-state invariant

Disk info from /var/run/dmesg.boot

ciss0:  port 0x4000-0x40ff mem 
0xfd60-0xfd6f,0xfd5f-0xfd5f0fff irq 16 at device 0.0 on pci6

ciss0: PERFORMANT Transport
ciss0: [ITHREAD]

...

da0 at ciss0 bus 0 target 0 lun 0
da0:  Fixed Direct Access SCSI-5 device
da0: 135.168MB/s transfers
da0: Command Queueing enabled
da0: 69973MB (143305920 512 byte sectors: 255H 32S/T 17562C)

My /etc/fstab contains:

# DeviceMountpoint  FStype  Options DumpPass#
/dev/da0s1b noneswapsw  0   0
/dev/da0s1a /   ufs rw  1   1
/dev/da0s1e /usrufs rw  2   2
/dev/da0s1d /varufs rw  2   2
/dev/acd0   /cdrom  cd9660  ro,noauto   0   0
proc/proc   procfs  rw  0   0

Swap is 8 Gbytes and we are running with 4 Gbytes of memory.

My issue is we are trying to track down an intermitten crash in the kernel,
but cannot obtain a crash dumpfile.  When a crash occurs I am seeing the
following on the console:

Fatal trap 12: page fault while in kernel mode
cpuid = 5; apic id = 05
fault virtual address   = 0x1a0
fault code  = supervisor write, page not present
instruction pointer = 0x20:0x80527396
stack pointer   = 0x28:0xff80789d1ab0
frame pointer   = 0x28:0xff80789d1af0
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, def32 1, gran 1
processor eflags= interrupt enabled, resume, IOPL = 0
current process = 87253(ls)
trap number = 12

uptime:2d3h44m24s
Dumping 2020MB:Aborting dump due to I/O Error
Status==0xb, SCSI status=bx0

Dump Failed (ERROR 5)

This seems to be a failure in cam/scsi/scsi_da.c in dadump().  This was
working for us under FreeBSD 6.2 (we just recently switched to using 8.0).

Googling only turned up some issues way back in 4.x with different SCSI
controllers, nothing for 8.0.

Any pointers are appreciated.  I get the same behavior when I force a
panic using 'debug.kdb.panic=1' as well.

Thanks,

Patrick
___
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"


Update KDE 4.3.5 to 4.4.3

2010-05-17 Thread Martin Schweizer
Hello

What is the correct way to make such an update? I installed KDE 4.3.5 by useing 
the meta port. The following I have installed:

konadi-1.2.1_2 Storage server for kdepim
de-kde-l10n-4.3.5_1 German messages and documentation for KDE4
kde4-4.3.5_1  The "meta-port" for KDE
kde4-icons-oxygen-4.3.5 The Oxygen icon theme for KDE
kde4-shared-mime-info-1.0 Handles shared MIME database under ${KDE_PREFIX}
kde4-xdg-env-1.0Script which hooks into startkde and helps KDE pick up XDG
kdeaccessibility-4.3.5_1 Accessibility applications for KDE4
kdeadmin-4.3.5_1KDE Admin applications
kdeartwork-4.3.5_1  KDE Artworks Themes
kdebase-4.3.5_1 Basic applications for the KDE system
kdebase-runtime-4.3.5_1 Basic applications for the KDE system
kdebase-workspace-4.3.5_1 Basic applications for the KDE system
kdeedu-4.3.5_2  Collection of entertaining, educational programs for KDE
kdegames-4.3.5_1Games for the KDE integrated X11 desktop
kdegraphics-4.3.5_1 Graphics utilities for the KDE4 integrated X11 desktop
kdehier4-1.0.3  Utility port that creates hierarchy of shared KDE4 director
kdelibs-4.3.5_1 Base set of libraries needed by KDE programs
kdelibs-experimental-4.3.5_1 Experimantal set of libraries needed by KDE 
programs
kdemultimedia-4.3.5_1 KDE Multimedia applications
kdenetwork-4.3.5_1  KDE Network applications
kdepim-4.3.5_1  Libraries for KDE-PIM applications
kdepim-runtime-4.3.5_1 Libraries for KDE-PIM applications
kdepimlibs-4.3.5_1  Libraries for KDE-PIM applications
kdeplasma-addons-4.3.5_1 Extra plasmoids for KDE4
kdesdk-4.3.5_1  KDE Software Development Kit
kdetoys-4.3.5_1 Collection of entertaining, educational programs for KDE
kdeutils-4.3.5_1Utilities for the KDE4 integrated X11 Desktop
kdewebdev-4.3.5_1   Comprehensive html/website development environment

My machine: FreeBSD saturn.pcs.ms 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Apr  
3 18:27:46 CEST 2010
r...@saturn.pcs.ms:/usr/obj/usr/src/sys/GENERIC  amd64

(Yes, I read a lot on freebsd.kde.org, portupgrade, portsmaster etc...)

Regards,
-- 

Martin Schweizer


PC-Service M. Schweizer GmbH; Bannholzstrasse 6; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22

___
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: download

2010-05-17 Thread Roland Smith
On Mon, May 17, 2010 at 06:37:49PM +0200, SmartTech Sales wrote:
> Thanks Jerry
> 
> I had a reply that I should rather use 8.0 and there I can only download 
> disk1, the rest I can get from the ports collection. (I'm not sure that I 
> can download all 2GB of the DVD successfully, our bandwidth in SA is not 
> great or very reliable)  We want to use freeBSD to setup NAS, do I need any 
> of the ports to do this?

Looking at the work that has been put into making FreeNAS, it might be 
worthwhile
to ask the developers when a version based on 8.x and supporting your card
will be available.

But if that is not an option, looking at the features of FreeNAS
[http://freenas.org/features], I'd say you need _at least_ the following ports
to more-or-less replicate the functionality of FreeNAS;

Network protocols:
  - net/samba34 (for windows clients)
  - net/netatalk (for Apple clients)
  - ftp/proftpd (FTP)
  - net/rsync
  - net/unison
  - (NFS comes with the base system)
  - dns/inadyn
  - net/istgt

Extra Services
  - net-p2p/transmission (bittorrent)
  - net/mediatomb (UPnP server)
  - audio/firefly (iTunes/DAAP)
  - www/lighttpd or www/apache22 (web server)

System tools
  - sysutils/smartmontools (disk monitoring)
  - sysutils/rsyslog55 (secure remote logging)
  - ports-mgmt/portmaster (keeping ports up to date)
  - (portsnap comes with the base system.)
  - (sshd comes with the base system.)

What you'll be missing is the FreeNAS web setup tools. I would download and
install FreeNAS on a virtual machine just to look at the configurations for
the different ports, so you don't have to figure that out all by yourself. :-)

On the other hand, if you only have to serve files for MS Windoze clients, you
might get by with installing samba and its dependencies and not much
else. Anything that you don't install is one less item to configure and keep
up-to-date.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpDjvZy5GdTR.pgp
Description: PGP signature


Re: download

2010-05-17 Thread SmartTech Sales

Thanks Jerry

I had a reply that I should rather use 8.0 and there I can only download 
disk1, the rest I can get from the ports collection. (I'm not sure that I 
can download all 2GB of the DVD successfully, our bandwidth in SA is not 
great or very reliable)  We want to use freeBSD to setup NAS, do I need any 
of the ports to do this?


I'm not looking at freeNAS because the SATA RAID card that I'm looking at 
does not support it, the Adaptec 51645 card supports freeBSD though.


Regards

Karen

- Original Message - 
From: "Jerry McAllister" 

To: "Karen Bester" 
Cc: 
Sent: Monday, May 17, 2010 5:55 PM
Subject: Re: download



On Mon, May 17, 2010 at 03:44:17PM +0200, Karen Bester wrote:


Hi, I wish to download FreeBSD but I am unsure which option to choose.

FTP directory /pub/FreeBSD/releases/i386/ISO-IMAGES/7.3/ at 
ftp.freebsd.org
To view this FTP site in Windows Explorer, click Page, and then click 
Open FTP Site in Windows Explorer.


Up to higher level directory

03/21/2010 02:13PM534 CHECKSUM.MD5
03/21/2010 02:15PM779 CHECKSUM.SHA256
03/21/2010 02:08PM 40,554,496 FreeBSD-7.3-RELEASE-i386-bootonly.iso
03/21/2010 02:09PM612,933,632 FreeBSD-7.3-RELEASE-i386-disc1.iso
03/21/2010 02:09PM706,879,488 FreeBSD-7.3-RELEASE-i386-disc2.iso
03/21/2010 02:10PM542,836,736 FreeBSD-7.3-RELEASE-i386-disc3.iso
03/21/2010 02:12PM324,126,720 FreeBSD-7.3-RELEASE-i386-docs.iso
03/21/2010 02:11PM  2,022,695,069 FreeBSD-7.3-RELEASE-i386-dvd1.iso.gz
03/21/2010 02:12PM238,215,168 FreeBSD-7.3-RELEASE-i386-livefs.iso
Please advise


Depends one circumstances.  If you have a good network connection, you
can install over the net and then need only the ...disc1.iso or
possibly the dvd1.iso.

If your net connection is not good enough to support an online install,
then you need either the ...dvd1.iso[.gz]  or the first three
of the CDs  ...disc1.iso, ...disc2.iso and disc3.iso and you do the
install from local media.

The documentation online has descriptions of what is on these disks,
though I suppose the language use might be a bit arcane for a newbie.

Generally I find it better to install over the net if possible -
but you at least need some starter media - CD/DVD of course.

jerry




Regards

Karen Bester



SmartTech
34 Firgrove Way
Constantia Hills
Cape Town
South Africa
7806

Phone:  +27-21-7130126
Fax:  +27-21-7130127
Cell:  +27-(0)82-7882223
E-mail:sa...@smarttech.co.za
WebSite:   www.smarttech.co.za


This message may contain information which is confidential, private or
privileged in nature and subject to legal privilege. If you are not the
intended recipient or the agent responsible for delivering this message 
to

the intended recipient, you may not peruse, use, disseminate, distribute,
store or copy this message or any files attached to this message. If you
have received this message in error, please notify the sender immediately 
by

e-mail, facsimile or telephone and thereafter return and/or destroy the
original message. All reasonable precautions have been taken to ensure no
viruses are present in the message and attachments. Please note that the
recipient must scan this e-mail and any attached files for viruses and 
the

like. The sender accepts no liability of whatever nature for any loss,
liability, damage or expense resulting directly or indirectly from the
access of this message or any attachments to this message. Any views
expressed in this message are those of the individual sender and do not
necessarily reflect those of SmartTech (Spencer Allen Technologies cc),
except where the sender specifically states them to be the view of
SmartTech (Spencer Allen Technologies cc).



__ Information from ESET Smart Security, version of virus 
signature database 5121 (20100517) __


The message was checked by ESET Smart Security.

http://www.eset.com

___
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"




__ Information from ESET Smart Security, version of virus 
signature database 5122 (20100517) __


The message was checked by ESET Smart Security.

http://www.eset.com






__ Information from ESET Smart Security, version of virus signature 
database 5122 (20100517) __

The message was checked by ESET Smart Security.

http://www.eset.com



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe,

RE: xfce display

2010-05-17 Thread Jean-Paul Natola
>Did you configure Xorg to use the intel driver?
>Check the handbook chapter 5.4 especially 5.4.3.1 Configuration with
>Intel(r) i810 Graphics Chipsets.

I have got it configured, now I'm a bit confused on which  "display" section 
I'm supposed to add the "mode"  there are many do I add the 10.24x768  to all 
of them?

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
SubSection "Display"
Viewport   0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 24
EndSubSection
___
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"


xmobar

2010-05-17 Thread Chip Camden
Today's port upgrade for xmobar broke my .xmobarrc.  It no longer accepts
commands whose arguments contain escaped quotes.  I was able to work
around it by changing the command I was spawning to not require quotes,
but where should I report this issue?

-- 
Sterling (Chip) Camden | camdensoftware.com | chipstips.com | chipsquips.com
___
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: download

2010-05-17 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 17/05/2010 16:00:29, Karen Bester wrote:
> I'm not sure if I will be able to download 2GB successfully, I prefer
> getting the separate ISO's. I only see disk1 for 8.0, where are the rest?

Disc1 is all you need to install the OS.  The other disk images contain
mostly precompiled 3rd party packages -- I think the reason that disk2
and disk3 got dropped was that even the size of two CD images is just a
fraction of what it would take to contain most of the available ports.
Rather than make an invidious choice (accompanied, no doubt, by
interminable arguments and bikeshedding) about what should be included,
they decided to reserve the .iso images for FreeBSD and let people
download individual pkgs from the FTP sites instead.

Cheers,

Matthew

PS.  Just to make sure: you do understand that the i386 arch is for all
Intel and AMD processors running in *32bit* mode?  If you've got a more
modern Intel Xeon or Core2 or later processor (or indeed anything AMD
since about 5 years ago), then the amd64 arch will give you better
results.  As the name suggests, this is the *64bit* version of FreeBSD
for Intel derived architectures.  Take care to choose the right
alternative before you put much work into building your system, as
switching from one to the other is pretty painful.

- -- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW
-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.14 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkvxc1QACgkQ8Mjk52CukIyYNwCaAhrJdo55JC9QpBCqnmJ/IKYF
2RkAoJQmTueg9NkYGu58XW5Rm93wibFj
=0j2o
-END PGP SIGNATURE-
___
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: download

2010-05-17 Thread Jerry McAllister
On Mon, May 17, 2010 at 03:44:17PM +0200, Karen Bester wrote:

> Hi, I wish to download FreeBSD but I am unsure which option to choose.
> 
> FTP directory /pub/FreeBSD/releases/i386/ISO-IMAGES/7.3/ at ftp.freebsd.org
> To view this FTP site in Windows Explorer, click Page, and then click Open 
> FTP Site in Windows Explorer. 
> 
> Up to higher level directory
> 
> 03/21/2010 02:13PM534 CHECKSUM.MD5
> 03/21/2010 02:15PM779 CHECKSUM.SHA256
> 03/21/2010 02:08PM 40,554,496 FreeBSD-7.3-RELEASE-i386-bootonly.iso
> 03/21/2010 02:09PM612,933,632 FreeBSD-7.3-RELEASE-i386-disc1.iso
> 03/21/2010 02:09PM706,879,488 FreeBSD-7.3-RELEASE-i386-disc2.iso
> 03/21/2010 02:10PM542,836,736 FreeBSD-7.3-RELEASE-i386-disc3.iso
> 03/21/2010 02:12PM324,126,720 FreeBSD-7.3-RELEASE-i386-docs.iso
> 03/21/2010 02:11PM  2,022,695,069 FreeBSD-7.3-RELEASE-i386-dvd1.iso.gz
> 03/21/2010 02:12PM238,215,168 FreeBSD-7.3-RELEASE-i386-livefs.iso
> Please advise

Depends one circumstances.  If you have a good network connection, you 
can install over the net and then need only the ...disc1.iso or 
possibly the dvd1.iso.

If your net connection is not good enough to support an online install,
then you need either the ...dvd1.iso[.gz]  or the first three
of the CDs  ...disc1.iso, ...disc2.iso and disc3.iso and you do the
install from local media.

The documentation online has descriptions of what is on these disks, 
though I suppose the language use might be a bit arcane for a newbie.

Generally I find it better to install over the net if possible - 
but you at least need some starter media - CD/DVD of course.

jerry  
 

> 
> Regards
> 
> Karen Bester
> 
> 
> 
> SmartTech
> 34 Firgrove Way
> Constantia Hills
> Cape Town 
> South Africa
> 7806
> 
> Phone:  +27-21-7130126   
> Fax:  +27-21-7130127
> Cell:  +27-(0)82-7882223
> E-mail:sa...@smarttech.co.za
> WebSite:   www.smarttech.co.za
> 
> 
> This message may contain information which is confidential, private or 
> privileged in nature and subject to legal privilege. If you are not the 
> intended recipient or the agent responsible for delivering this message to 
> the intended recipient, you may not peruse, use, disseminate, distribute, 
> store or copy this message or any files attached to this message. If you 
> have received this message in error, please notify the sender immediately by 
> e-mail, facsimile or telephone and thereafter return and/or destroy the 
> original message. All reasonable precautions have been taken to ensure no 
> viruses are present in the message and attachments. Please note that the 
> recipient must scan this e-mail and any attached files for viruses and the 
> like. The sender accepts no liability of whatever nature for any loss, 
> liability, damage or expense resulting directly or indirectly from the 
> access of this message or any attachments to this message. Any views 
> expressed in this message are those of the individual sender and do not 
> necessarily reflect those of SmartTech (Spencer Allen Technologies cc), 
> except where the sender specifically states them to be the view of 
> SmartTech (Spencer Allen Technologies cc). 
> 
> 
> 
> __ Information from ESET Smart Security, version of virus signature 
> database 5121 (20100517) __
> 
> The message was checked by ESET Smart Security.
> 
> http://www.eset.com
> 
> ___
> 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"
> 
___
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: VirtualBox: no network

2010-05-17 Thread Ondrej Majerech

Ondrej Majerech wrote:

Anselm Strauss wrote:
I switched to NAT networking for now. It doesn't require any modules 
to load
besides the vboxdrv.ko and runs stable so far. Only strange that ICMP 
is not

working ...



NAT networking doesn't work for me. Which Adapter Type are you using? 
And did you have to do any further configuration or did it jsut work 
out-of-the-box?


~ Ondra


Ah, wait.

The connection partly does work with the default settings. ICMP doesn't 
work for me either, so testing with ping gave me "false" negative. Also, 
DHCP-configured DNS resolver doesn't work for me -- I had to type in a 
DNS server IP address manually. That way, Firefox running on Ubuntu 
inside VBox can finally load pages.


~ Ondra
___
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: VirtualBox: no network

2010-05-17 Thread Ondrej Majerech

Anselm Strauss wrote:

I switched to NAT networking for now. It doesn't require any modules to load
besides the vboxdrv.ko and runs stable so far. Only strange that ICMP is not
working ...



NAT networking doesn't work for me. Which Adapter Type are you using? 
And did you have to do any further configuration or did it jsut work 
out-of-the-box?


~ Ondra
___
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: VirtualBox: no network

2010-05-17 Thread Anselm Strauss
I switched to NAT networking for now. It doesn't require any modules to load
besides the vboxdrv.ko and runs stable so far. Only strange that ICMP is not
working ...

On Tue, May 11, 2010 at 10:16 PM, Anselm Strauss wrote:

> Okay, so it works with the stock kernel when I don't load the module and
> don't start the vboxnet service on boot, but just manually load the
> vboxnetflt module when the system is up. Then I start virtualbox and the
> network works fine. Unfortunately there is no indication what kernel
> modules are needed. I think it needs at least netgraph and ng_ether. But
> obviously that's not enough since network still doesn't work with my
> custom kernel.
>
> Oh, and then it regularly freezes my whole system after running for
> about 20 minutes and I have to do a hardware reset ... ;-)
>
>
> On 05/09/10 13:37, Anselm Strauss wrote:
> > Hi,
> >
> > I'm running VirtualBox 3.1.6 on FreeBSD 8.0 amd64. I loaded the vboxdrv
> > module on boot and started the vboxnet service. Then I set up an Ubuntu
> > 10.04 amd64 guest and configured one bridged network interface. But I
> > can't get an IP address from my DHCP server. When I check with tcpdump
> > on all hosts, the traffic goes out from the Ubuntu guest over the
> > FreeBSD host and arrives at my DHCP server. The replies come in on the
> > host system but are then somehow not forwarded to the guest. I never see
> > incoming traffic on the guest system.
> >
> > I tested this with the stock FreeBSD kernel and with both types bridged
> > and NAT networking. There is no firewall on the host system.
> >
> > Any ideas?
> >
> > Thanks,
> > Anselm
>
>
___
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: download

2010-05-17 Thread Karen Bester

Hi, thanks for the quick response.

I'm not sure if I will be able to download 2GB successfully, I prefer 
getting the separate ISO's. I only see disk1 for 8.0, where are the rest?


11/22/2009 03:42AM 44,738,560 8.0-RELEASE-i386-bootonly.iso
11/22/2009 03:43AM655,591,424 8.0-RELEASE-i386-disc1.iso
11/22/2009 03:46AM  1,870,891,443 8.0-RELEASE-i386-dvd1.iso.gz
11/22/2009 03:47AM256,077,824 8.0-RELEASE-i386-livefs.iso
11/22/2009 04:34AM923,207,680 8.0-RELEASE-i386-memstick.img
11/22/2009 04:39AM346 CHECKSUM.MD5
11/22/2009 04:39AM521 CHECKSUM.SHA256

Regards

Karen

- Original Message - 
From: "Reko Turja" 

To: "Karen Bester" ; 
Sent: Monday, May 17, 2010 4:30 PM
Subject: Re: download



Hi, I wish to download FreeBSD but I am unsure which option to choose.

03/21/2010 02:08PM 40,554,496 FreeBSD-7.3-RELEASE-i386-bootonly.iso


This is a good option, if the machine is connected into internet and
downloading the base system and ports is okay for you.


03/21/2010 02:09PM612,933,632 FreeBSD-7.3-RELEASE-i386-disc1.iso
03/21/2010 02:09PM706,879,488 FreeBSD-7.3-RELEASE-i386-disc2.iso
03/21/2010 02:10PM542,836,736 FreeBSD-7.3-RELEASE-i386-disc3.iso

Boot disc with base system packaged and ports added. Best option if
you are mostly planning to use prebuild software or the machine is not
connected.


03/21/2010 02:12PM324,126,720 FreeBSD-7.3-RELEASE-i386-docs.iso
03/21/2010 02:11PM  2,022,695,069 FreeBSD-7.3-RELEASE-i386-dvd1.iso.gz

Basically discs1-3 'merged' in one DVD image, better than the separate
discs IMHO if you have DVD drive available.


03/21/2010 02:12PM238,215,168 FreeBSD-7.3-RELEASE-i386-livefs.iso


'Repair disc' that can also be used on manual installations and such -
good to have available in case of emergencies, but not really
necessary.

-Reko

PS. And as Frank said in another reply, I'd consider 8.0 instead


__ Information from ESET Smart Security, version of virus signature 
database 5121 (20100517) __


The message was checked by ESET Smart Security.

http://www.eset.com




__ Information from ESET Smart Security, version of virus signature 
database 5121 (20100517) __

The message was checked by ESET Smart Security.

http://www.eset.com



___
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: download

2010-05-17 Thread Reko Turja
Hi, I wish to download FreeBSD but I am unsure which option to 
choose.


03/21/2010 02:08PM 40,554,496 
FreeBSD-7.3-RELEASE-i386-bootonly.iso


This is a good option, if the machine is connected into internet and 
downloading the base system and ports is okay for you.



03/21/2010 02:09PM612,933,632 FreeBSD-7.3-RELEASE-i386-disc1.iso
03/21/2010 02:09PM706,879,488 FreeBSD-7.3-RELEASE-i386-disc2.iso
03/21/2010 02:10PM542,836,736 FreeBSD-7.3-RELEASE-i386-disc3.iso
Boot disc with base system packaged and ports added. Best option if 
you are mostly planning to use prebuild software or the machine is not 
connected.



03/21/2010 02:12PM324,126,720 FreeBSD-7.3-RELEASE-i386-docs.iso
03/21/2010 02:11PM  2,022,695,069 
FreeBSD-7.3-RELEASE-i386-dvd1.iso.gz
Basically discs1-3 'merged' in one DVD image, better than the separate 
discs IMHO if you have DVD drive available.


03/21/2010 02:12PM238,215,168 
FreeBSD-7.3-RELEASE-i386-livefs.iso


'Repair disc' that can also be used on manual installations and such - 
good to have available in case of emergencies, but not really 
necessary.


-Reko

PS. And as Frank said in another reply, I'd consider 8.0 instead 


___
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: download

2010-05-17 Thread Frank Bonnet

Hi

If you can, download the DVD ISO which contains all the FreeBSD stuff
You also might prefer the 8.0 distro

F

On 05/17/10 15:44, Karen Bester wrote:

Hi, I wish to download FreeBSD but I am unsure which option to choose.

FTP directory /pub/FreeBSD/releases/i386/ISO-IMAGES/7.3/ at ftp.freebsd.org
To view this FTP site in Windows Explorer, click Page, and then click Open FTP 
Site in Windows Explorer.

Up to higher level directory

03/21/2010 02:13PM534 CHECKSUM.MD5
03/21/2010 02:15PM779 CHECKSUM.SHA256
03/21/2010 02:08PM 40,554,496 FreeBSD-7.3-RELEASE-i386-bootonly.iso
03/21/2010 02:09PM612,933,632 FreeBSD-7.3-RELEASE-i386-disc1.iso
03/21/2010 02:09PM706,879,488 FreeBSD-7.3-RELEASE-i386-disc2.iso
03/21/2010 02:10PM542,836,736 FreeBSD-7.3-RELEASE-i386-disc3.iso
03/21/2010 02:12PM324,126,720 FreeBSD-7.3-RELEASE-i386-docs.iso
03/21/2010 02:11PM  2,022,695,069 FreeBSD-7.3-RELEASE-i386-dvd1.iso.gz
03/21/2010 02:12PM238,215,168 FreeBSD-7.3-RELEASE-i386-livefs.iso
Please advise

Regards

Karen Bester



SmartTech
34 Firgrove Way
Constantia Hills
Cape Town
South Africa
7806

Phone:  +27-21-7130126
Fax:  +27-21-7130127
Cell:  +27-(0)82-7882223
E-mail:sa...@smarttech.co.za
WebSite:   www.smarttech.co.za


This message may contain information which is confidential, private or
privileged in nature and subject to legal privilege. If you are not the
intended recipient or the agent responsible for delivering this message to
the intended recipient, you may not peruse, use, disseminate, distribute,
store or copy this message or any files attached to this message. If you
have received this message in error, please notify the sender immediately by
e-mail, facsimile or telephone and thereafter return and/or destroy the
original message. All reasonable precautions have been taken to ensure no
viruses are present in the message and attachments. Please note that the
recipient must scan this e-mail and any attached files for viruses and the
like. The sender accepts no liability of whatever nature for any loss,
liability, damage or expense resulting directly or indirectly from the
access of this message or any attachments to this message. Any views
expressed in this message are those of the individual sender and do not
necessarily reflect those of SmartTech (Spencer Allen Technologies cc),
except where the sender specifically states them to be the view of
SmartTech (Spencer Allen Technologies cc).



__ Information from ESET Smart Security, version of virus signature 
database 5121 (20100517) __

The message was checked by ESET Smart Security.

http://www.eset.com

___
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"


___
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"


download

2010-05-17 Thread Karen Bester
Hi, I wish to download FreeBSD but I am unsure which option to choose.

FTP directory /pub/FreeBSD/releases/i386/ISO-IMAGES/7.3/ at ftp.freebsd.org
To view this FTP site in Windows Explorer, click Page, and then click Open FTP 
Site in Windows Explorer. 

Up to higher level directory

03/21/2010 02:13PM534 CHECKSUM.MD5
03/21/2010 02:15PM779 CHECKSUM.SHA256
03/21/2010 02:08PM 40,554,496 FreeBSD-7.3-RELEASE-i386-bootonly.iso
03/21/2010 02:09PM612,933,632 FreeBSD-7.3-RELEASE-i386-disc1.iso
03/21/2010 02:09PM706,879,488 FreeBSD-7.3-RELEASE-i386-disc2.iso
03/21/2010 02:10PM542,836,736 FreeBSD-7.3-RELEASE-i386-disc3.iso
03/21/2010 02:12PM324,126,720 FreeBSD-7.3-RELEASE-i386-docs.iso
03/21/2010 02:11PM  2,022,695,069 FreeBSD-7.3-RELEASE-i386-dvd1.iso.gz
03/21/2010 02:12PM238,215,168 FreeBSD-7.3-RELEASE-i386-livefs.iso
Please advise

Regards

Karen Bester



SmartTech
34 Firgrove Way
Constantia Hills
Cape Town 
South Africa
7806

Phone:  +27-21-7130126   
Fax:  +27-21-7130127
Cell:  +27-(0)82-7882223
E-mail:sa...@smarttech.co.za
WebSite:   www.smarttech.co.za


This message may contain information which is confidential, private or 
privileged in nature and subject to legal privilege. If you are not the 
intended recipient or the agent responsible for delivering this message to 
the intended recipient, you may not peruse, use, disseminate, distribute, 
store or copy this message or any files attached to this message. If you 
have received this message in error, please notify the sender immediately by 
e-mail, facsimile or telephone and thereafter return and/or destroy the 
original message. All reasonable precautions have been taken to ensure no 
viruses are present in the message and attachments. Please note that the 
recipient must scan this e-mail and any attached files for viruses and the 
like. The sender accepts no liability of whatever nature for any loss, 
liability, damage or expense resulting directly or indirectly from the 
access of this message or any attachments to this message. Any views 
expressed in this message are those of the individual sender and do not 
necessarily reflect those of SmartTech (Spencer Allen Technologies cc), 
except where the sender specifically states them to be the view of 
SmartTech (Spencer Allen Technologies cc). 



__ Information from ESET Smart Security, version of virus signature 
database 5121 (20100517) __

The message was checked by ESET Smart Security.

http://www.eset.com

___
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: mount_smbfs and Kerberos

2010-05-17 Thread Ansar Mohammed
Sorry for the necro post..
but the source on mount_smbfs definitely has kerberos options..

http://www.opensource.apple.com/source/smb/smb-431.2/mount_smbfs/mount_smbfs.c



>> mount_smbfs on OSX seems to have Kerberos support, does mount_smbfs on
>> FreeBSD support Kerberos?

>No, but if it's in Darwin, it shouldn't be that hard to port
>(although some parts of CIFS seem to be trailing quite a bit).
>To be honest, I don't see anything about Kerberos in the man
>pages I have available for Darwin.
>
>--
>Lowell Gilbert, embedded/networking software engineer, Boston area
>[url]http://be-well.ilk.org/~lowell/[/url]
___
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: Very simple file sharing between FreeBSD server and windows client ?

2010-05-17 Thread Andrew Gould
On Mon, May 17, 2010 at 3:31 AM, Ruben de Groot  wrote:
> On Tue, May 11, 2010 at 06:43:09AM -0500, Andrew Gould typed:
>>
>> Another item to consider in this discussion is sharity-light, an
>> easy-to-use program that allows FreeBSD to mount Windows shares.
>> Sharity-light is in the ports and Sharity is available  as a
>> commercial product:
>
> What's the advantage over "mount -t smbfs", which comes with the base ?
>
> Ruben
>

When I tried it, back in 2003, I could get it to work easily.  I had
trouble getting smbfs to work.

As someone noted, the sharity-light port is now marked as broken.

Andrew
___
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: xfce display

2010-05-17 Thread Mark Stapper
On 17/05/2010 15:40, Jean-Paul Natola wrote:
> On 14/05/2010 21:56, Jean-Paul Natola wrote:
>   
>> Hi all,
>>
>> I installed Xorg and xfce when I start it (/usr/local/bin/startxfce)  my 
>> screen just shows vertical lines of many different colors on the screen,
>>
>> The monitor (fairly old gateway 15" lcd)   works fine in regular text mode, 
>> on windows os's as well.
>>
>> I do see this in the log
>>
>> (II) Module intel: vendor="X.Org Foundation"
>>   compiled for 1.6.5, module version = 2.7.1
>>   Module class: X.Org Video Driver
>>   ABI class: X.Org Video Driver, version 5.0
>> (II) LoadModule: "i810"
>> (WW) Warning, couldn't open module i810
>> (II) UnloadModule: "i810"
>> (EE) Failed to load module "i810" (module does not exist, 0)
>> (II) LoadModule: "vesa"
>> (II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so
>> (II) Module vesa: vendor="X.Org Foundation"
>>
>> Is the i810 chipset not supported?
>>
>>
>> ___
>> 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"
>>   
>> 
> The i810 chip from intel is supported, just by another name...
> You want the "xf86-video-intel" port
> (http://www.freebsd.org/cgi/url.cgi?ports/x11-drivers/xf86-video-intel/pkg-descr)
> presumably the "intel" module.
> Cheers,
> Mark
> -
>
> I installed the xf86-video-intel port and still the same result when 
> attempting to start xfce
> ___
> 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"
>   
Did you configure Xorg to use the intel driver?
Check the handbook chapter 5.4 especially 5.4.3.1 Configuration with
Intel® i810 Graphics Chipsets.
link:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html




signature.asc
Description: OpenPGP digital signature


RE: xfce display

2010-05-17 Thread Jean-Paul Natola

On 14/05/2010 21:56, Jean-Paul Natola wrote:
> Hi all,
>
> I installed Xorg and xfce when I start it (/usr/local/bin/startxfce)  my 
> screen just shows vertical lines of many different colors on the screen,
>
> The monitor (fairly old gateway 15" lcd)   works fine in regular text mode, 
> on windows os's as well.
>
> I do see this in the log
>
> (II) Module intel: vendor="X.Org Foundation"
>   compiled for 1.6.5, module version = 2.7.1
>   Module class: X.Org Video Driver
>   ABI class: X.Org Video Driver, version 5.0
> (II) LoadModule: "i810"
> (WW) Warning, couldn't open module i810
> (II) UnloadModule: "i810"
> (EE) Failed to load module "i810" (module does not exist, 0)
> (II) LoadModule: "vesa"
> (II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so
> (II) Module vesa: vendor="X.Org Foundation"
>
> Is the i810 chipset not supported?
>
>
> ___
> 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"
>   
The i810 chip from intel is supported, just by another name...
You want the "xf86-video-intel" port
(http://www.freebsd.org/cgi/url.cgi?ports/x11-drivers/xf86-video-intel/pkg-descr)
presumably the "intel" module.
Cheers,
Mark
-

I installed the xf86-video-intel port and still the same result when attempting 
to start xfce
___
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: POP3 to POP3s tanslator

2010-05-17 Thread Roland Smith
On Mon, May 17, 2010 at 11:59:20AM +0300, Anas Matar wrote:
> Dear Sir,
> 
>  
> 
> Can I use your great product FreeBSD as a proxy to translate POP3
> requests to POP3s?
> 
> My problem is simply that I have a software which does not support other
> than POP3 connections for mail servers , and im in need to connect to
> POP3s mail servers.
> 
> SO I want a software in the middle to interface the POP3 requests from
> the client to the POP3s servers.

Have you looked at stunnel? (http://www.stunnel.org/) I'd think it would fit 
your needs.
You can easily install it via the stunnel port /usr/ports/security/stunnel.

See .e.g: http://www.sysdesign.ca/guides/secure_pop3.html for the set-up.


Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpOeWHsZofhK.pgp
Description: PGP signature


POP3 to POP3s tanslator

2010-05-17 Thread Anas Matar
Dear Sir,

 

Can I use your great product FreeBSD as a proxy to translate POP3
requests to POP3s?

 

My problem is simply that I have a software which does not support other
than POP3 connections for mail servers , and im in need to connect to
POP3s mail servers.

 

SO I want a software in the middle to interface the POP3 requests from
the client to the POP3s servers.

 

Could this be done by FreeBSD?

 

Best Regards

 

Anas Matar

System Administrator

iHorizons 

Tel : - +962 6 534 1640 ext 62

Mobile:- +962 777 530146

 +962 796 356383

Fax:-  +962 6 534 1927

P.O. BOX 1610 Jubaiha 11941 Amman - Jordan

http://www.iHorizons.com   

 

___
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: nanobsd upgrade partitions

2010-05-17 Thread Dimitar Vassilev
Dzienki Maciej :-)

2010/5/17 Maciej Milewski :
> Dnia poniedziałek, 17 maja 2010 o 10:06:05 Dimitar Vassilev napisał(a):
>> Hello,
>> Could someone advise how one should create 1 unused partition for
>> upgrading nanobsd in myconf.nano? What variables should I put into the
>> config file to have a such?
> # Number of code images on media (1 or 2)
> NANO_IMAGES=2
> This should do it for you. It does it automaticaly to create two images of the
> same size.
>
>> How big it should be for 4GB card?
> It depends on your needs. How much you need for your nanobsd installation.
> Check how big it is now and add some space for future. If you will leave
> enough room you won't need to reflash full disk but only image of one
> partition/slice.
>
>> Also what is the filesystem referred by  NANO_DATASIZE variable?
> If I remember correctly DATASIZE is size of additional partition f.ex. for
> application data that remains untouched between upgrading of nanobsd.
>
>> Thanks in advance!
>> Dimitar
>
>
> Greetings,
> Maciej Milewski
>
___
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: File system

2010-05-17 Thread Nikos Vassiliadis

Craig Whipp wrote:

On Mon, May 10, 2010 10:53 am, Nikos Vassiliadis wrote:

Ansar Mohammed wrote:

Hello All,
I have a FreeBSD VM running. Whenever I reboot the VM without a clean
shutdown it boots into single user mode and I have to run fsck.

When I run fsck, the file system clearly has issues.

Is there any way to have FreeBSD run on a better file system that wont
crap
out on me everytime I do and unclean shutdown?

I am really surprised no one proposed geom journaling. With gjournal,
I never had to do a manual full fsck and have had plenty of unclean
shutdowns. I also occasionally do fsck the filesystem and there were
no errors ever found. It definitely adds the ease factor I am looking
for in a journaling sollution in the case of an unclean shutdown...



Correct me if I'm wrong, but since this FreeBSD install is running inside
of a VM, in addition to any of the precautions suggested here to get data
written or journaled to the disk as safely as possible, isn't there still
the issue of whether the VM actuall commits these writes to the physical
disk?


I guess the time needed for some data to be committed to stable
storage will be bigger in a VM environment. But that's always the
case, be it a VM, or a disk controller. There will be always some
data in-flight, some delay and a cache which will hold your data before
they arrive to stable storage. gjournal will replay all write attempts
(metadata and data) before the failure, so you should be relatively
sure that all writes are done correctly. I think Ansar just want to
avoid fsck and gjournal provides that. To ensure real data integrity
one should use something else, perhaps ZFS and not a journaling fs.

PS: I didn't see your message in time...

Nikos
___
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: nanobsd upgrade partitions

2010-05-17 Thread Maciej Milewski
Dnia poniedziałek, 17 maja 2010 o 10:06:05 Dimitar Vassilev napisał(a):
> Hello,
> Could someone advise how one should create 1 unused partition for
> upgrading nanobsd in myconf.nano? What variables should I put into the
> config file to have a such?
# Number of code images on media (1 or 2)
NANO_IMAGES=2
This should do it for you. It does it automaticaly to create two images of the 
same size.

> How big it should be for 4GB card?
It depends on your needs. How much you need for your nanobsd installation. 
Check how big it is now and add some space for future. If you will leave 
enough room you won't need to reflash full disk but only image of one 
partition/slice.

> Also what is the filesystem referred by  NANO_DATASIZE variable?
If I remember correctly DATASIZE is size of additional partition f.ex. for 
application data that remains untouched between upgrading of nanobsd.

> Thanks in advance!
> Dimitar


Greetings,
Maciej Milewski
___
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: Very simple file sharing between FreeBSD server and windows client ?

2010-05-17 Thread Ruben de Groot
On Tue, May 11, 2010 at 06:43:09AM -0500, Andrew Gould typed:
> 
> Another item to consider in this discussion is sharity-light, an
> easy-to-use program that allows FreeBSD to mount Windows shares.
> Sharity-light is in the ports and Sharity is available  as a
> commercial product:

What's the advantage over "mount -t smbfs", which comes with the base ?

Ruben
___
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"


nanobsd upgrade partitions

2010-05-17 Thread Dimitar Vassilev
Hello,
Could someone advise how one should create 1 unused partition for
upgrading nanobsd in myconf.nano? What variables should I put into the
config file to have a such?
How big it should be for 4GB card?
Also what is the filesystem referred by  NANO_DATASIZE variable?
Thanks in advance!
Dimitar
___
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: xfce display

2010-05-17 Thread Mark Stapper
On 14/05/2010 21:56, Jean-Paul Natola wrote:
> Hi all,
>
> I installed Xorg and xfce when I start it (/usr/local/bin/startxfce)  my 
> screen just shows vertical lines of many different colors on the screen,
>
> The monitor (fairly old gateway 15" lcd)   works fine in regular text mode, 
> on windows os's as well.
>
> I do see this in the log
>
> (II) Module intel: vendor="X.Org Foundation"
>   compiled for 1.6.5, module version = 2.7.1
>   Module class: X.Org Video Driver
>   ABI class: X.Org Video Driver, version 5.0
> (II) LoadModule: "i810"
> (WW) Warning, couldn't open module i810
> (II) UnloadModule: "i810"
> (EE) Failed to load module "i810" (module does not exist, 0)
> (II) LoadModule: "vesa"
> (II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so
> (II) Module vesa: vendor="X.Org Foundation"
>
> Is the i810 chipset not supported?
>
>
> ___
> 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"
>   
The i810 chip from intel is supported, just by another name...
You want the "xf86-video-intel" port
(http://www.freebsd.org/cgi/url.cgi?ports/x11-drivers/xf86-video-intel/pkg-descr)
presumably the "intel" module.
Cheers,
Mark



signature.asc
Description: OpenPGP digital signature


Intel DG45FC Fly Creek LGA 775 Mini-ITX system board compatibility?

2010-05-17 Thread Kaya Saman

Hi,

I'd just like to know if the Intel DG45FC Fly Creek LGA 775 Mini-ITX 
system board is compatible with FreeBSD and also if there is a PCIe SATA 
card recommendation too as I need more SATA ports??


I plan on building a Mini-ITX based NAS/Server using a Chenbro hot-swap 
chassis with FreeBSD 8.0 x64 at the heart of the system so I just want 
to make sure that everything I buy is going to work and won't cause me 
any problems and make me revert to Linux which would be a drag as 
there's no ZFS file system and I just squared all the ZFS stuff on the 
FreeBSD-FS portion of the mailing list.


If anyone can give me any hints, tips, or advice it would be very much 
appreciated!!



Many thanks,


Kaya
___
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"