Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

freebsd-questions Digest, Vol 303, Issue 6

1 view
Skip to first unread message

freebsd-ques...@freebsd.org

unread,
Mar 23, 2010, 1:58:35 PM3/23/10
to freebsd-...@freebsd.org
Send freebsd-questions mailing list submissions to
freebsd-...@freebsd.org

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
or, via email, send a message with subject or body 'help' to
freebsd-ques...@freebsd.org

You can reach the person managing the list at
freebsd-que...@freebsd.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of freebsd-questions digest..."


Today's Topics:

1. Re: Weird Problems with User Home Directory , Asking for help
(Matthew Seaman)
2. sendmail && UTF-8 (Matthias Apitz)
3. Re: Also have a dead box [ WAS: Re: OT: dead box ] (Tim Judd)
4. Re: Fwd: Re: FreeBSD NFS client goes into infinite retry loop
(Steve Polyack)
5. Re: Setting ucastrate in /etc/rc.conf (Adam PAPAI)
6. Re: Weird Problems with User Home Directory , Asking for help
(Aaron Lewis)
7. Re: FreeBSD NFS client goes into infinite retry loop
(John Baldwin)
8. mysql can't running (m.anis)
9. Re: Elegant way to hack port source (Paul Schmehl)
10. Re: mysql can't running (Jorge Biquez)
11. Re: mysql can't running (Cristiano Deana)
12. Re: mysql can't running (Odhiambo Washington)
13. Re: mysql can't running (Alejandro Imass)
14. Re: mysql can't running (m.anis)
15. Re: mysql can't running (m.anis)
16. Re: mysql can't running (Alejandro Imass)
17. Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
(D?nielisz L?szl?)
18. Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
(O. Hartmann)
19. Re: mysql can't running (Sergio Tam)
20. lighttpd in a jail says address is already in use (its not)
(Vincent Hoffman)
21. Re: lighttpd in a jail says address is already in use (its
not) (Vincent Hoffman)
22. Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
(Sean McAfee)
23. Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
(Freddie Cash)
24. Diablo JDK & Undefined symbol "gethostbyname_r" (Sigmar Muuga)
25. Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
(Kruppa, Peter Ulrich)


----------------------------------------------------------------------

Message: 1
Date: Tue, 23 Mar 2010 12:16:09 +0000
From: Matthew Seaman <m.se...@infracaninophile.co.uk>
Subject: Re: Weird Problems with User Home Directory , Asking for help
To: Aaron Lewis <aaron.l...@gmail.com>
Cc: freebsd-...@freebsd.org
Message-ID: <4BA8B109...@infracaninophile.co.uk>
Content-Type: text/plain; charset=UTF-8

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 22/03/2010 23:47:44, Aaron Lewis wrote:
> Looks like i found the problem , i thought i've made a mistake.
>
> I shouldn't use `pw user add aaron' right ?
> That won't create user home directory , when i found i've got no home
> directory.
> So at that time , i created it and change the owner to my user.

pw user add is fine for creating accounts. It should create the home
directory for you if given the right arguments. Even so, just creating
the home directory by hand after creating the account should not be a
problem.

> $ sudo tail -f /var/log/auth.log
> login: _secure_path: cannot stat /home/frozen/.login_conf: Permission
> denied // Strange , pay attention to user permissions below

This means that the ownership/permissions of one of the directories in
the path up to /home/frozen is wrong. Implied is that it is possible for
non-root to substitute their own copy of /home/frozen/.login_conf
somehow. What's the output from:

ls -ld / /home

(Add /usr/home to that list if /home is a sym-link)

Is there anything unusual about how the filesystem is mounted?

>
> // I don't know why
> `stat' function fails ..
>
> $ ls -ld /home/frozen
> drwxr-xr-x 3 frozen frozen 512 Mar 5 22:36 /home/frozen/
> $ ls -lah /home/frozen/.login_conf
> -rw-r--r-- 1 frozen frozen 171 Dec 3 14:34 /home/frozen/.login_conf
>
> BTW: ssh login with user frozen is fine.

Which is a little disconcerting, because ssh is pretty anal about file
permissions itself, but it isn't triggering the problem here.

Cheers,

Matthew

- --
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/

iEYEARECAAYFAkuosQkACgkQ8Mjk52CukIyL+QCgib3JZkMQDsa1JmKg8rqFiIIp
EIYAniLNsh/lMANiJsFSbdx8oekEpMNR
=NlkH
-----END PGP SIGNATURE-----


------------------------------

Message: 2
Date: Tue, 23 Mar 2010 13:29:27 +0100
From: Matthias Apitz <gu...@unixarea.de>
Subject: sendmail && UTF-8
To: freebsd-...@freebsd.org
Message-ID: <2010032312...@current.Sisis.de>
Content-Type: text/plain; charset=iso-8859-1


Hello,

I want to sendout mail the following way:

sendmail -t < filename

where the file 'filename' contains some header lines, especially To:
Subject: and From: and as well the body of the mail; all is in UTF-8
and I know I have to encode the header lines and says something about
the body. With Perl it goes like this:

#!/usr/bin/perl

use utf8;
use Encode;

open (MAIL, "|/usr/lib/sendmail -t");

$x="Subject: ... with some UTF-8 chars";
$x_for_header = Encode::encode('MIME-Q', $x);

print MAIL "From: .......\n";
print MAIL "To: .......\n";
print MAIL $x_for_header."\n";
print MAIL "Content-type: text/xml\;charset=UTF-8\n";
print MAIL "Content-Transfer-Encoding: 8bit\n";
print MAIL "\n";
... now the plain UTF-8 body follows
close(MAIL) || warn "Error closing mail: $!";
}

How can I encode the header lines (like the above Subject: line) not
using Perl, i.e. with plain shell tools; I've checked out metamail and
such stuff, but they don't help. Any idea? Thanks in advance

matthias
--
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e <gu...@unixarea.de> - w http://www.unixarea.de/
Solidarity with the imperialistic Israel? Not in my name!
żSolidaridad con el imperialismo de Israel? ĄNo en mi nombre!


------------------------------

Message: 3
Date: Tue, 23 Mar 2010 06:57:20 -0600
From: Tim Judd <taj...@gmail.com>
Subject: Re: Also have a dead box [ WAS: Re: OT: dead box ]
To: 40...@gmx.com
Cc: freebsd-questions <freebsd-...@freebsd.org>
Message-ID:
<ade45ae91003230557g57e...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

On 3/23/10, Corey John Bukolt <ruinerma...@gmail.com> wrote:
> On Sun, 21 Mar 2010 11:23:34 +0000 (06:23 CDT) Chris Whitehouse wrote:
>> When you press the power button does the cpu fan or the power supply fan
>> spin for a moment then stop? That's a sign that something on or plugged
>> in to the motherboard has blown. Unplug things and test again.
>>
>> Chris
>
> Just a few days ago, I was helping a friend build a system (with all
> brand new components, I might add) and we had this very problem. After
> sticking in the CPU and RAM and hooking up and turning on the PSU, the
> green LED on the motherboard turns on. However, the second the power
> button is pressed, everything flashes for a second, then turns back off.
> The green LED on the motherboard also remains on. The only way to get
> it to flash again is to turn off the PSU, wait, then turn it back on.
> We tried re-seating everything, to no avail.
>
> Reading this thread, someone else mentioned beep codes and that if there
> were none, it's most likely a fried motherboard.
>
> Can anyone else confirm this?
>
> ~Corey


Best way to confirm a dead board in any case is those POST diagnosis
cards. They have a dual-digit LED output that changes depending on
the signal on the wire. If at any time those dual-digit LEDs stay
permanently on anything OTHER THAN 00 is a failed POST. If it fails
before it gets a shot at testing RAM or anything, there may be no beep
codes.


Always good to have one in a toolkit.


------------------------------

Message: 4
Date: Tue, 23 Mar 2010 09:37:56 -0400
From: Steve Polyack <kor...@comcast.net>
Subject: Re: Fwd: Re: FreeBSD NFS client goes into infinite retry loop
To: Rick Macklem <rmac...@uoguelph.ca>, John Baldwin
<j...@freebsd.org>, freeb...@freebsd.org
Cc: User Questions <freebsd-...@freebsd.org>,
bsek...@noc.cfi.pgh.pa.us
Message-ID: <4BA8C43...@comcast.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

On 03/22/10 19:53, Rick Macklem wrote:
>
> On Mon, 22 Mar 2010, John Baldwin wrote:
>
> >> It looks like it also returns ESTALE when the inode is invalid (<
> >> ROOTINO ||> max inodes?) - would an unlinked file in FFS referenced at
> >> a later time report an invalid inode?
> >>
>
> I'm no ufs guy, but the only way I can think of is if the file system
> on the server was newfs'd with fewer i-nodes? (Unlikely, but...)
> (Basically, it is safe to return ESTALE for anything that is not
> a transient failure that could recover on a retry.)
>
> >> But back to your point, zfs_zget() seems to be failing and returning the
> >> EINVAL before zfs_fhtovp() even has a chance to set and check zp_gen.
> >> I'm trying to get some more details through the use of gratuitous
> >> dprintf()'s, but they don't seem to be making it to any logs or the
> >> console even with vfs.zfs.debug=1 set. Any pointers on how to get these
> >> dprintf() calls working?
>
> I know diddly (as in absolutely nothing about zfs).
> >
> > That I have no idea on. Maybe Rick can chime in? I'm actually not sure why
> > we would want to treat a FHTOVP failure as anything but an ESTALE error in the
> > NFS server to be honest.
> >
> As far as I know, only if the underlying file system somehow has a
> situation where the file handle can't be translated at that point in time,
> but could be able to later. I have no idea if any file system is like that
> and I don't such a file system would be an appropriate choice for an NFS
> server, even if such a beast exists. (Even then, although FreeBSD's client
> assumes EIO might recover on a retry, that isn't specified in any RFC, as
> far as I know.)
>
> That's why I proposed a patch that simply translates all VFS_FHTOVP()
> errors to ESTALE in the NFS server. (It seems simpler than chasing down
> cases in all the underlying file systems?)
>
> rick, chiming in:-)
>
>
>

Makes sense to me. I'll continue to bang on NFS with your initial patch
in my lab for a while. Should I open a PR for further discussion /
resolution of the issue in -CURRENT / STABLE?

Thanks,
Steve Polyack


------------------------------

Message: 5
Date: Tue, 23 Mar 2010 14:57:29 +0100
From: Adam PAPAI <wo...@wooh.hu>
Subject: Re: Setting ucastrate in /etc/rc.conf
To: freebsd-...@freebsd.org
Message-ID: <4BA8C8C9...@wooh.hu>
Content-Type: text/plain; charset=UTF-8

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 3/22/10 8:32 PM, Christopher Theodore; RHODES wrote:
> Hello;
>
>
> $ uname -rs
> FreeBSD 8.0-RELEASE-p2
>
>
> I have setup ral0/wlan0 in /etc/rc.conf thusly:
>
> wlans_ral0="wlan0"
> create_args_wlan0="wlanmode sta mcastrate 54 ssid linksys channel 6"
> ifconfig_wlan0="inet 10.0.0.10 netmask 255.255.255.0"
>
>
> This provides a working interface but ucastrate is not being set and I
> have to manually set it after I login with:
>
> # ifconfig wlan0 ucastrate 54
>
>
> How can I effectively set ucastrate in rc.conf?

is this a typo?

mcastrate != ucastrate

Have you tried this one

create_args_wlan0="wlanmode sta ucastrate 54 ssid linksys channel 6"

instead this?

create_args_wlan0="wlanmode sta mcastrate 54 ssid linksys channel 6"

- --
Adam PAPAI

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJLqMjJAAoJEGq0EWvh5uiI89AIAL/zRdFyBi0ZsF/jZTwN3ndL
rMlli/x4W+i9q1F3vjc5jVhMC80xexw2qsionnqqRRooq8ptE40+1WD0o2XKi26v
vbcrGJw5Mns/IefwjKUBwVNjnkmbODuUDhRYfSR38e4M3BkikUPgGQoCSUTrOYRt
OAAj4n0aaFwzMnh6IuVlmqtrwUR4R8Xbr9rZjFNYNSvajHBnwerOOfSssoZXVsDd
3E874lHIwiNXKbEo00tWzn94dnQQJ6XP5+8vdGj0nHmkP+ZVddY0l3v3jsT/z0uc
wwqCkwyy84qLa+i9evUzMtvv/GetK4XFRi9YgxVqknuyFZwG/Ck25vlck79NUgU=
=5Fkt
-----END PGP SIGNATURE-----


------------------------------

Message: 6
Date: Tue, 23 Mar 2010 22:10:39 +0800
From: Aaron Lewis <aaron.l...@gmail.com>
Subject: Re: Weird Problems with User Home Directory , Asking for help
To: Matthew Seaman <m.se...@infracaninophile.co.uk>
Cc: freebsd-...@freebsd.org
Message-ID: <4BA8CBDF...@gmail.com>
Content-Type: text/plain; charset="utf-8"


>> $ sudo tail -f /var/log/auth.log
>> login: _secure_path: cannot stat /home/frozen/.login_conf: Permission
>> denied // Strange , pay attention to user permissions below
>>
>
> This means that the ownership/permissions of one of the directories in
> the path up to /home/frozen is wrong. Implied is that it is possible for
> non-root to substitute their own copy of /home/frozen/.login_conf
> somehow. What's the output from:
>
> ls -ld / /home
>
> (Add /usr/home to that list if /home is a sym-link)
>
> Is there anything unusual about how the filesystem is mounted?
>
>
Oops , it's a symbol link.

[frozen@*** ~]$ ls -ld / /home /usr/home
drwxr-xr-x 19 root wheel 512 Mar 23 07:48 /
lrwxr-xr-x 1 root wheel 8 Dec 3 14:34 /home -> usr/home
drwxr-x--- 4 root wheel 512 Mar 23 07:39 /usr/home

I've just read sth. about Biba Model , `no read down, no write up' ,
It's default installation with a Custom Kernel , MAC enabled.

