FreeBSD 9.1 RC3 fails boot on Ivy Bridge?

2012-11-06 Thread Antonio Vieiro

Hi all,

I just downloaded 9.1 RC3 (amd64 USB img) and I tried to install it on 
an Ivy Bridge CPU system (Gigabyte Z77 DS3H motherboard) without 
success: the system starts to boot but suddenly blows up and reboots.


I tried to boot with verbose mode but this does not help to determine 
the cause of the problem.


I was wondering if someone could shed some light into this.

TIA,
Antonio
___
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"


osm2pgsql abort trap 6 !?

2011-12-13 Thread Antonio Vieiro
Hi all,

I've compiled converters/osm2pgsql from ports (FreeBSD 9.0-RC1) and
when I try to run it I get:

"Abort trap: 6"

I'm trying to see if I have any problem with missing dynamic libraries
or whatever, but when I do a

ldd `which osm2pgsql`

I get:

/usr/local/bin/osm2pgsql:
/usr/local/bin/osm2pgsql: signal 6

I've already performed a

sysctl security.bsd.map_at_zero="1"


(as seen in previous posts) without success.

Any other ideas I could try?

Thanks in advance,
Antonio
___
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"


What happens with lang/gnustep-base in FreeBSD 9?

2011-11-20 Thread Antonio Vieiro
Hi all,

I'm currently running the 9.0 RC1 version of FreeBSD and the
lang/gnustep-base cannot be installed: it says I need an Objective C
compiler but I actually do: clang version 3.0 is an Objective-C
compiler too.

So what's wrong here? Are there any license issues or something?

Thanks,
Antonio

P.S.: Technical details

antonio:/usr/ports/lang/gnustep-base# make
===>  gnustep-base-1.19.3_5 needs an objective C compiler.
*** Error code 1

Stop in /usr/ports/lang/gnustep-base.
antonio:/usr/ports/lang/gnustep-base# clang --version
FreeBSD clang version 3.0 (trunk 135360) 20110717
Target: i386-unknown-freebsd9.0
Thread model: posix
___
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"


ZFS import/export weird behaviour

2011-11-03 Thread Antonio Vieiro
Hi all,

I created a ZFS filesystem on a freebsd-zfs partition. So far so good.

Now the problem comes when exporting and importing it.

I have two boxes with 9.0-RC1. On one of them "zfs import" says the
filesystem is corrupt, whereas in the other box "zfs import" works
fine. How so?

Any ideas appreciated,
Antonio
___
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 9.0RC1: zpool fails to import an exported pool?

2011-10-31 Thread Antonio Vieiro
Hi all,

I'm plugging this external USB drive of 250Gb on 9.0RC1 and doing this:

LAB:~# zpool create MYPOOL /dev/da4
LAB:~# zpool list
NAME SIZE  ALLOC   FREECAP  DEDUP  HEALTH  ALTROOT
MYPOOL   232G  89,5K   232G 0%  1.00x  ONLINE  -
LAB:~# zpool status
  pool: MYPOOL
 state: ONLINE
 scan: none requested
config:

NAMESTATE READ WRITE CKSUM
MYPOOL  ONLINE   0 0 0
  da4   ONLINE   0 0 0

errors: No known data errors
LAB:~# zfs list
NAME USED  AVAIL  REFER  MOUNTPOINT
MYPOOL  89,5K   228G31K  /MYPOOL

So far so good, now I'm trying to export and import this pool, like this:

LAB:~# zpool export MYPOOL; echo $?
0
LAB:~# zpool list
no pools available

But importing it fails:

LAB:~# zpool import; echo $?
  pool: MYPOOL
id: 17521547345542608
 state: UNAVAIL
status: One or more devices contains corrupted data.
action: The pool cannot be imported due to damaged devices or data.
   see: http://www.sun.com/msg/ZFS-8000-5E
config:

MYPOOL UNAVAIL  insufficient replicas
  8987296282819450665  UNAVAIL  corrupted data
0

If I force import I get this:
LAB:~# zpool import -f MYPOOL
cannot import 'MYPOOL': invalid vdev configuration

So how is it possible I have corrupted data from a just exported
volume? Am I doing something wrong here?

Thanks in advance,
Antonio
___
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: Recommended nVidia card for cuda/opencl on FreeBSD?

2011-10-24 Thread Antonio Vieiro
> Date: Sun, 23 Oct 2011 13:59:58 -0700
> From: ???  
> Subject: Re: Recommended nVidia card for cuda/opencl on FreeBSD?
> To: FreeBSD 
> Message-ID:
>        
> Content-Type: text/plain; charset=ISO-8859-1
>
> Do you want CUDA 1.0, 1.1, 1.2, 1.3, 2.0, 2.1 compatible? I have a 9800GT
> (pretty cheap now-a-days + it runs modern games), which has the lowest CUDA
> 1.0.
>
> Also, I am interested in how you will do the work. Currently, it's necessary
> to run the CUDA SDK and Toolkit under Linux emulation or chroot, despite the
> fact that the NVIDIA drivers for FreeBSD include CUDA support. According to
> this,
> http://blogs.freebsdish.org/jhb/2010/07/20/using-cuda-with-the-native-freebsdamd64-nvidia-driver/,
> you still need to compile the CUDA apps under Linux, where the SDK is. Only
> after that you can run the binaries on FreeBSD.
>

Since this is just for experimentation I imagine cuda 1.0 would do.
The SDK on Linux is a non issue, I imagine.

Thanks for the info,
Antonio
___
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: Recommended nVidia card for cuda/opencl on FreeBSD?

2011-10-24 Thread Antonio Vieiro
> On Sun, 23 Oct 2011 20:37:28 +0200
> Antonio Vieiro articulated:
>
>> Would anyone on the list suggest a cheap nVidia replacement that can
>> do cuda/opencl?
>
> Define "cheap".

Below USD$50 would be perfect, below USD$75 would be not-so perfect.

Above that would be expensive just for experimentation.

Thanks,
Antonio
___
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"


Recommended nVidia card for cuda/opencl on FreeBSD?

2011-10-23 Thread Antonio Vieiro

Hi all,

I think I'll replace my old ATI Radeon HD 2400 with an nVidia card. The 
idea is to do some cuda/opencl experiments on FreeBSD.


Would anyone on the list suggest a cheap nVidia replacement that can do 
cuda/opencl?


Thanks in advance,
Antonio
___
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"


State of LuaJIT2 port?

2011-10-17 Thread Antonio Vieiro
Hi all,

As far as I can tell there's no port of LuaJIT2 in FreeBSD. I think
there were some problems to have this up and running. Does anyone know
of advances on this port?

Thanks,
Antonio
___
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"


lock order reversal @ FreeBSD 9.0B3

2011-10-14 Thread Antonio Vieiro
Hi all,

I'm seeing weird messages at dmesg saying someting about "lock order
reversal" (see below) on my FreeBSD 9.0 beta 3.

I think this has something to do with the filesystem, so I'm a little
bit worried. Does anybody know if this is a known bug? (If so, how do
you know?) Shall I report it?

Thanks,
Antonio

P.S.: Details

lock order reversal:
 1st 0xc86d88d8 ufs (ufs) @ /usr/src/sys/kern/vfs_syscalls.c:3572
 2nd 0xe0778a00 bufwait (bufwait) @ /usr/src/sys/ufs/ffs/ffs_vnops.c:260
 3rd 0xc86d86b8 ufs (ufs) @ /usr/src/sys/kern/vfs_subr.c:2134
KDB: stack backtrace:
db_trace_self_wrapper(c0eff6ac,632e7262,3331323a,6f000a34,632e7370,...)
at db_trace_self_wrapper+0x26
kdb_backtrace(c0a42bdb,c0f03028,c6d65370,c6d69338,ef34190c,...) at
kdb_backtrace+0x2a
_witness_debugger(c0f03028,c86d86b8,c0ef2288,c6d69338,c0f0ad74,...) at
_witness_debugger+0x25
witness_checkorder(c86d86b8,9,c0f0ad74,856,0,...) at witness_checkorder+0x839
__lockmgr_args(c86d86b8,80100,c86d86d8,0,0,...) at __lockmgr_args+0x824
ffs_lock(ef341a34,c0a53e1b,c0f0a05e,80100,c86d8660,...) at ffs_lock+0x8a
VOP_LOCK1_APV(c10493e0,ef341a34,c794d670,c1059a80,c86d8660,...) at
VOP_LOCK1_APV+0xb5
_vn_lock(c86d8660,80100,c0f0ad74,856,4,...) at _vn_lock+0x5e
vget(c86d8660,80100,c794d5c0,50,0,...) at vget+0xb9
vfs_hash_get(c7447ca8,7af825,8,c794d5c0,ef341b78,...) at vfs_hash_get+0xe6
ffs_vgetf(c7447ca8,7af825,8,ef341b78,1,...) at ffs_vgetf+0x49
softdep_sync_buf(c86d8880,e07789a0,1,106,0,...) at softdep_sync_buf+0xac9
ffs_syncvnode(c86d8880,1,c794d5c0,c86a03b8,c86d892c,...) at ffs_syncvnode+0x24c
ffs_fsync(ef341c48,ef341cec,0,ef341c48,ef341c6c,...) at ffs_fsync+0x27
VOP_FSYNC_APV(c10493e0,ef341c48,c0f0c048,df9,0,...) at VOP_FSYNC_APV+0xa5
sys_fsync(c794d5c0,ef341cec,c0f493b6,c0eebb0e,286,...) at sys_fsync+0x1df
syscall(ef341d28) at syscall+0x284
Xint0x80_syscall() at Xint0x80_syscall+0x21
--- syscall (95, FreeBSD ELF32, sys_fsync), eip = 0x2859a1c7, esp =
0xbfbfe1bc, ebp = 0xbfbfe1d8 ---
pid 2085 (perl5.12.4), uid 0: exited on signal 6 (core dumped)
pid 2083 (perl5.12.4), uid 0: exited on signal 6 (core dumped)
lock order reversal:
 1st 0xe07a0e24 bufwait (bufwait) @ /usr/src/sys/kern/vfs_bio.c:2658
 2nd 0xc86b5200 dirhash (dirhash) @ /usr/src/sys/ufs/ufs/ufs_dirhash.c:284