Attached Kernel Config File.

>>
>> // I don't know why
>> `stat' function fails ..
>>
>> $ ls -ld /home/frozen
>> drwxr-xr-x 3 frozen frozen 512 Mar 5 22:36 /home/frozen/
>> $ ls -lah /home/frozen/.login_conf
>> -rw-r--r-- 1 frozen frozen 171 Dec 3 14:34 /home/frozen/.login_conf
>>
>> BTW: ssh login with user frozen is fine.
>>
>
> Which is a little disconcerting, because ssh is pretty anal about file
> permissions itself, but it isn't triggering the problem here.
>
> Cheers,
>
> Matthew
>
> - --
> 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/
>
> iEYEARECAAYFAkuosQkACgkQ8Mjk52CukIyL+QCgib3JZkMQDsa1JmKg8rqFiIIp
> EIYAniLNsh/lMANiJsFSbdx8oekEpMNR
> =NlkH
> -----END PGP SIGNATURE-----
>


--
Best Regards,
Aaron Lewis - PGP: 0x4A6D32A0
FingerPrint EA63 26B2 6C52 72EA A4A5 EB6B BDFE 35B0 4A6D 32A0
irc: A4r0n on freenode

-------------- next part --------------
cpu I686_CPU
ident AARON

# To statically compile in device wiring instead of /boot/device.hints
#hints "GENERIC.hints" # Default places to look for devices.

# Use the following to compile in values accessible to the kernel
# through getenv() (or kenv(1) in userland). The format of the file
# is 'variable=value', see kenv(1)
#
# env "GENERIC.env"

makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols

options SCHED_ULE # ULE scheduler
options PREEMPTION # Enable kernel thread preemption
options INET # InterNETworking
options INET6 # IPv6 communications protocols
options SCTP # Stream Control Transmission Protocol
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big directories
options UFS_GJOURNAL # Enable gjournal-based UFS journaling
options MD_ROOT # MD is a potential root device
options NFSCLIENT # Network Filesystem Client
options NFSSERVER # Network Filesystem Server
options NFSLOCKD # Network Lock Manager
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660 # ISO 9660 Filesystem
options PROCFS # Process filesystem (requires PSEUDOFS)
options PSEUDOFS # Pseudo-filesystem framework
options GEOM_PART_GPT # GUID Partition Tables.
options GEOM_LABEL # Provides labelization
options COMPAT_43TTY # BSD 4.3 TTY compat (sgtty)
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options COMPAT_FREEBSD5 # Compatible with FreeBSD5
options COMPAT_FREEBSD6 # Compatible with FreeBSD6
options COMPAT_FREEBSD7 # Compatible with FreeBSD7
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
options KTRACE # ktrace(1) support
options STACK # stack(9) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options P1003_1B_SEMAPHORES # POSIX-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
options AUDIT # Security event auditing
options MAC # TrustedBSD MAC Framework
options FLOWTABLE # per-cpu routing cache
#options KDTRACE_HOOKS # Kernel DTrace hooks

# To make an SMP kernel, the next two lines are needed
#options SMP # Symmetric MultiProcessor Kernel
#device apic # I/O APIC

# CPU frequency control
#device cpufreq

# Bus support.
device acpi
device eisa
device pci

# Floppy drives
#device fdc

# ATA and ATAPI devices
device ata
device atadisk # ATA disk drives
device ataraid # ATA RAID drives
device atapicd # ATAPI CDROM drives
device atapifd # ATAPI floppy drives
device atapist # ATAPI tape drives
options ATA_STATIC_ID # Static device numbering

# SCSI Controllers
device ahb # EISA AHA1742 family
device ahc # AHA2940 and onboard AIC7xxx devices
options AHC_REG_PRETTY_PRINT # Print register bitfields in debug
# output. Adds ~128k to driver.
device ahd # AHA39320/29320 and onboard AIC79xx devices
options AHD_REG_PRETTY_PRINT # Print register bitfields in debug
# output. Adds ~215k to driver.
#device amd # AMD 53C974 (Tekram DC-390(T))
device hptiop # Highpoint RocketRaid 3xxx series
device isp # Qlogic family
#device ispfw # Firmware for QLogic HBAs- normally a module
device mpt # LSI-Logic MPT-Fusion
#device ncr # NCR/Symbios Logic
device sym # NCR/Symbios Logic (newer chipsets + those of `ncr')
device trm # Tekram DC395U/UW/F DC315U adapters

device adv # Advansys SCSI adapters
device adw # Advansys wide SCSI adapters
device aha # Adaptec 154x SCSI adapters
device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
device bt # Buslogic/Mylex MultiMaster SCSI adapters

device ncv # NCR 53C500
device nsp # Workbit Ninja SCSI-3
device stg # TMC 18C30/18C50

# SCSI peripherals
device scbus # SCSI bus (required for SCSI)
device ch # SCSI media changers
device da # Direct Access (disks)
device sa # Sequential Access (tape etc)
device cd # CD
device pass # Passthrough device (direct SCSI access)
device ses # SCSI Environmental Services (and SAF-TE)

# RAID controllers interfaced to the SCSI subsystem
#device amr # AMI MegaRAID
#device arcmsr # Areca SATA II RAID
#device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID
#device ciss # Compaq Smart RAID 5*
#device dpt # DPT Smartcache III, IV - See NOTES for options
#device hptmv # Highpoint RocketRAID 182x
#device hptrr # Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
#device iir # Intel Integrated RAID
#device ips # IBM (Adaptec) ServeRAID
#device mly # Mylex AcceleRAID/eXtremeRAID
#device twa # 3ware 9000 series PATA/SATA RAID