KDB: stack backtrace:
db_trace_self_wrapper(c0eff6ac,7366752f,7366752f,7269645f,68736168,...)
at db_trace_self_wrapper+0x26
kdb_backtrace(c0a42bdb,c0f0300f,c6d65370,c6d69408,f15327e8,...) at
kdb_backtrace+0x2a
_witness_debugger(c0f0300f,c86b5200,c0f31d92,c6d69408,c0f31a17,...) at
_witness_debugger+0x25
witness_checkorder(c86b5200,9,c0f31a17,11c,0,...) at witness_checkorder+0x839
_sx_xlock(c86b5200,0,c0f31a17,11c,c8893828,...) at _sx_xlock+0x85
ufsdirhash_acquire(e07a0dc4,c8893828,f1532918,e5263e74,f15328b8,...)
at ufsdirhash_acquire+0x35
ufsdirhash_add(c8893828,f1532918,3e74,f15328a4,f15328a8,...) at
ufsdirhash_add+0x13
ufs_direnter(c889caa0,c89a5660,f1532918,f1532bc0,0,...) at ufs_direnter+0x739
ufs_makeinode(f1532bc0,0,f1532b04,f1532a60,c0d5fc85,...) at ufs_makeinode+0x59d
ufs_create(f1532b04,f1532b1c,0,0,f1532b80,...) at ufs_create+0x30
VOP_CREATE_APV(c10493e0,f1532b04,f1532bc0,f1532a9c,0,...) at VOP_CREATE_APV+0xa5
vn_open_cred(f1532b80,f1532c48,1a4,0,c74ce280,...) at vn_open_cred+0x215
vn_open(f1532b80,f1532c48,1a4,c86a3508,2835a000,...) at vn_open+0x3b
kern_openat(c7ac6b80,ff9c,289ffa60,0,a03,...) at kern_openat+0x1ec
kern_open(c7ac6b80,289ffa60,0,a02,1b4,...) at kern_open+0x35
sys_open(c7ac6b80,f1532cec,c,f1532d80,282,...) at sys_open+0x30
syscall(f1532d28) at syscall+0x284
Xint0x80_syscall() at Xint0x80_syscall+0x21
--- syscall (5, FreeBSD ELF32, sys_open), eip = 0x282b1343, esp =
0xbf9f100c, ebp = 0xbf9f1038 ---
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Why does apache22 port want python?

2010-11-04 Thread Antonio Vieiro
Maybe this is configurable in the port? I don't think apache22 depends 
on python at all, but maybe some apache plugin does.


I'd try with make config install clean

Cheers,
Antonio

On 04/11/2010 19:30, Tom Worster wrote:

I don't need python for anything, afaik. What does apache want it for?


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


Can't control laptop's lid... how to debug?

2010-08-18 Thread Antonio Vieiro

Hi all,

I am unable to control my laptop's lid. Whenever I close the lid the 
system enters a weird state and I have to reboot.


I've already added

#Lid switch
notify 0 {
match "system" "ACPI";
match "subsystem" "Lid";
match "notify" "0x00";
action "xset dpms force off";
};

notify 0 {
match "system" "ACPI";
match "subsystem" "Lid";
match "notify" "0x01";
action "xset dpms force on";
};


to my /etc/devd.conf

This seemed to work the very first time, but then the system entered a 
weird state and I couldn't recover it, so I had to reboot.


Is there any way to debug acpi events so that I can see what's going on 
without having to reboot?


Thanks,
Antonio
___
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: how to run task periodically

2010-08-18 Thread Antonio Vieiro
crontab -e ?

See http://en.wikipedia.org/wiki/Cron

Cheers,
Antonio