# RAID controllers
#device aac # Adaptec FSA RAID
#device aacp # SCSI passthrough for aac (requires CAM)
#device ida # Compaq Smart RAID
#device mfi # LSI MegaRAID SAS
#device mlx # Mylex DAC960 family
#device pst # Promise Supertrak SX6000
#device twe # 3ware ATA RAID

# atkbdc0 controls both the keyboard and the PS/2 mouse
device atkbdc # AT keyboard controller
device atkbd # AT keyboard
device psm # PS/2 mouse

device kbdmux # keyboard multiplexer

device vga # VGA video card driver

device splash # Splash screen and screen saver support

# syscons is the default console driver, resembling an SCO console
device sc

device agp # support several AGP chipsets

# Power management support (see NOTES for more options)
#device apm
# Add suspend/resume support for the i8254.
#device pmtimer

# PCCARD (PCMCIA) support
# PCMCIA and cardbus bridge support
#device cbb # cardbus (yenta) bridge
#device pccard # PC Card (16-bit) bus
#device cardbus # CardBus (32-bit) bus

# Serial (COM) ports
device uart # Generic UART driver

# Parallel port
device ppc
device ppbus # Parallel port bus (required)
device lpt # Printer
device plip # TCP/IP over parallel
device ppi # Parallel port interface device
#device vpo # Requires scbus and da

# If you've got a "dumb" serial or parallel PCI card that is
# supported by the puc(4) glue driver, uncomment the following
# line to enable it (connects to sio, uart and/or ppc drivers):
#device puc

# PCI Ethernet NICs.
#device de # DEC/Intel DC21x4x (``Tulip'')
device em # Intel PRO/1000 Gigabit Ethernet Family
#device igb # Intel PRO/1000 PCIE Server Gigabit Family
#device ixgb # Intel PRO/10GbE Ethernet Card
#device le # AMD Am7900 LANCE and Am79C9xx PCnet
#device ti # Alteon Networks Tigon I/II gigabit Ethernet
#device txp # 3Com 3cR990 (``Typhoon'')
#device vx # 3Com 3c590, 3c595 (``Vortex'')

# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
device miibus # MII bus support
#device ae # Attansic/Atheros L2 FastEthernet
#device age # Attansic/Atheros L1 Gigabit Ethernet
#device alc # Atheros AR8131/AR8132 Ethernet
#device ale # Atheros AR8121/AR8113/AR8114 Ethernet
#device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet
#device bfe # Broadcom BCM440x 10/100 Ethernet
#device bge # Broadcom BCM570xx Gigabit Ethernet
#device dc # DEC/Intel 21143 and various workalikes
#device et # Agere ET1310 10/100/Gigabit Ethernet
#device fxp # Intel EtherExpress PRO/100B (82557, 82558)
#device jme # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
#device lge # Level 1 LXT1001 gigabit Ethernet
#device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet
#device nfe # nVidia nForce MCP on-board Ethernet
#device nge # NatSemi DP83820 gigabit Ethernet
##device nve # nVidia nForce MCP on-board Ethernet Networking
#device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le')
#device re # RealTek 8139C+/8169/8169S/8110S
#device rl # RealTek 8129/8139
#device sf # Adaptec AIC-6915 (``Starfire'')
#device sis # Silicon Integrated Systems SiS 900/SiS 7016
#device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
#device ste # Sundance ST201 (D-Link DFE-550TX)
#device stge # Sundance/Tamarack TC9021 gigabit Ethernet
#device tl # Texas Instruments ThunderLAN
#device tx # SMC EtherPower II (83c170 ``EPIC'')
#device vge # VIA VT612x gigabit Ethernet
#device vr # VIA Rhine, Rhine II
#device wb # Winbond W89C840F
#device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'')

# ISA Ethernet NICs. pccard NICs included.
#device cs # Crystal Semiconductor CS89x0 NIC
# 'device ed' requires 'device miibus'
#device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards
#device ex # Intel EtherExpress Pro/10 and Pro/10+
#device ep # Etherlink III based cards
#device fe # Fujitsu MB8696x based cards
#device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc.
#device sn # SMC's 9000 series of Ethernet chips
#device xe # Xircom pccard Ethernet

# Wireless NIC cards
#device wlan # 802.11 support
#options IEEE80211_DEBUG # enable debug msgs
#options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
#options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
#device wlan_wep # 802.11 WEP support
#device wlan_ccmp # 802.11 CCMP support
#device wlan_tkip # 802.11 TKIP support
#device wlan_amrr # AMRR transmit rate control algorithm
#device an # Aironet 4500/4800 802.11 wireless NICs.
#device ath # Atheros pci/cardbus NIC's
#device ath_hal # pci/cardbus chip support
#options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
#device ath_rate_sample # SampleRate tx rate control for ath
#device ral # Ralink Technology RT2500 wireless NICs.
#device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
#device wl # Older non 802.11 Wavelan wireless NIC.

# Pseudo devices.
device loop # Network loopback
device random # Entropy device
device ether # Ethernet support
device tun # Packet tunnel.
device pty # BSD-style compatibility pseudo ttys
device md # Memory "disks"
device gif # IPv6 and IPv4 tunneling
device faith # IPv6-to-IPv4 relaying (translation)
device firmware # firmware assist module

# The `bpf' device enables the Berkeley Packet Filter.
# Be aware of the administrative consequences of enabling this!
# Note that 'bpf' is required for DHCP.
device bpf # Berkeley packet filter

# 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 udbp # USB Double Bulk Pipe devices
device uhid # "Human Interface Devices"
device ukbd # Keyboard
device ulpt # Printer
device umass # Disks/Mass storage - Requires scbus and da
device ums # Mouse
#device rum # Ralink Technology RT2501USB wireless NICs
#device ural # Ralink Technology RT2500USB wireless NICs
#device uath # Atheros AR5523 wireless NICs
#device zyd # ZyDAS zb1211/zb1211b wireless NICs
#device urio # Diamond Rio 500 MP3 player
## USB Serial devices
#device u3g # USB-based 3G modems (Option, Huawei, Sierra)
#device uark # Technologies ARK3116 based serial adapters
#device ubsa # Belkin F5U103 and compatible serial adapters
#device uftdi # For FTDI usb serial adapters
#device uipaq # Some WinCE based devices
#device uplcom # Prolific PL-2303 serial adapters
#device uslcom # SI Labs CP2101/CP2102 serial adapters
#device uvisor # Visor and Palm devices
#device uvscom # USB serial support for DDI pocket's PHS
## USB Ethernet, requires miibus
#device aue # ADMtek USB Ethernet
#device axe # ASIX Electronics USB Ethernet
#device cdce # Generic USB over Ethernet
#device cue # CATC USB Ethernet
#device kue # Kawasaki LSI USB Ethernet
#device rue # RealTek RTL8150 USB Ethernet
#device udav # Davicom DM9601E USB
#
## FireWire support
#device firewire # FireWire bus code
##device sbp # SCSI over FireWire (Requires scbus and da)
#device fwe # Ethernet over FireWire (non-standard!)
#device fwip # IP over FireWire (RFC 2734,3146)
#device dcons # Dumb console driver
#device dcons_crom # Configuration ROM for dcons
device dragon_saver
options SC_KERNEL_CONS_ATTR=(FG_RED|BG_BLACK)
options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED)

------------------------------

Message: 7
Date: Tue, 23 Mar 2010 10:27:25 -0400
From: John Baldwin <j...@freebsd.org>
Subject: Re: FreeBSD NFS client goes into infinite retry loop
To: Rick Macklem <rmac...@uoguelph.ca>
Cc: freeb...@freebsd.org, Steve Polyack <kor...@comcast.net>,
bsek...@noc.cfi.pgh.pa.us, User Questions
<freebsd-...@freebsd.org>
Message-ID: <20100323102...@freebsd.org>
Content-Type: Text/Plain; charset="iso-8859-1"

On Monday 22 March 2010 7:53:23 pm Rick Macklem wrote:
> > That I have no idea on. Maybe Rick can chime in? I'm actually not sure why
> > we would want to treat a FHTOVP failure as anything but an ESTALE error in the
> > NFS server to be honest.
> >
> As far as I know, only if the underlying file system somehow has a
> situation where the file handle can't be translated at that point in time,
> but could be able to later. I have no idea if any file system is like that
> and I don't such a file system would be an appropriate choice for an NFS
> server, even if such a beast exists. (Even then, although FreeBSD's client
> assumes EIO might recover on a retry, that isn't specified in any RFC, as
> far as I know.)
>
> That's why I proposed a patch that simply translates all VFS_FHTOVP()
> errors to ESTALE in the NFS server. (It seems simpler than chasing down
> cases in all the underlying file systems?)

Ah, I had read that patch as being a temporary testing hack. If you think
that would be a good approach in general that would be ok with me.

--
John Baldwin


------------------------------

Message: 8
Date: Tue, 23 Mar 2010 22:15:06 +0700
From: "m.anis" <m.a...@arc.itb.ac.id>
Subject: mysql can't running
To: freebsd-...@freebsd.org
Message-ID: <4BA8DAFA...@arc.itb.ac.id>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Please help, mysql can't running
i had installed it and using phpmyadmin
when i check /etc/rc.d/mysql-server status
it says mysql is not running
when i tried /usr/local/bin/mysqld_safe &
startting mysqld daemon with database from /var/db/mysql
STOPPING server from pid file /var/db/mysql/<myhost>.pid
100323 22:09:46 mysqld ended

--
--
Terima Kasih
Muhammad Anis
Teknik Informatika
Institut Teknologi Bandung

------------------------------

Message: 9
Date: Tue, 23 Mar 2010 09:47:49 -0500
From: Paul Schmehl <pschmeh...@tx.rr.com>
Subject: Re: Elegant way to hack port source
To: gla...@FreeBSD.org, freebsd-...@freebsd.org
Cc: Paul Schmehl <pschmeh...@tx.rr.com>, "cork...@comcast.net >>
Charlie Kester" <cork...@comcast.net>
Message-ID: <83BEEB5783CC...@utd65257.utdallas.edu>
Content-Type: text/plain; charset=us-ascii; format=flowed

--On Friday, March 19, 2010 19:02:45 -0400 Greg Larkin <gla...@FreeBSD.org>
wrote:
>
> Here's something else that I've found really useful as a port creator,
> maintainer and troubleshooter. If I want to make some additional
> changes to a source file that is patched by a file stored in
> files/patch-...., I'll do this:
>
> make patch # extracts source and patches files
> cd work/foobar/...
># Now make additional edits in patched file, leaving the
># .orig file alone
> cd ../back/to/port/directory
> make makepatch
>
> The makepatch target recurses through the work/foobar directory and
> creates diffs for all file.ext/file.ext.orig pairs. It writes them to
> the files/ directory with the patch- prefix on each so the patch target
> processes them.
>
> The only thing to watch out for here, is that makepatch has its own file
> naming convention that doesn't always mirror the port creator's. For
> instance, some ports have patch files named "patch-aa", "patch-ab", etc.
> The makepatch target will recreate them with filenames based on the
> directory and filename of the file to be patched during the build.
>
> Hope that helps,

Man, does it ever. Thanks for that.

Which brings me to an obvious question. Where can I go to find out what all of
the make targets are? Is it in /usr/ports/Mk/?

--
Paul Schmehl, Senior Infosec Analyst
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
*******************************************
"It is as useless to argue with those who have
renounced the use of reason as to administer
medication to the dead." Thomas Jefferson

------------------------------

Message: 10
Date: Tue, 23 Mar 2010 09:24:18 -0600
From: Jorge Biquez <jbi...@icsmx.com>
Subject: Re: mysql can't running
To: freebsd-...@freebsd.org
Message-ID: <3352202701...@intranet.com.mx>
Content-Type: text/plain; charset="us-ascii"; format=flowed

Hello.

WHat version of Freebsd are you using?
I hacve the same issue in a recnet installed and updated Freebsd 7.3

At 09:15 a.m. 23/03/2010, you wrote:
>Please help, mysql can't running
>i had installed it and using phpmyadmin
>when i check /etc/rc.d/mysql-server status
>it says mysql is not running
>when i tried /usr/local/bin/mysqld_safe &
>startting mysqld daemon with database from /var/db/mysql
>STOPPING server from pid file /var/db/mysql/<myhost>.pid
>100323 22:09:46 mysqld ended
>
>--
>--
>Terima Kasih
>Muhammad Anis
>Teknik Informatika
>Institut Teknologi Bandung
>
>_______________________________________________
>freebsd-...@freebsd.org mailing list
>http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"


------------------------------

Message: 11
Date: Tue, 23 Mar 2010 16:28:51 +0100
From: Cristiano Deana <cristia...@gmail.com>
Subject: Re: mysql can't running
To: freebsd-...@freebsd.org
Message-ID:
<d8a4930a1003230828s15b...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

On Tue, Mar 23, 2010 at 4:15 PM, m.anis <m.a...@arc.itb.ac.id> wrote:

> Please help, mysql can't running
> i had installed it and using phpmyadmin
> when i check /etc/rc.d/mysql-server status
> it says mysql is not running

if you installed it from ports you must have and use
/usr/local/etc/rc.d/mysql start|stop

and of course you should have
mysql_enable="YES" in your /etc/rc.conf

--
Cris, member of G.U.F.I
Italian FreeBSD User Group
http://www.gufi.org/


------------------------------

Message: 12
Date: Tue, 23 Mar 2010 18:31:16 +0300
From: Odhiambo Washington <odhi...@gmail.com>
Subject: Re: mysql can't running
To: Jorge Biquez <jbi...@icsmx.com>
Cc: freebsd-...@freebsd.org
Message-ID:
<991123401003230831n506...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

I thought mysql is controlled from /usr/local/etc/rc.d/mysql-server. At
least that is what I have. I am running FreeBSD 8.0, 7.x and some 6.x and
5.5 and all are the same. It runs!
You need some lines in /etc/rc.conf to make the syatem start mysql server!


On Tue, Mar 23, 2010 at 6:24 PM, Jorge Biquez <jbi...@icsmx.com> wrote:

> Hello.
>
> WHat version of Freebsd are you using?
> I hacve the same issue in a recnet installed and updated Freebsd 7.3
>
> At 09:15 a.m. 23/03/2010, you wrote:
>
>> Please help, mysql can't running
>> i had installed it and using phpmyadmin
>> when i check /etc/rc.d/mysql-server status
>> it says mysql is not running
>> when i tried /usr/local/bin/mysqld_safe &
>> startting mysqld daemon with database from /var/db/mysql
>> STOPPING server from pid file /var/db/mysql/<myhost>.pid
>> 100323 22:09:46 mysqld ended
>>
>> --
>> --
>> Terima Kasih
>> Muhammad Anis
>> Teknik Informatika
>> Institut Teknologi Bandung
>>
>> _______________________________________________
>> freebsd-...@freebsd.org mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> To unsubscribe, send any mail to "
>> freebsd-questi...@freebsd.org"
>>
>
>
> _______________________________________________
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> freebsd-questi...@freebsd.org"
>

--
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
"If you have nothing good to say about someone, just shut up!."
-- Lucky Dube


------------------------------

Message: 13
Date: Tue, 23 Mar 2010 11:02:11 -0430
From: Alejandro Imass <a...@p2ee.org>
Subject: Re: mysql can't running
To: "m.anis" <m.a...@arc.itb.ac.id>
Cc: freebsd-...@freebsd.org
Message-ID:
<a14066a01003230832pcd...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

On Tue, Mar 23, 2010 at 10:45 AM, m.anis <m.a...@arc.itb.ac.id> wrote:
> Please help, mysql can't running
> i had installed it and using phpmyadmin
> when i check /etc/rc.d/mysql-server status
> it says mysql is not running
> when i tried /usr/local/bin/mysqld_safe &
> startting mysqld daemon with database from /var/db/mysql
> STOPPING server from pid file /var/db/mysql/<myhost>.pid
> 100323 22:09:46  mysqld ended

What is the result of:

1)

/usr/local/etc/rc.d/mysql-server onestart

2)

tail /var/log/messages


>
> --
> --
> Terima Kasih
> Muhammad Anis
> Teknik Informatika
> Institut Teknologi Bandung
>
> _______________________________________________
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"
>


------------------------------

Message: 14
Date: Tue, 23 Mar 2010 22:42:46 +0700
From: "m.anis" <m.a...@arc.itb.ac.id>
Subject: Re: mysql can't running
To: Alejandro Imass <a...@p2ee.org>
Cc: freebsd-...@freebsd.org
Message-ID: <4BA8E176...@arc.itb.ac.id>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

On 23/03/2010 22:32, Alejandro Imass wrote:
> On Tue, Mar 23, 2010 at 10:45 AM, m.anis<m.a...@arc.itb.ac.id> wrote:
>
>> Please help, mysql can't running
>> i had installed it and using phpmyadmin
>> when i check /etc/rc.d/mysql-server status
>> it says mysql is not running
>> when i tried /usr/local/bin/mysqld_safe&
>> startting mysqld daemon with database from /var/db/mysql
>> STOPPING server from pid file /var/db/mysql/<myhost>.pid
>> 100323 22:09:46 mysqld ended
>>
> What is the result of:
>
> 1)
>
> /usr/local/etc/rc.d/mysql-server onestart
>
> 2)
>
> tail /var/log/messages
>
>
>
>
>
>> --
>> --
>> Terima Kasih
>> Muhammad Anis
>> Teknik Informatika
>> Institut Teknologi Bandung
>>
>> _______________________________________________
>> freebsd-...@freebsd.org mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"
>>
>>
> _______________________________________________
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"
>
>
# /usr/local/etc/rc.d/mysql-server onestart
Starting mysql.
there is no messages in /var/log/messages
one thing i realize after looking through the internet i had no
/tmp/mysql.sock

--
--
Terima Kasih
Muhammad Anis
Teknik Informatika
Institut Teknologi Bandung

------------------------------

Message: 15
Date: Tue, 23 Mar 2010 23:11:54 +0700
From: "m.anis" <m.a...@arc.itb.ac.id>
Subject: Re: mysql can't running
To: Alejandro Imass <a...@p2ee.org>
Cc: freebsd-...@freebsd.org
Message-ID: <4BA8E84A...@arc.itb.ac.id>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

On 23/03/2010 22:32, Alejandro Imass wrote:
> On Tue, Mar 23, 2010 at 10:45 AM, m.anis<m.a...@arc.itb.ac.id> wrote:
>
>> Please help, mysql can't running
>> i had installed it and using phpmyadmin
>> when i check /etc/rc.d/mysql-server status
>> it says mysql is not running
>> when i tried /usr/local/bin/mysqld_safe&
>> startting mysqld daemon with database from /var/db/mysql
>> STOPPING server from pid file /var/db/mysql/<myhost>.pid
>> 100323 22:09:46 mysqld ended
>>
> What is the result of:
>
> 1)
>
> /usr/local/etc/rc.d/mysql-server onestart
>
> 2)
>
> tail /var/log/messages
>
>
>
>
>
>> --
>> --
>> Terima Kasih
>> Muhammad Anis
>> Teknik Informatika
>> Institut Teknologi Bandung
>>
>> _______________________________________________
>> freebsd-...@freebsd.org mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"
>>
>>
> _______________________________________________
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"
>
>
hei i just restart my system and it goes well
but i still don't know why
thanks for all your answer

--
--
Terima Kasih
Muhammad Anis
Teknik Informatika
Institut Teknologi Bandung

------------------------------

Message: 16
Date: Tue, 23 Mar 2010 11:43:38 -0430
From: Alejandro Imass <a...@p2ee.org>
Subject: Re: mysql can't running
To: "m.anis" <m.a...@arc.itb.ac.id>
Cc: freebsd-...@freebsd.org
Message-ID:
<a14066a01003230913m16...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