2010/8/18 Mark Stapper :
>  Hi,
>
> I have a system that doesn't run 24/7/365.
> I would like to make sure that some tasks (like updating the ports tree)
> run weekly/monthly etc.
> As the system isn't on 24/7 the cron job I usually run for these tasks
> doesn't work as the machine isn't always running on the scheduled time.
>
> So I need a utility that enable me to say: "if a week has passed since
> the last run, run this command".
> Is there such a utlility?
> Cheers,
> Mark
>
>
___
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: Status of Java in FreeBSD? (OpenSolaris is dead)

2010-08-13 Thread Antonio Vieiro

On 13/08/2010 20:57, Roland Smith wrote:

On Fri, Aug 13, 2010 at 07:59:20PM +0200, Antonio Vieiro wrote:



I'm currently using OpenJDK16 from ports. Is OpenJDK free from Oracle
hands or not?


Depends what you mean by free. It's under the GPLv2, so I think you should be
good wrt copyrights.


I think that the Diablo JVM has Sun source code [1], and this is 
released under a partner agreement or something, so I imagine Oracle 
could shut it down as well, right?


OpenJDK is under GPLV2, but I'm not sure it covers the whole JVM. I'll 
try to find out.


Thanks,
Antonio

[1] http://www.freebsdfoundation.org/downloads/java.shtml



Patents might be different matter, though! To the best of my knowledge, the EU
law doesn't allow patenting software. But if you really want to know where you
stand you should consult a lawyer who knows Spanish and EU patent law.

People in the US could very well be screwed, however. OTOH, Oracle's lawsuit
against Google over Android could potentially lead to the patents asserted in
that case being found invalid

Roland


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


Status of Java in FreeBSD? (OpenSolaris is dead)

2010-08-13 Thread Antonio Vieiro

Hi all,

Now that OpenSolaris is dead [1] I was wondering what the status of Java 
is in FreeBSD.


I'm currently using OpenJDK16 from ports. Is OpenJDK free from Oracle 
hands or not? Would it be possible it dissappearing from the ports 
because of licensing/patent issues? If so, what are the open-source 
alternatives?


Thanks,
Antonio

[1] http://sstallion.blogspot.com/2010/08/opensolaris-is-dead.html
___
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: problem mounting USB drive

2010-08-10 Thread Antonio Vieiro

On 10/08/2010 17:32, Ott Köstner wrote:

[...]

In the /var/log/messages the following message appears:

Aug 10 18:27:40 ott kernel: mountmsdosfs(): bad FAT32 filesystem

The drive is OK and works fine with Windows. Also, USB flash thumb
drives work fine, when used in the same manner with my FreeBSD.
System version is 8.0-STABLE, but this is probably irrelevant here.



The fact that the drive is working on Windows does not mean it's FAT32 
formatted. It may as well be NTFS formatted ("man mount_ntfs").


Doublecheck you're running a FAT32 system: FreeBSD is saying you're not.

Cheers,
Antonio
___
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 Performance on FreeBSD

2010-08-08 Thread Antonio Vieiro

Hi,

I heard that Linux filesystems were not reliable because of some bad way 
of doing caching or something like that.


For a study on Linux FS reliability see [1] by Toshiba guys. It seems 
Linux was upset on this about one year ago [2]. Quoting:


"Torvalds, for one, didn't seem too excited about the delayed 
synchronization. He writes on the mailing list, "Doesn't at least ext4 
default to the insane model of 'data is less important than metadata, 
and it doesn't get journalled'? And ext3 with 'data=writeback' does the 
same, no? Both of which are -- as far as I can tell -- total brain damage."


I don't mind if a filesystem is very fast: I want it to be reliable 
first. I wonder if that Phoronix test suite checks for reliability first 
or not.


Cheers,
Antonio

[1] elinux.org/images/2/26/Evaluation_of_Data_Reliability-ELC2010.pdf
[2] 
http://www.linux-magazine.com/Online/News/Linus-Torvalds-Upset-over-Ext3-and-Ext4



On 08/08/2010 19:22, Bruce Cran wrote:

On Sun, 08 Aug 2010 13:13:46 -0400
Bill Moran  wrote:


To someone technical who might be looking to investigate the results
with an eye toward fixing them, it's useless.


Anyone can download the Phoronix Test Suite though, so it should be
fairly easy to check if the results are valid at least.



___
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: Gnome theme and window preferences not completely honored

2010-08-02 Thread Antonio Vieiro

Hi,

Just for the records: an upgrade on x11-wm/metacity (I'm running 2.30.1 
right now) solved the focus problems in gnome.


Cheers,
Antonio


On 23/07/2010 11:36, Antonio Vieiro wrote:

Hi,

I'm running 8.1-RC2 (metacity 2.30.1) and focus-follows-mouse simply
doesn't work. I think this is a metactity bug or something, maybe this
is related:

https://bugzilla.gnome.org/show_bug.cgi?id=155450

Any workaround to have focus-follows-mouse again would be greatly
appreciated, as I hate cliking on windows to focus them.

Cheers,
Antonio

On 13/07/2010 23:26, Willoughby, Steve wrote:

I'm running FreeBSD 8.1-RC1 with Gnome 2.30.0 and am having a strange
issue where I can set almost everything about the desktop appearance
using the theme settings and the "preferences" tool, except the window
decorations never change (internal icons, colors, etc, do) and things
like focus-follows-mouse don't appear to be honored by the window
manager.

Going into the gconf editor shows that, for example,
apps.metacity.general.focus_mode="sloppy", but I still have to click
to type.

I am probably missing something simple and obvious here, but I'm not
spotting it yet. What can I look for next?

Thanks!
___
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: Upgraded cups - no cups printer in firefox after the upgrade

2010-07-29 Thread Antonio Vieiro

This one?

http://www.freebsdwiki.net/index.php/CUPS#CUPS_and_Gnome_Warning

Cheers,
Antonio

On 29/07/2010 23:41, Kenneth Hatteland wrote:

When updating the cups port my cups networked printer tends to fall out
from firefox, epdfview etc.
Last time I found a webpage with some cups related ports that had to be
rebuilt for it to work. But I forgot to bookmark it. Now I can not find
this page and I can`t piece together which ports it was by browsing in
/ports/print

Is there anyone that could drop me a hint ;)

Kenneth, Norway
___
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: BSD logo

2010-07-29 Thread Antonio Vieiro

On 24/07/2010 04:01, Victor Skovorodnikov wrote:

[...]
I have always been thinking of trying FreeBSD but as a Christian I get deterred 
by its un-Christian
logo.
[...]


The logo means that all the people not trying out FreeBSD are going to 
go directly to hell after death.


The logo is not un-Christian (The Devil is somewhere in the Bible), but 
many people are un-Christian, though.



Thanks,
Victor.


Cheers,
Antonio
___
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: OpenOffice 3.2.1 in FreeBSD 8.1

2010-07-28 Thread Antonio Vieiro

Ah, I see.

I should learn about all those java licenses some day. I thought there 
was a free java somewhere.


Thanks,
Antonio

On 28/07/2010 18:26, Jack L. wrote:

Oh, they aren't on the freebsd package sites due to some of the
dependencies having licensing issues preventing it from being built
automatically (java). That's why there's a seperate site for them.

On Tue, Jul 27, 2010 at 10:44 AM, Antonio Vieiro
  wrote:

D'oh! Are those the official packages? pkg_add -r -v openoffice3 didn't work
from the command line (that's why I posted this, just in case there're any
other newbies reading this ;-)).

Cheers,
Antonio

On 27/07/2010 17:15, Jack L. wrote:


On Mon, Jul 26, 2010 at 10:25 AM, Antonio Vieiro
wrote:


Hi all,

For those trying to test OpenOffice 3.2.1 in FreeBSD 8.1-RELEASE (no
official package yet):

This:

ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/3.2.1/i386/OOo_3.2.1_FreeBSD81Intel_install_es.tbz

From
ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/3.2.1/i386/

is working for me.



Those are the official packages ;)





___
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: Compiling vim with gnome, anyone?

2010-07-28 Thread Antonio Vieiro

Hi,

Thanks! That solved the issue.

Cheers,
Antonio

On 28/07/2010 15:16, 文鳥 wrote:

On Wed, 28 Jul 2010 11:07:38 +0200
Antonio Vieiro  wrote:



make -DWITH_VIM_OPTIONS config


Hi Antonio,

I also had problems getting gnome support added, but at least the
following worked for me:

make WITH_GTK2=yes WITH_GNOME=yes install clean

Alternatively, you might consider installing ports-mgmt/portconf
and adding the following line to /usr/local/etc/ports.conf:

editors/vim*: WITH_GTK2 | WITH_GNOME

then just type "make".

The same goes for all the other options you need.

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


Compiling vim with gnome, anyone?

2010-07-28 Thread Antonio Vieiro

Hi all,

I'm trying to comile /usr/ports/editors/vim with gnome support.

To show the options I use

make -DWITH_VIM_OPTIONS config

and I select "gnome" in a dialog that is shown.

After that I issue a

make -DWITH_VIM_OPTIONS

But vim does not compile with gnome libraries.

Anyone has an idea on why is this so? Is this port broken or something? 
Should I report it?


Thanks,
Antonio
___
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: OpenOffice 3.2.1 in FreeBSD 8.1

2010-07-27 Thread Antonio Vieiro
D'oh! Are those the official packages? pkg_add -r -v openoffice3 didn't 
work from the command line (that's why I posted this, just in case 
there're any other newbies reading this ;-)).


Cheers,
Antonio

On 27/07/2010 17:15, Jack L. wrote:

On Mon, Jul 26, 2010 at 10:25 AM, Antonio Vieiro
  wrote:

Hi all,

For those trying to test OpenOffice 3.2.1 in FreeBSD 8.1-RELEASE (no
official package yet):

This:
ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/3.2.1/i386/OOo_3.2.1_FreeBSD81Intel_install_es.tbz

From
ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/3.2.1/i386/

is working for me.



Those are the official packages ;)



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


OpenOffice 3.2.1 in FreeBSD 8.1

2010-07-26 Thread Antonio Vieiro

Hi all,

For those trying to test OpenOffice 3.2.1 in FreeBSD 8.1-RELEASE (no 
official package yet):


This:
ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/3.2.1/i386/OOo_3.2.1_FreeBSD81Intel_install_es.tbz

From
ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/3.2.1/i386/

is working for me.

(I now most of you already knew this, but I didn't!, I'm a FreeBSD newbie!)

Cheers,
Antonio
___
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: Gnome theme and window preferences not completely honored

2010-07-23 Thread Antonio Vieiro

Hi,

I'm running 8.1-RC2 (metacity 2.30.1) and focus-follows-mouse simply 
doesn't work. I think this is a metactity bug or something, maybe this 
is related:


https://bugzilla.gnome.org/show_bug.cgi?id=155450

Any workaround to have focus-follows-mouse again would be greatly 
appreciated, as I hate cliking on windows to focus them.


Cheers,
Antonio

On 13/07/2010 23:26, Willoughby, Steve wrote:

I'm running FreeBSD 8.1-RC1 with Gnome 2.30.0 and am having a strange issue where I can 
set almost everything about the desktop appearance using the theme settings and the 
"preferences" tool, except the window decorations never change (internal icons, 
colors, etc, do) and things like focus-follows-mouse don't appear to be honored by the 
window manager.

Going into the gconf editor shows that, for example, 
apps.metacity.general.focus_mode="sloppy", but I still have to click to type.

I am probably missing something simple and obvious here, but I'm not spotting 
it yet.  What can I look for next?

Thanks!
___
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: Spanish keyboard in X

2010-07-23 Thread Antonio Vieiro

Hi,

This is working for me correctly. In gnome select 
Sistema/Preferencias/Teclado (System/preferences/Keyboard) and select 
the appropriate layout.


Also on my .bash_profile I've included a:

export LANG="es_ES.ISO8859-15"

Cheers,
Antonio

On 18/07/2010 18:49, Leonardo M. Ramé wrote:

Hi,I'm trying to configure spanish keyboard in FreeBsd 8.1-RC2 with no luck, 
I've read many documents on the web, but they seem to be rather old, or assume 
that the user has Gnome or KDE installed, I use Awesome WM.

Any hint?

Leonardo M. Ramé
http://leonardorame.blogspot.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: Would you recommend installing 8.1RC2?

2010-06-28 Thread Antonio Vieiro

Hi all,

Thanks all for your replies.

First of all: I've seen 8.1RC2 announced here:
http://www.evilcoder.org/2010/06/27/freebsd-8-1-rc2-released/
But there're no links, I imagine it's about to be released or something.

I think I'll try 8.1RC2 as soon as it's released. I also think that the 
differences should be minimal. I think I'll start reinstalling the 
workstation first (so that I can cross-compile ports to my laptop 
afterwards) and then I'll go through the process of backing-up my laptop 
and installing FreeBSD there.


Thanks again,
Antonio


On 28/06/10 17:22, RW wrote:

On Mon, 28 Jun 2010 12:37:14 +0200
Antonio Vieiro  wrote:



I'm eager to try out 8.1,


Personally, I don't ever recall seeing a noticeable difference after a
minor base-system update. Most user visible change comes from ports.
___
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"


Would you recommend installing 8.1RC2?

2010-06-28 Thread Antonio Vieiro

Hi all,

I'm brand new to FreeBSD. I've got 8.0-RELEASE up and running in my main 
workstation and I'm quite happy with it. Great job & congratulations.


I'm eager to try out 8.1, and I was thinking of trying it out on my 
laptop for my daily work (I'm currently running OpenSolaris 2009.06).


My question is: if I install 8.1 RC2 would it be very difficult to 
upgrade it to 8.1-RELEASE afterwards? Would you recommend installing 
8.1-RC2 right now or would you wait until 8.1-RELEASE is out within a 
few days?


Thanks in advance,
Antonio
___
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: Problems with textproc/iso8879 port?

2010-06-11 Thread Antonio Vieiro

On 11/06/10 20:34, Dan Nelson wrote:

If I remove the file in /usr/ports/distfiles/isoENTS.zip and try
again the build fails too:


It looks like a problem with the zip command in
textproc/iso8879/Makefile:

@${UNZIP_CMD} -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}


The -d option to unzip is dangerous imho, since it's in the wrong location
(at the end of the comamndline, after everything else).  Safer to use

   cd ${INSTDIR}&&  ${UNZIP_CMD} -q -o ${DISTDIR}/${DISTFILES}



Thanks all for this. I got it working (docbook is being installed as I 
write this and yes, I'm using the new parallel make on a QuadCore and 
things fly indeed [1] ).


As I'm still a FreeBSD newbie I don't dare to write a patch for this 
yet. (I still have to learn what ${EXTRACT_BEFORE_ARGS} means in that 
makefile, for instance).


I'm a little bit overwhelmed with FreeBSD documentation. I've just found 
the "FreeBSD Porter's Handbook". I think I should read that first.


Thanks again,
Antonio

[1] Excerpt from "top -P" while running make...

CPU 0: 75.3% user,  0.0% nice, 12.0% system,  0.0% interrupt, 12.7% idle
CPU 1: 77.9% user,  0.0% nice,  9.4% system,  0.0% interrupt, 12.7% idle
CPU 2: 85.0% user,  0.0% nice, 10.5% system,  0.0% interrupt,  4.5% idle
CPU 3: 93.6% user,  0.0% nice,  4.9% system,  0.0% interrupt,  1.5% idle

I just love that!
___
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 with textproc/iso8879 port?

2010-06-11 Thread Antonio Vieiro

Hi all,

I'm trying to install port "iso8879" in 8.0-RELEASE (needed by docbook 
and by gnome and wxgtk28) and I'm getting the problem below.


I contacted the maintainer without success. Any ideas, anyone?

Thanks in advance,
Antonio

[r...@casa /usr/ports/textproc/iso8879]# make
===>  Vulnerability check disabled, database not found
===>  License check disabled, port has not defined LICENSE
===>  Extracting for iso8879-1986_2
=> MD5 Checksum OK for isoENTS.zip.
=> SHA256 Checksum OK for isoENTS.zip.
===>  Patching for iso8879-1986_2
===>   iso8879-1986_2 depends on executable: unzip - found
===>  Configuring for iso8879-1986_2
[r...@casa /usr/ports/textproc/iso8879]# make install
===>  Installing for iso8879-1986_2
===>   iso8879-1986_2 depends on file: /usr/local/bin/xmlcatmgr - found
===>   Generating temporary packing list
===>  Checking if textproc/iso8879 already installed
Archive:  /usr/ports/distfiles/isoENTS.zip
caution: filename not matched:  -d
caution: filename not matched:  /usr/local/share/sgml/iso8879
*** Error code 11

If I remove the file in /usr/ports/distfiles/isoENTS.zip and try again 
the build fails too:


[r...@casa /usr/ports/textproc/iso8879]# make install
===>  Vulnerability check disabled, database not found
===>  License check disabled, port has not defined LICENSE
=> isoENTS.zip doesn't seem to exist in /usr/ports/distfiles/.
=> Attempting to fetch from 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/kuriyama/.

isoENTS.zip   100% of   20 kB   25 kBps
===>  Extracting for iso8879-1986_2
=> MD5 Checksum OK for isoENTS.zip.
=> SHA256 Checksum OK for isoENTS.zip.
===>  Patching for iso8879-1986_2
===>   iso8879-1986_2 depends on executable: unzip - found
===>  Configuring for iso8879-1986_2
===>  Installing for iso8879-1986_2
===>   iso8879-1986_2 depends on file: /usr/local/bin/xmlcatmgr - found
===>   Generating temporary packing list
===>  Checking if textproc/iso8879 already installed
Archive:  /usr/ports/distfiles/isoENTS.zip
caution: filename not matched:  -d
caution: filename not matched:  /usr/local/share/sgml/iso8879
*** Error code 11

___
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: Question on packages and ports (and versions)

2010-06-10 Thread Antonio Vieiro
Hi,

Ah, I see.

So if I need a more advanced version of some software, that has been
installed as a package, I can use portupgrade (or other port
management tools) to upgrade the package to a port. Am I right?

Thanks,
Antonio

(As a newbie I'm somewhat concerned about keeping consistency between
package and port versions, but I suppose this is handled by port
management tools automagically)

2010/6/10 Erik Trulsson :
>
> A package is best seen as simply a pre-compiled port, i.e. packages are
> built from ports. After it has been installed there is no
> difference between software installed via ports or software installed
> via packages.
>
>
>
>
> --
> 
> Erik Trulsson
> ertr1...@student.uu.se
> ___
> 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"


Question on packages and ports (and versions)

2010-06-10 Thread Antonio Vieiro
Hi all,

I can't find an answer to this question, so I decided to post here.
Since I'm not very good at english let me ask this with an example.

I assume that packages and ports may have different versions of the
same software (am I right?) so, for instance, if you install gnome
with packages you can have a certain "glib" version (say 1.0), but if
you install gnome with ports you can have a more recent "glib" version
(say 1.1).

Now my question is, am I right on this assumption? If so, may I have
those two versions installed at the same time (from a package and a
port)? How does software from packages and ports interfere each other?

Does software installed from packages live in different directories
than software installed from ports? If not, how does FreeBSD select
one over the other?

Thanks in advance,
Antonio
___
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: kernel: calcru: runtime went backwards

2010-06-08 Thread Antonio Vieiro
This may be of help:

http://forums.freebsd.org/archive/index.php/t-2805.html

Cheers,
Antonio

2010/6/8 Frank Bonnet :
> Hello All
>
> since few days I get those messages into console and /var/log/messages
>
> The machine is a IBM X3650 dual CPU , I've read it could be multi-cpu
> related but I am a bit confused in it.
>
> Does any guru could show me the light on how to stop those messages
> if possible , this has side effects on Dovecot IMAP server that kill
> himself when it trap that kind of error messages.
>
>
> Thank you
>
>
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 1721
> usec to 1377 usec for pid 684 (rpc.lockd)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 528
> usec to 459 usec for pid 678 (rpc.statd)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 1928
> usec to 1906 usec for pid 643 (ypbind)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 2241
> usec to 1793 usec for pid 643 (ypbind)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 9373
> usec to 7545 usec for pid 628 (rpcbind)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 556
> usec to 539 usec for pid 538 (devd)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 12152
> usec to 9722 usec for pid 538 (devd)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 287
> usec to 229 usec for pid 143 (adjkerntz)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 18 usec
> to 14 usec for pid 42 (sctp_iterator)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 711
> usec to 569 usec for pid 39 (irq15: ata1)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 44 usec
> to 40 usec for pid 36 (usb3)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 35 usec
> to 31 usec for pid 35 (usb2)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 1325
> usec to 1060 usec for pid 23 (swi6: task queue)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 21246
> usec to 20041 usec for pid 2 (g_event)
> Jun  8 10:16:34 mail kernel: calcru: runtime went backwards from 8572
> usec to 7530 usec for pid 0 (swapper)
> ___
> 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"


What happens with x11-toolkits/linux-f10-gtk2 ?

2010-06-06 Thread Antonio Vieiro
Hi all,

First of all my apologies if this is not an appropriate list. I'm a
newbie in FreeBSD and I'm a bit overwhelmed about mailing lists and
asking for help. If this list is not appropriate for this question I'd
appreciate if anyone could suggest an appropriate one.

The fact is that I've just installed FreeBSD 8.0 on my laptop and I'm
starting to configure it.

I'm trying to install the "x11-toolkits/linux-f10-gtk2" port by running

cd /usr/ports/x11-toolkits/linux-f10-gtk2; make install clean

This in turn tries to download some stuff, and it keeps on seeking for
"gtk2-2.14.7-7.fc10.i386.rpm" on many different servers, all of them
respond with "File unavailable", like this:

=> gtk2-2.14.7-7.fc10.i386.rpm doesn't seem to exist in
/usr/ports/distfiles/rpm/i386/fedora/10.
=> Attempting to fetch from
http://archives.fedoraproject.org/pub/archive/fedora/linux/core/../releases/10/Everything/i386/os/Packages/.
fetch: 
http://archives.fedoraproject.org/pub/archive/fedora/linux/core/../releases/10/Everything/i386/os/Packages/gtk2-2.14.7-7.fc10.i386.rpm:
Not Found
=> Attempting to fetch from
http://archives.fedoraproject.org/pub/archive/fedora/linux/core/../updates/10/i386/.
fetch: 
http://archives.fedoraproject.org/pub/archive/fedora/linux/core/../updates/10/i386/gtk2-2.14.7-7.fc10.i386.rpm:
Not Found
=> Attempting to fetch from
http://mirrors.kernel.org/fedora/core/../releases/10/Everything/i386/os/Packages/.
fetch: 
http://mirrors.kernel.org/fedora/core/../releases/10/Everything/i386/os/Packages/gtk2-2.14.7-7.fc10.i386.rpm:
Not Found

Error messages like these keep on appearing on the console, and the
port is never installed.

I was wondering if someone more experienced than me could shed some
light on how to get this port installed.

Thanks in advance,
Antonio
___
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"