On Tue, Mar 23, 2010 at 11:12 AM, m.anis <m.a...@arc.itb.ac.id> wrote:
> On 23/03/2010 22:32, Alejandro Imass wrote:
>>
>> On Tue, Mar 23, 2010 at 10:45 AM, m.anis<m.a...@arc.itb.ac.id>  wrote:
>>
>>>

[..]

> /tmp/mysql.sock

I think that is created in the fly is you are using unix sockets. I
think it depends on your my.cnf configuration (listen param).
Anway, check that you have in fact /var/db/mysql and check the error
file inthere and tell me if you see something of interest there.


>
> --
> --
> Terima Kasih
> Muhammad Anis
> Teknik Informatika
> Institut Teknologi Bandung
>
>


------------------------------

Message: 17
Date: Tue, 23 Mar 2010 09:27:26 -0700 (PDT)
From: D?nielisz L?szl? <laszlo_d...@yahoo.com>
Subject: Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
To: "O. Hartmann" <ohar...@zedat.fu-berlin.de>,
freebsd-...@freebsd.org, freebs...@freebsd.org
Message-ID: <785019....@web30804.mail.mud.yahoo.com>
Content-Type: text/plain; charset=iso-8859-1

Hi,

Did you tryed to uninstall OpenOffice and install the new one?


László

________________________________
From: O. Hartmann <ohar...@zedat.fu-berlin.de>
To: freebsd-...@freebsd.org; freebs...@freebsd.org
Sent: Tue, March 23, 2010 11:10:56 AM
Subject: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64

I have trouble building/upgrading OpenOffice 3.2 on a SMP box running FreeBSD 8.0-STABLE/amd64. Whenever I try to portmaster/portupgrade an existing installation of OpenOffice 3.1.1 the update ends up in the error below.

On another box, also running FreeBSD 8.0-STABLE/amd64, but UP and much less memory (2GB, the first one comes with 8GB RAM) I get the same error.

Any suggestions to fix this without deinstalling OpenOffice 3.1.1 (I need OO, so deinstallinmg a running verison is inappropriate)?

Regards,
Oliver


[...]
-----------------------------
SHL2FILTERFILE not set!
-----------------------------
dummy file to keep the dependencies for later use.
------------------------------
Making: ../unxfbsdx.pro/lib/libslideshowtestfx.so
c++ -Wl,-z,combreloc -Wl,-z,origin -Wl,-rpath,'$ORIGIN:$ORIGIN/../ure-link/lib' -shared -L../unxfbsdx.pro/lib -L../lib -L/usr/ports/editors/open ffice.org-3/work/OOO320_m12/solenv/unxfbsdx/lib -L/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solver/320/unxfbsdx.pro/lib -L/usr/ports/e itors/openoffice.org-3/work/OOO320_m12/solenv/unxfbsdx/lib -L/usr/local/diablo-jdk1.6.0/lib -L/usr/local/diablo-jdk1.6.0/jre/lib/amd64 -L/usr/lo al/diablo-jdk1.6.0/jre/lib/amd64/server -L/usr/local/diablo-jdk1.6.0/jre/lib/amd64/native_threads -L/usr/local/lib ../unxfbsdx.pro/slo/slideshow est_dflt_version.o -o ../unxfbsdx.pro/lib/libslideshowtestfx.so ../unxfbsdx.pro/slo/barwipepolypolygon.o ../unxfbsdx.pro/slo/boxwipe.o ../unxfbs x.pro/slo/clippingfunctor.o ../unxfbsdx.pro/slo/combtransition.o ../unxfbsdx.pro/slo/fourboxwipe.o ../unxfbsdx.pro/slo/barndoorwipe.o ../unxfbsd .pro/slo/iriswipe.o ../unxfbsdx.pro/slo/veewipe.o ../unxfbsdx.pro/slo/ellipsewipe.o
../unxfbsdx.pro/slo/checkerboardwipe.o ../unxfbsdx.pro/slo/r ndomwipe.o ../unxfbsdx.pro/slo/waterfallwipe.o ../unxfbsdx.pro/slo/clockwipe.o ../unxfbsdx.pro/slo/fanwipe.o ../unxfbsdx.pro/slo/pinwheelwipe.o ./unxfbsdx.pro/slo/snakewipe.o ../unxfbsdx.pro/slo/spiralwipe.o ../unxfbsdx.pro/slo/sweepwipe.o ../unxfbsdx.pro/slo/figurewipe.o ../unxfbsdx.pro slo/doublediamondwipe.o ../unxfbsdx.pro/slo/zigzagwipe.o ../unxfbsdx.pro/slo/parametricpolypolygonfactory.o ../unxfbsdx.pro/slo/shapetransitionf ctory.o ../unxfbsdx.pro/slo/slidetransitionfactory.o ../unxfbsdx.pro/slo/transitionfactorytab.o ../unxfbsdx.pro/slo/transitiontools.o ../unxfbsd .pro/slo/slidechangebase.o ../unxfbsdx.pro/slo/activitybase.o ../unxfbsdx.pro/slo/activitiesfactory.o ../unxfbsdx.pro/slo/continuousactivitybase o ../unxfbsdx.pro/slo/continuouskeytimeactivitybase.o ../unxfbsdx.pro/slo/discreteactivitybase.o ../unxfbsdx.pro/slo/simplecontinuousactivitybas .o
../unxfbsdx.pro/slo/animationaudionode.o ../unxfbsdx.pro/slo/animationcommandnode.o ../unxfbsdx.pro/slo/animationbasenode.o ../unxfbsdx.pro/s o/animationcolornode.o ../unxfbsdx.pro/slo/animationnodefactory.o ../unxfbsdx.pro/slo/animationpathmotionnode.o ../unxfbsdx.pro/slo/animationset ode.o ../unxfbsdx.pro/slo/animationtransformnode.o ../unxfbsdx.pro/slo/animationtransitionfilternode.o ../unxfbsdx.pro/slo/basecontainernode.o . /unxfbsdx.pro/slo/basenode.o ../unxfbsdx.pro/slo/nodetools.o ../unxfbsdx.pro/slo/paralleltimecontainer.o ../unxfbsdx.pro/slo/propertyanimationno e.o ../unxfbsdx.pro/slo/sequentialtimecontainer.o ../unxfbsdx.pro/slo/generateevent.o ../unxfbsdx.pro/slo/appletshape.o ../unxfbsdx.pro/slo/back roundshape.o ../unxfbsdx.pro/slo/drawinglayeranimation.o ../unxfbsdx.pro/slo/drawshape.o ../unxfbsdx.pro/slo/drawshapesubsetting.o ../unxfbsdx.pro/slo/externalshapebase.o ../unxfbsdx.pro/slo/gdimtftools.o
../unxfbsdx.pro/slo/intrinsicanimationactivity.o ../unxfbsdx.pro/slo/mediashape.o ../unxfbsdx.pro/slo/shapeimporter.o ../unxfbsdx.pro/slo/viewappletshape.o ../unxfbsdx.pro/slo/viewbackgroundshape.o ../unxfbsdx.pro/slo/viewmediashape.o ../unxfbsdx.pro/slo/viewshape.o ../unxfbsdx.pro/slo/layer.o ../unxfbsdx.pro/slo/layermanager.o ../unxfbsdx.pro/slo/shapemanagerimpl.o ../unxfbsdx.pro/slo/slideanimations.o ../unxfbsdx.pro/slo/slideimpl.o ../unxfbsdx.pro/slo/userpaintoverlay.o ../unxfbsdx.pro/slo/activitiesqueue.o ../unxfbsdx.pro/slo/animatedsprite.o ../unxfbsdx.pro/slo/animationfactory.o ../unxfbsdx.pro/slo/attributemap.o ../unxfbsdx.pro/slo/color.o ../unxfbsdx.pro/slo/delayevent.o ../unxfbsdx.pro/slo/eventmultiplexer.o ../unxfbsdx.pro/slo/eventqueue.o ../unxfbsdx.pro/slo/expressionnodefactory.o ../unxfbsdx.pro/slo/rehearsetimingsactivity.o ../unxfbsdx.pro/slo/screenupdater.o ../unxfbsdx.pro/slo/shapeattributelayer.o ../unxfbsdx.pro/slo/shapesubset.o
../unxfbsdx.pro/slo/slidebitmap.o ../unxfbsdx.pro/slo/slideshowcontext.o ../unxfbsdx.pro/slo/slideshowimpl.o ../unxfbsdx.pro/slo/slideview.o ../unxfbsdx.pro/slo/smilfunctionparser.o ../unxfbsdx.pro/slo/soundplayer.o ../unxfbsdx.pro/slo/tools.o ../unxfbsdx.pro/slo/unoviewcontainer.o ../unxfbsdx.pro/slo/usereventqueue.o ../unxfbsdx.pro/slo/waitsymbol.o ../unxfbsdx.pro/slo/wakeupevent.o -ltlfx -luno_cppu -luno_sal -lvclfx -lcomphelp4gcc3 -luno_cppuhelpergcc3 -lbasegfxfx -lcanvastoolsfx -lcppcanvasfx -lutlfx -lgofx -lavmediafx -pthread -lm -Wl,-Bdynamic -lstlport_gcc
rm -f ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
mv ../unxfbsdx.pro/lib/libslideshowtestfx.so ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solenv/bin/checkdll.sh -L../unxfbsdx.pro/lib -L/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solver/320/unxfbsdx.pro/lib ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
Checking DLL ../unxfbsdx.pro/lib/check_libslideshowtestfx.so ...-rwxr-xr-x 1 root wheel 4671468 Mar 23 10:56 ../unxfbsdx.pro/lib/libslideshowtestfx.so
-------------
Running processes: 0
deliver -- version: 275594
Module 'slideshow' delivered successfully. 2 files copied, 2 files unchanged

1 module(s):
nss
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making /usr/ports/editors/openoffice.org-3/work/OOO320_m12/nss/

Attention: if you build and deliver the above module(s) you may prolongue your the build issuing command "build --from nss"

rmdir /tmp/vIzUvGYiHu
*** Error code 1

Stop in /usr/ports/editors/openoffice.org-3.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20100323-62447-12jdfhd-0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=de-openoffice.org-3.1.1_1 UPGRADE_PORT_VER=3.1.1_1 make
** Fix the problem and try again.
[...]



------------------------------

Message: 18
Date: Tue, 23 Mar 2010 17:58:50 +0100
From: "O. Hartmann" <ohar...@mail.zedat.fu-berlin.de>
Subject: Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
To: D?nielisz L?szl? <laszlo_d...@yahoo.com>
Cc: freebsd-...@freebsd.org, freebs...@freebsd.org
Message-ID: <4BA8F34A...@mail.zedat.fu-berlin.de>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed

On 03/23/10 17:27, Dánielisz László wrote:
> Hi,
>
> Did you tryed to uninstall OpenOffice and install the new one?
>
>
> László
>
> ------------------------------------------------------------------------
> *From:* O. Hartmann <ohar...@zedat.fu-berlin.de>
> *To:* freebsd-...@freebsd.org; freebs...@freebsd.org
> *Sent:* Tue, March 23, 2010 11:10:56 AM
> *Subject:* OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
>
> I have trouble building/upgrading OpenOffice 3.2 on a SMP box running
> FreeBSD 8.0-STABLE/amd64. Whenever I try to portmaster/portupgrade an
> existing installation of OpenOffice 3.1.1 the update ends up in the
> error below.
>
> On another box, also running FreeBSD 8.0-STABLE/amd64, but UP and much
> less memory (2GB, the first one comes with 8GB RAM) I get the same error.
>
> Any suggestions to fix this without deinstalling OpenOffice 3.1.1 (I
> need OO, so deinstallinmg a running verison is inappropriate)?
>
> Regards,
> Oliver
>
>
> [...]
> -----------------------------
> SHL2FILTERFILE not set!
> -----------------------------
> dummy file to keep the dependencies for later use.
> ------------------------------
> Making: ../unxfbsdx.pro/lib/libslideshowtestfx.so
> c++ -Wl,-z,combreloc -Wl,-z,origin
> -Wl,-rpath,'$ORIGIN:$ORIGIN/../ure-link/lib' -shared
> -L../unxfbsdx.pro/lib -L../lib -L/usr/ports/editors/open
> ffice.org-3/work/OOO320_m12/solenv/unxfbsdx/lib
> -L/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solver/320/unxfbsdx.pro/lib
> -L/usr/ports/e
> itors/openoffice.org-3/work/OOO320_m12/solenv/unxfbsdx/lib
> -L/usr/local/diablo-jdk1.6.0/lib
> -L/usr/local/diablo-jdk1.6.0/jre/lib/amd64 -L/usr/lo
> al/diablo-jdk1.6.0/jre/lib/amd64/server
> -L/usr/local/diablo-jdk1.6.0/jre/lib/amd64/native_threads
> -L/usr/local/lib ../unxfbsdx.pro/slo/slideshow est_dflt_version.o -o
> ../unxfbsdx.pro/lib/libslideshowtestfx.so
> ../unxfbsdx.pro/slo/barwipepolypolygon.o ../unxfbsdx.pro/slo/boxwipe.o
> ../unxfbs x.pro/slo/clippingfunctor.o
> <http://x.pro/slo/clippingfunctor.o>
> ../unxfbsdx.pro/slo/combtransition.o ../unxfbsdx.pro/slo/fourboxwipe.o
> ../unxfbsdx.pro/slo/barndoorwipe.o ../unxfbsd .pro/slo/iriswipe.o
> ../unxfbsdx.pro/slo/veewipe.o ../unxfbsdx.pro/slo/ellipsewipe.o
> ../unxfbsdx.pro/slo/checkerboardwipe.o ../unxfbsdx.pro/slo/r ndomwipe.o
> ../unxfbsdx.pro/slo/waterfallwipe.o ../unxfbsdx.pro/slo/clockwipe.o
> ../unxfbsdx.pro/slo/fanwipe.o ../unxfbsdx.pro/slo/pinwheelwipe.o
> ./unxfbsdx.pro/slo/snakewipe.o ../unxfbsdx.pro/slo/spiralwipe.o
> ../unxfbsdx.pro/slo/sweepwipe.o ../unxfbsdx.pro/slo/figurewipe.o
> ../unxfbsdx.pro slo/doublediamondwipe.o ../unxfbsdx.pro/slo/zigzagwipe.o
> ../unxfbsdx.pro/slo/parametricpolypolygonfactory.o
> ../unxfbsdx.pro/slo/shapetransitionf ctory.o
> ../unxfbsdx.pro/slo/slidetransitionfactory.o
> ../unxfbsdx.pro/slo/transitionfactorytab.o
> ../unxfbsdx.pro/slo/transitiontools.o ../unxfbsd
> .pro/slo/slidechangebase.o ../unxfbsdx.pro/slo/activitybase.o
> ../unxfbsdx.pro/slo/activitiesfactory.o
> ../unxfbsdx.pro/slo/continuousactivitybase o
> ../unxfbsdx.pro/slo/continuouskeytimeactivitybase.o
> ../unxfbsdx.pro/slo/discreteactivitybase.o
> ../unxfbsdx.pro/slo/simplecontinuousactivitybas .o
> ../unxfbsdx.pro/slo/animationaudionode.o
> ../unxfbsdx.pro/slo/animationcommandnode.o
> ../unxfbsdx.pro/slo/animationbasenode.o ../unxfbsdx.pro/s
> o/animationcolornode.o ../unxfbsdx.pro/slo/animationnodefactory.o
> ../unxfbsdx.pro/slo/animationpathmotionnode.o
> ../unxfbsdx.pro/slo/animationset ode.o
> ../unxfbsdx.pro/slo/animationtransformnode.o
> ../unxfbsdx.pro/slo/animationtransitionfilternode.o
> ../unxfbsdx.pro/slo/basecontainernode.o . /unxfbsdx.pro/slo/basenode.o
> ../unxfbsdx.pro/slo/nodetools.o
> ../unxfbsdx.pro/slo/paralleltimecontainer.o
> ../unxfbsdx.pro/slo/propertyanimationno e.o
> ../unxfbsdx.pro/slo/sequentialtimecontainer.o
> ../unxfbsdx.pro/slo/generateevent.o ../unxfbsdx.pro/slo/appletshape.o
> ../unxfbsdx.pro/slo/back roundshape.o
> ../unxfbsdx.pro/slo/drawinglayeranimation.o
> ../unxfbsdx.pro/slo/drawshape.o
> ../unxfbsdx.pro/slo/drawshapesubsetting.o
> ../unxfbsdx.pro/slo/externalshapebase.o
> ../unxfbsdx.pro/slo/gdimtftools.o
> ../unxfbsdx.pro/slo/intrinsicanimationactivity.o
> ../unxfbsdx.pro/slo/mediashape.o ../unxfbsdx.pro/slo/shapeimporter.o
> ../unxfbsdx.pro/slo/viewappletshape.o
> ../unxfbsdx.pro/slo/viewbackgroundshape.o
> ../unxfbsdx.pro/slo/viewmediashape.o ../unxfbsdx.pro/slo/viewshape.o
> ../unxfbsdx.pro/slo/layer.o ../unxfbsdx.pro/slo/layermanager.o
> ../unxfbsdx.pro/slo/shapemanagerimpl.o
> ../unxfbsdx.pro/slo/slideanimations.o ../unxfbsdx.pro/slo/slideimpl.o
> ../unxfbsdx.pro/slo/userpaintoverlay.o
> ../unxfbsdx.pro/slo/activitiesqueue.o
> ../unxfbsdx.pro/slo/animatedsprite.o
> ../unxfbsdx.pro/slo/animationfactory.o
> ../unxfbsdx.pro/slo/attributemap.o ../unxfbsdx.pro/slo/color.o
> ../unxfbsdx.pro/slo/delayevent.o ../unxfbsdx.pro/slo/eventmultiplexer.o
> ../unxfbsdx.pro/slo/eventqueue.o
> ../unxfbsdx.pro/slo/expressionnodefactory.o
> ../unxfbsdx.pro/slo/rehearsetimingsactivity.o
> ../unxfbsdx.pro/slo/screenupdater.o
> ../unxfbsdx.pro/slo/shapeattributelayer.o
> ../unxfbsdx.pro/slo/shapesubset.o ../unxfbsdx.pro/slo/slidebitmap.o
> ../unxfbsdx.pro/slo/slideshowcontext.o
> ../unxfbsdx.pro/slo/slideshowimpl.o ../unxfbsdx.pro/slo/slideview.o
> ../unxfbsdx.pro/slo/smilfunctionparser.o
> ../unxfbsdx.pro/slo/soundplayer.o ../unxfbsdx.pro/slo/tools.o
> ../unxfbsdx.pro/slo/unoviewcontainer.o
> ../unxfbsdx.pro/slo/usereventqueue.o ../unxfbsdx.pro/slo/waitsymbol.o
> ../unxfbsdx.pro/slo/wakeupevent.o -ltlfx -luno_cppu -luno_sal -lvclfx
> -lcomphelp4gcc3 -luno_cppuhelpergcc3 -lbasegfxfx -lcanvastoolsfx
> -lcppcanvasfx -lutlfx -lgofx -lavmediafx -pthread -lm -Wl,-Bdynamic
> -lstlport_gcc
> rm -f ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> mv ../unxfbsdx.pro/lib/libslideshowtestfx.so
> ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> /usr/ports/editors/openoffice.org-3/work/OOO320_m12/solenv/bin/checkdll.sh
> -L../unxfbsdx.pro/lib
> -L/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solver/320/unxfbsdx.pro/lib
> ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> Checking DLL ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> ...-rwxr-xr-x 1 root wheel 4671468 Mar 23 10:56
> ../unxfbsdx.pro/lib/libslideshowtestfx.so
> -------------
> Running processes: 0
> deliver -- version: 275594
> Module 'slideshow' delivered successfully. 2 files copied, 2 files unchanged
>
> 1 module(s):
> nss
> need(s) to be rebuilt
>
> Reason(s):
>
> ERROR: error 65280 occurred while making
> /usr/ports/editors/openoffice.org-3/work/OOO320_m12/nss/
>
> Attention: if you build and deliver the above module(s) you may
> prolongue your the build issuing command "build --from nss"
>
> rmdir /tmp/vIzUvGYiHu
> *** Error code 1
>
> Stop in /usr/ports/editors/openoffice.org-3.
> ** Command failed [exit code 1]: /usr/bin/script -qa
> /tmp/portupgrade20100323-62447-12jdfhd-0 env UPGRADE_TOOL=portupgrade
> UPGRADE_PORT=de-openoffice.org-3.1.1_1 UPGRADE_PORT_VER=3.1.1_1 make
> ** Fix the problem and try again.
> [...]

As I mentioned, I did not and I can't risk deinstalling the working OO
first and then installing and probably a failing OO 3.2.

Regards,

O. Hartmann

------------------------------

Message: 19
Date: Tue, 23 Mar 2010 11:13:33 -0600
From: Sergio Tam <tam.s...@gmail.com>
Subject: Re: mysql can't running
To: "m.anis" <m.a...@arc.itb.ac.id>, freebsd-...@freebsd.org
Message-ID:
<d75759ac1003231013i54a...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

>>
>
> hei i just restart my system and it goes well
> but i still don't know why
> thanks for all your answer
>
> --
> --

Hi

You dont need restart your system just type rehash.

Check on the handbook;

Note: Some shells keep a cache of the commands that are available in
the directories listed in the PATH environment variable, to speed up
lookup operations for the executable file of these commands. If you
are using one of these shells, you might have to use the rehash
command after installing a port, before the newly installed commands
can be used. This command will work for shells like tcsh. Use the hash
-r command for shells like sh. Look at the documentation for your
shell for more information.

Regards.


------------------------------

Message: 20
Date: Tue, 23 Mar 2010 17:21:13 +0000
From: Vincent Hoffman <vi...@unsane.co.uk>
Subject: lighttpd in a jail says address is already in use (its not)
To: "freebsd-...@FreeBSD.org" <freebsd-...@freebsd.org>
Message-ID: <4BA8F889...@unsane.co.uk>
Content-Type: text/plain; charset=ISO-8859-1

Hi all,
I'm hoping i'm doing something silly. I have an 8.0-RELEASE
machine with one jail that i'm intending to run lighttpd.
I have nothing running on the host other than sendmail on 127.0.0.1 and
sshd bound to the primary IP. The jail is also now running sshd fine.
when i try and start lighttpd i get
Starting lighttpd.
2010-03-23 17:13:35: (network.c.345) can't bind to port: 192.168.10.221
80 Address already in use
/usr/local/etc/rc.d/lighttpd: WARNING: failed to start lighttpd

however
[root@krill /usr/ports/www/lighttpd]# netstat -an
netstat: kvm not available: /dev/mem: No such file or directory
Active Internet connections (including servers)
Proto Recv-Q Send-Q Local Address Foreign Address (state)
tcp4 0 0 192.168.10.221.25 *.* LISTEN
tcp4 0 0 192.168.10.221.22 *.* LISTEN
udp4 0 0 192.168.10.221.514 *.*

and i can make nc listen on port 80 using
nc -l 192.168.10.221 80
and make connections to it from remote
vincenthoffman@macbook
(17:18:13 <~>) 130 $ telnet 192.168.10.221 80
Trying 192.168.10.221...
Connected to jail.home.unsane.co.uk.
Escape character is '^]'.


So the port definitely isnt in use.

Any suggestions if there is a sysctl or anything i need to change to get
this to work?

Vince


------------------------------

Message: 21
Date: Tue, 23 Mar 2010 17:24:49 +0000
From: Vincent Hoffman <vi...@unsane.co.uk>
Subject: Re: lighttpd in a jail says address is already in use (its
not)
To: freebsd-...@freebsd.org
Message-ID: <4BA8F961...@unsane.co.uk>
Content-Type: text/plain; charset=ISO-8859-1

Sorry for noise, pebkac

I had defined
$SERVER["socket"] == "192.168.10.221:80" { }

but not server.bind

bahh.

Vince

On 23/03/2010 17:21, Vincent Hoffman wrote:
> Hi all,
> I'm hoping i'm doing something silly. I have an 8.0-RELEASE
> machine with one jail that i'm intending to run lighttpd.
> I have nothing running on the host other than sendmail on 127.0.0.1 and
> sshd bound to the primary IP. The jail is also now running sshd fine.
> when i try and start lighttpd i get
> Starting lighttpd.
> 2010-03-23 17:13:35: (network.c.345) can't bind to port: 192.168.10.221
> 80 Address already in use
> /usr/local/etc/rc.d/lighttpd: WARNING: failed to start lighttpd
>
> however
> [root@krill /usr/ports/www/lighttpd]# netstat -an
> netstat: kvm not available: /dev/mem: No such file or directory
> Active Internet connections (including servers)
> Proto Recv-Q Send-Q Local Address Foreign Address (state)
> tcp4 0 0 192.168.10.221.25 *.* LISTEN
> tcp4 0 0 192.168.10.221.22 *.* LISTEN
> udp4 0 0 192.168.10.221.514 *.*
>
> and i can make nc listen on port 80 using
> nc -l 192.168.10.221 80
> and make connections to it from remote
> vincenthoffman@macbook
> (17:18:13 <~>) 130 $ telnet 192.168.10.221 80
> Trying 192.168.10.221...
> Connected to jail.home.unsane.co.uk.
> Escape character is '^]'.
>
>
> So the port definitely isnt in use.
>
> Any suggestions if there is a sysctl or anything i need to change to get
> this to work?
>
> Vince
>
>
> _______________________________________________
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questi...@freebsd.org"
>

------------------------------

Message: 22
Date: Tue, 23 Mar 2010 13:31:03 -0400
From: Sean McAfee <smc...@collaborativefusion.com>
Subject: Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
To: "O. Hartmann" <ohar...@mail.zedat.fu-berlin.de>
Cc: freebsd-...@freebsd.org, freebs...@freebsd.org
Message-ID: <4BA8FAD7...@collaborativefusion.com>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed

O. Hartmann wrote:
> As I mentioned, I did not and I can't risk deinstalling the working OO
> first and then installing and probably a failing OO 3.2.
>
> Regards,
>
> O. Hartmann


You can use `pkg_create -b name_of_port-with_version` to create a binary
backup. If you can't get 3.2 installed, you just run pkg_add on the
resulting tbz and you're back in business.

I do this whenever I upgrade OO, Firefox, Thunderbird, or anything other
program I can't wait around for while I freshly compile.

--
Sean McAfee
Senior Systems Engineer


------------------------------

Message: 23
Date: Tue, 23 Mar 2010 10:54:19 -0700
From: Freddie Cash <fjw...@gmail.com>
Subject: Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
To: freebsd-...@freebsd.org
Cc: freebs...@freebsd.org
Message-ID:
<b269bc571003231054n49f...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

On Tue, Mar 23, 2010 at 10:31 AM, Sean McAfee <
smc...@collaborativefusion.com> wrote:

> O. Hartmann wrote:
>
>> As I mentioned, I did not and I can't risk deinstalling the working OO
>> first and then installing and probably a failing OO 3.2.
>>
>> Regards,
>>
>> O. Hartmann
>>
>
> You can use `pkg_create -b name_of_port-with_version` to create a binary
> backup. If you can't get 3.2 installed, you just run pkg_add on the
> resulting tbz and you're back in business.
>
> I do this whenever I upgrade OO, Firefox, Thunderbird, or anything other
> program I can't wait around for while I freshly compile.


portmaster and portupgrade both include a -b switch as well, which will
create a backup package before uninstalling the port to install the new
version.

--
Freddie Cash
fjw...@gmail.com


------------------------------

Message: 24
Date: Tue, 23 Mar 2010 19:30:35 +0200
From: Sigmar Muuga <meed...@gmail.com>
Subject: Diablo JDK & Undefined symbol "gethostbyname_r"
To: freebsd-...@freebsd.org
Message-ID: <4BA8FABB...@gmail.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hello,
my freebsd version is 6.1-RELEASE, I have installed diablo jdk1.6 and
when I run maven, I got the following error:
Downloading:
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.2/maven-clean-plugin-2.2.pom
/libexec/ld-elf.so.1: /usr/local/diablo-jdk1.6.0/jre/lib/i386/libnet.so:
Undefined symbol "gethostbyname_r"

What may be the cause of this?

Sigmar

------------------------------

Message: 25
Date: Tue, 23 Mar 2010 18:33:32 +0100
From: "Kruppa, Peter Ulrich" <pukr...@googlemail.com>
Subject: Re: OpenOffice 3.2 fails to build on FreeBSD 8.0-STABLE/amd64
To: "O. Hartmann" <ohar...@zedat.fu-berlin.de>
Cc: freebsd-...@freebsd.org, freebs...@freebsd.org
Message-ID: <4BA8FB...@googlemail.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

On 23.03.2010 11:10, O. Hartmann wrote:
> I have trouble building/upgrading OpenOffice 3.2 on a SMP box running
> FreeBSD 8.0-STABLE/amd64. Whenever I try to portmaster/portupgrade an
> existing installation of OpenOffice 3.1.1 the update ends up in the
> error below.
>
> On another box, also running FreeBSD 8.0-STABLE/amd64, but UP and much
> less memory (2GB, the first one comes with 8GB RAM) I get the same error.
>
> Any suggestions to fix this without deinstalling OpenOffice 3.1.1 (I
> need OO, so deinstallinmg a running verison is inappropriate)?
It seems the OOO-building process is very sensitive about (its hundreds
of ) dependencies.
If you can afford the disk-space I would recommend to set up a simple
"jail" and start the build inside your jail with a fresh portstree and
without any userland-applications installed.

If you need help setting up a jail, I can assist you or you just read
and work out
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/jails.html
yourself.

When your build is ready you create a package, copy it to your main
file-system and pkg_add it there.

Gretings

Uli.

> Regards,
> Oliver
>
>
> [...]
> -----------------------------
> SHL2FILTERFILE not set!
> -----------------------------
> dummy file to keep the dependencies for later use.
> ------------------------------
> Making: ../unxfbsdx.pro/lib/libslideshowtestfx.so
> c++ -Wl,-z,combreloc -Wl,-z,origin
> -Wl,-rpath,'$ORIGIN:$ORIGIN/../ure-link/lib' -shared
> -L../unxfbsdx.pro/lib -L../lib -L/usr/ports/editors/open
> ffice.org-3/work/OOO320_m12/solenv/unxfbsdx/lib
> -L/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solver/320/unxfbsdx.pro/lib
> -L/usr/ports/e
> itors/openoffice.org-3/work/OOO320_m12/solenv/unxfbsdx/lib
> -L/usr/local/diablo-jdk1.6.0/lib
> -L/usr/local/diablo-jdk1.6.0/jre/lib/amd64 -L/usr/lo
> al/diablo-jdk1.6.0/jre/lib/amd64/server
> -L/usr/local/diablo-jdk1.6.0/jre/lib/amd64/native_threads
> -L/usr/local/lib ../unxfbsdx.pro/slo/slideshow est_dflt_version.o -o
> ../unxfbsdx.pro/lib/libslideshowtestfx.so
> ../unxfbsdx.pro/slo/barwipepolypolygon.o ../unxfbsdx.pro/slo/boxwipe.o
> ../unxfbs x.pro/slo/clippingfunctor.o
> ../unxfbsdx.pro/slo/combtransition.o ../unxfbsdx.pro/slo/fourboxwipe.o
> ../unxfbsdx.pro/slo/barndoorwipe.o ../unxfbsd .pro/slo/iriswipe.o
> ../unxfbsdx.pro/slo/veewipe.o ../unxfbsdx.pro/slo/ellipsewipe.o
> ../unxfbsdx.pro/slo/checkerboardwipe.o ../unxfbsdx.pro/slo/r
> ndomwipe.o ../unxfbsdx.pro/slo/waterfallwipe.o
> ../unxfbsdx.pro/slo/clockwipe.o ../unxfbsdx.pro/slo/fanwipe.o
> ../unxfbsdx.pro/slo/pinwheelwipe.o ./unxfbsdx.pro/slo/snakewipe.o
> ../unxfbsdx.pro/slo/spiralwipe.o ../unxfbsdx.pro/slo/sweepwipe.o
> ../unxfbsdx.pro/slo/figurewipe.o ../unxfbsdx.pro
> slo/doublediamondwipe.o ../unxfbsdx.pro/slo/zigzagwipe.o
> ../unxfbsdx.pro/slo/parametricpolypolygonfactory.o
> ../unxfbsdx.pro/slo/shapetransitionf ctory.o
> ../unxfbsdx.pro/slo/slidetransitionfactory.o
> ../unxfbsdx.pro/slo/transitionfactorytab.o
> ../unxfbsdx.pro/slo/transitiontools.o ../unxfbsd
> .pro/slo/slidechangebase.o ../unxfbsdx.pro/slo/activitybase.o
> ../unxfbsdx.pro/slo/activitiesfactory.o
> ../unxfbsdx.pro/slo/continuousactivitybase o
> ../unxfbsdx.pro/slo/continuouskeytimeactivitybase.o
> ../unxfbsdx.pro/slo/discreteactivitybase.o
> ../unxfbsdx.pro/slo/simplecontinuousactivitybas .o
> ../unxfbsdx.pro/slo/animationaudionode.o
> ../unxfbsdx.pro/slo/animationcommandnode.o
> ../unxfbsdx.pro/slo/animationbasenode.o ../unxfbsdx.pro/s
> o/animationcolornode.o ../unxfbsdx.pro/slo/animationnodefactory.o
> ../unxfbsdx.pro/slo/animationpathmotionnode.o
> ../unxfbsdx.pro/slo/animationset ode.o
> ../unxfbsdx.pro/slo/animationtransformnode.o
> ../unxfbsdx.pro/slo/animationtransitionfilternode.o
> ../unxfbsdx.pro/slo/basecontainernode.o . /unxfbsdx.pro/slo/basenode.o
> ../unxfbsdx.pro/slo/nodetools.o
> ../unxfbsdx.pro/slo/paralleltimecontainer.o
> ../unxfbsdx.pro/slo/propertyanimationno e.o
> ../unxfbsdx.pro/slo/sequentialtimecontainer.o
> ../unxfbsdx.pro/slo/generateevent.o ../unxfbsdx.pro/slo/appletshape.o
> ../unxfbsdx.pro/slo/back roundshape.o
> ../unxfbsdx.pro/slo/drawinglayeranimation.o
> ../unxfbsdx.pro/slo/drawshape.o
> ../unxfbsdx.pro/slo/drawshapesubsetting.o
> ../unxfbsdx.pro/slo/externalshapebase.o
> ../unxfbsdx.pro/slo/gdimtftools.o
> ../unxfbsdx.pro/slo/intrinsicanimationactivity.o
> ../unxfbsdx.pro/slo/mediashape.o ../unxfbsdx.pro/slo/shapeimporter.o
> ../unxfbsdx.pro/slo/viewappletshape.o
> ../unxfbsdx.pro/slo/viewbackgroundshape.o
> ../unxfbsdx.pro/slo/viewmediashape.o ../unxfbsdx.pro/slo/viewshape.o
> ../unxfbsdx.pro/slo/layer.o ../unxfbsdx.pro/slo/layermanager.o
> ../unxfbsdx.pro/slo/shapemanagerimpl.o
> ../unxfbsdx.pro/slo/slideanimations.o ../unxfbsdx.pro/slo/slideimpl.o
> ../unxfbsdx.pro/slo/userpaintoverlay.o
> ../unxfbsdx.pro/slo/activitiesqueue.o
> ../unxfbsdx.pro/slo/animatedsprite.o
> ../unxfbsdx.pro/slo/animationfactory.o
> ../unxfbsdx.pro/slo/attributemap.o ../unxfbsdx.pro/slo/color.o
> ../unxfbsdx.pro/slo/delayevent.o
> ../unxfbsdx.pro/slo/eventmultiplexer.o
> ../unxfbsdx.pro/slo/eventqueue.o
> ../unxfbsdx.pro/slo/expressionnodefactory.o
> ../unxfbsdx.pro/slo/rehearsetimingsactivity.o
> ../unxfbsdx.pro/slo/screenupdater.o
> ../unxfbsdx.pro/slo/shapeattributelayer.o
> ../unxfbsdx.pro/slo/shapesubset.o ../unxfbsdx.pro/slo/slidebitmap.o
> ../unxfbsdx.pro/slo/slideshowcontext.o
> ../unxfbsdx.pro/slo/slideshowimpl.o ../unxfbsdx.pro/slo/slideview.o
> ../unxfbsdx.pro/slo/smilfunctionparser.o
> ../unxfbsdx.pro/slo/soundplayer.o ../unxfbsdx.pro/slo/tools.o
> ../unxfbsdx.pro/slo/unoviewcontainer.o
> ../unxfbsdx.pro/slo/usereventqueue.o ../unxfbsdx.pro/slo/waitsymbol.o
> ../unxfbsdx.pro/slo/wakeupevent.o -ltlfx -luno_cppu -luno_sal -lvclfx
> -lcomphelp4gcc3 -luno_cppuhelpergcc3 -lbasegfxfx -lcanvastoolsfx
> -lcppcanvasfx -lutlfx -lgofx -lavmediafx -pthread -lm -Wl,-Bdynamic
> -lstlport_gcc
> rm -f ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> mv ../unxfbsdx.pro/lib/libslideshowtestfx.so
> ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> /usr/ports/editors/openoffice.org-3/work/OOO320_m12/solenv/bin/checkdll.sh
> -L../unxfbsdx.pro/lib
> -L/usr/ports/editors/openoffice.org-3/work/OOO320_m12/solver/320/unxfbsdx.pro/lib
> ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> Checking DLL ../unxfbsdx.pro/lib/check_libslideshowtestfx.so
> ...-rwxr-xr-x 1 root wheel 4671468 Mar 23 10:56
> ../unxfbsdx.pro/lib/libslideshowtestfx.so
> -------------
> Running processes: 0
> deliver -- version: 275594
> Module 'slideshow' delivered successfully. 2 files copied, 2 files
> unchanged
>
> 1 module(s):
> nss
> need(s) to be rebuilt
>
> Reason(s):
>
> ERROR: error 65280 occurred while making
> /usr/ports/editors/openoffice.org-3/work/OOO320_m12/nss/
>
> Attention: if you build and deliver the above module(s) you may
> prolongue your the build issuing command "build --from nss"
>
> rmdir /tmp/vIzUvGYiHu
> *** Error code 1
>
> Stop in /usr/ports/editors/openoffice.org-3.
> ** Command failed [exit code 1]: /usr/bin/script -qa
> /tmp/portupgrade20100323-62447-12jdfhd-0 env UPGRADE_TOOL=portupgrade
> UPGRADE_PORT=de-openoffice.org-3.1.1_1 UPGRADE_PORT_VER=3.1.1_1 make
> ** Fix the problem and try again.
> [...]
>
> _______________________________________________
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "freebsd-questi...@freebsd.org"
>

------------------------------


End of freebsd-questions Digest, Vol 303, Issue 6
*************************************************

0 new messages