Re: Erlang and Java

2010-09-24 Thread zaxis

Erlang doesnot depend on java.  I have installed erlang sucessfully just by
`make install clean` without java.


Chad Perrin wrote:
 
 Does anyone know of a reason that installing lang/erlang would fail if a
 java/diablo-jdk port failed to install?  Correct me if I'm wrong, but the
 Erlang VM really should *not* depend on Java.  Right?
 
 -- 
 Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ]
 
  
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/Erlang-and-Java-tp29803843p29804352.html
Sent from the freebsd-questions mailing list archive at Nabble.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


How to fix the keyboard dead question ?

2010-09-16 Thread zaxis

Sometimes after booting freebsd and reaching the slim login screen, i cannot
input anything: the keyboard seems to be dead.  Then i have to reboot
freebsd and the problem disappear !

uname -a
FreeBSD mybsd.zsoft.com 8.1-RELEASE FreeBSD 8.1-RELEASE #1: Wed Sep  8
09:07:54 CST 2010
r...@mybsd.zsoft.com:/media/G/usr/obj/media/G/usr/src/sys/MYKERNEL  i386

dmesg -a | grep -i fail
acpi0: reservation of 0, a (3) failed
acpi0: reservation of 10, 3fde (3) failed

dmesg -a | grep -i warn
ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x 
 
0   0/0x1 (20100331/tbfadt-655)

Sincerely!

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/How-to-fix-the-%22keyboard-dead%22-question---tp29734114p29734114.html
Sent from the freebsd-questions mailing list archive at Nabble.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


wine doesnot work after upgrading to 8.1?

2010-09-09 Thread zaxis

The wine works great when using freebsd 8.0. Yesterday i upgrading FB 8.0 to
8.1, the wine cannot display window without any message even if reinstalling
wine under FB 8.1 .

uname -a
FreeBSD mybsd.zsoft.com 8.1-RELEASE FreeBSD 8.1-RELEASE #1: Wed Sep  8
09:07:54 CST 2010
r...@mybsd.zsoft.com:/media/G/usr/obj/media/G/usr/src/sys/MYKERNEL  i386

pkg_info|grep wine
wine-1.3.2_2,1  Microsoft Windows compatibility layer for Unix-like
systems

Any suggestion is appreciated!

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/wine-doesnot-work-after-upgrading-to-8.1--tp29673647p29673647.html
Sent from the freebsd-questions mailing list archive at Nabble.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


Can i use tmpfs to mount /tmp ?

2010-09-05 Thread zaxis

cat /etc/fstab 
# DeviceMountpoint  FStype  Options DumpPass#
/dev/ad4s3b noneswapsw  0   0
/dev/ad4s3a /   ufs rw,noatime  1   
1
/dev/ad4s3e /tmpufs rw  2   2
/dev/ad4s3f /usrufs rw  2   2
/dev/ad4s3d /varufs rw  2   2
/dev/acd0   /cdrom  cd9660  ro,noauto   0   0
/dev/ad4s7  /media/Fmsdosfs rw  0   0
/dev/ad4s8  /media/Gext2fs  rw  0   0

The /dev/ad4s3e is used for /tmp. Now i want to use tmpfs instead of ufs as
below
none /tmp tmpfs size=64M,nodev,nosuid,noexec 0 0

If i can, then how to reuse the space of /dev/ad4s3e ?

Sincerely!

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/Can-i-use-tmpfs-to-mount--tmp---tp29625711p29625711.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Can i use tmpfs to mount /tmp ?

2010-09-05 Thread zaxis

thanks for your suggestion!
df -h
Filesystem SizeUsed   Avail Capacity  Mounted on
/dev/ad4s3a496M119M337M26%/
devfs  1.0K1.0K  0B   100%/dev
/dev/ad4s3e496M 18M438M 4%/tmp
/dev/ad4s3f 14G4.8G8.4G37%/usr
/dev/ad4s3d1.4G178M1.1G14%/var
/dev/ad4s7  30G3.6G 26G12%/media/F
/dev/ad4s8  30G4.1G 24G15%/media/G

The /dev/ad4s3e is just 496M. so it is not worth for me to modify the
disk-level layout.


Matthew Seaman-2 wrote:
 
 On 05/09/2010 07:09:50, zaxis wrote:
 The /dev/ad4s3e is used for /tmp. Now i want to use tmpfs instead of ufs
 as
 below
 none /tmp tmpfs size=64M,nodev,nosuid,noexec 0 0
 
 If i can, then how to reuse the space of /dev/ad4s3e ?
 
 There are two choices.
 
 Either mount your ad4s3e partition somewhere else as a regular
 filesystem -- you can move the mount point simply by unmounting it,
 editing fstab and then mounting the new partition.  Do that before
 mounting your new tmpfs based /tmp, or you'll block access to the whole
 filesystem on ad4s3e.  Oh, and 'chmod 755 /new/mountpoint' after you
 move it -- you don't want the /tmp defaults of mode 1777 on a normal
 filesystem.
 
 Or amalgamate the ad4s3e partition with one of the partitions
 neighbouring it on the drive.  Use bsdlabel(8) to examine and modify the
 disk-level layout.  If you join ad4s3e on to the end of the preceeding
 partition, you can use growfs(8) to expand that partition into the extra
 space.  Otherwise you'll have to newfs(8) the expanded partition and
 recover the contents from backup.  Either way, this sort of partition
 wrangling operation involves low-level fiddling in the guts of the OS
 and an enhanced potential for things to go horribly wrong, so make sure
 you've got good backups and spend some time planning exactly what you
 are going to do, even down to the extent of writing out all the commands
 you'll need beforehand.
 
   Cheers,
 
   Matthew
 
 PS.  64MB is pretty small for a /tmp -- you might want to increase the
 size of your tmpfs.
 
 -- 
 Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
   Flat 3
 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 JID: matt...@infracaninophile.co.uk   Kent, CT11 9PW
 
 
  
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/Can-i-use-tmpfs-to-mount--tmp---tp29625711p29627883.html
Sent from the freebsd-questions mailing list archive at Nabble.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


What's the best way to upgrade 8.0 ?

2010-09-02 Thread zaxis

uname -a
FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Wed Jul 14
15:35:26 CST 2010
r...@mybsd.zsoft.com:/media/G/usr/obj/media/G/usr/src/sys/MYKERNEL  i386

Now i want to upgrade it to 8.1 realease.

thanks!

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/What%27s-the-best-way-to-upgrade-8.0---tp29601273p29601273.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Upgrading to 8.1; Perl; and libgcrypt

2010-07-29 Thread zaxis

uname -a
FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Wed Jul 14
15:35:26 CST 2010
r...@mybsd.zsoft.com:/media/G/usr/obj/media/G/usr/src/sys/MYKERNEL  i386

sudo env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.12 -f perl-5.8.\*

pkg_info |grep -i perl
perl-5.12.1_1   Practical Extraction and Report Language

sudo portupgrade -fr perl
Password:
** Makefile possibly broken: mail/thunderbird:
grep: write error: Broken pipe
thunderbird-2.0.0.24_1


/usr/local/sbin/portupgrade:1473:in `get_pkgname': Makefile broken
(MakefileBrokenError)
from /usr/local/sbin/portupgrade:623
from /usr/local/sbin/portupgrade:614:in `each'
from /usr/local/sbin/portupgrade:614
from /usr/local/sbin/portupgrade:588:in `catch'
from /usr/local/sbin/portupgrade:588
from /usr/local/lib/ruby/1.8/optparse.rb:1310:in `call'
from /usr/local/lib/ruby/1.8/optparse.rb:1310:in `parse_in_order'
from /usr/local/lib/ruby/1.8/optparse.rb:1306:in `catch'
from /usr/local/lib/ruby/1.8/optparse.rb:1306:in `parse_in_order'
from /usr/local/lib/ruby/1.8/optparse.rb:1254:in `catch'
from /usr/local/lib/ruby/1.8/optparse.rb:1254:in `parse_in_order'
from /usr/local/lib/ruby/1.8/optparse.rb:1248:in `order!'
from /usr/local/lib/ruby/1.8/optparse.rb:1241:in `order'
from /usr/local/sbin/portupgrade:565:in `main'
from /usr/local/lib/ruby/1.8/optparse.rb:791:in `initialize'
from /usr/local/sbin/portupgrade:229:in `new'
from /usr/local/sbin/portupgrade:229:in `main'
from /usr/local/sbin/portupgrade:2213

What does this errror mean ?


J. Altman wrote:
 
 Greetings...
 
 I am looking at upgrading to 8.1 from 8.0 on an AMD64.
 
 As you know, Perl is now at 5.12 and requires a recursive dependency
 rebuild; and so does libgcrypt.
 
 This seems to be a rather extensive pair of updates.
 
 Perl, while (IIRC) it is in the base system, is being reported as
 needing an upgrade via  portversion | grep ''. I seem to recall
 something that makes me think I am wrong here...that it's not in the
 base system, maybe?
 
 Is libgcrypt, perhaps, part of the base system? I suspect not.
 
 I've read http://www.freebsd.org/releases/8.1R/relnotes.html and
 http://www.freebsd.org/releases/8.1R/relnotes-detailed.html and Perl
 5.12 is not mentioned as a part of 8.1.
 
 Does this mean that an upgrade via /usr/src will not upgrade Perl to
 5.12? I suspect it does mean that Perl will not be upgraded from 5.10;
 but I do hope that Perl will be upgraded to 5.12 via an update to
 /usr/src.
 
 I also can't remember if a recursive rebuild of all ports after an
 upgrade across releases was ever recommended. For some reason, I think
 I read that somewhere.
 
 My point with these questions is to move toward 8.1 in the most
 economical manner.
 
 Thanks for any help, and best regards,
 
 Joe
 ___
 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
 
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/Upgrading-to-8.1--Perl--and-libgcrypt-tp29287828p29294063.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: I donot like using mergemaster ?

2010-07-26 Thread zaxis

that's great ! I will use /etc/mergemaster.rc to upgrade my FB 8.0.


Mike Clarke-17 wrote:
 
 On Monday 26 July 2010, zaxis wrote:
 
 I want to upgrade my freebsd 8.0  to 8.1.  I have read all the steps
 about upgrading freebsd. I feel mergemaster  is difficult to use e.g.
 which parameters should i use ?   (you may wish to use -U or -ai or
 -Fi)
 
 I have the following in /etc/mergemaster.rc instead of having to 
 remember the command line options each time:
 
 # Install the new file if it differs only by VCS Id (-F)
 FREEBSD_ID=yes
 #
 # Automatically upgrade files that have not been user modified (-U)
 AUTO_UPGRADE=yes
 #
 # Automatically install files not on the system already (-i)
 AUTO_INSTALL=yes
 #
 # Preserve files that you replace
 PRESERVE_FILES=yes
 #
 # Delete stale files in /etc/rc.d without prompting
 DELETE_STALE_RC_FILES=yes
 #
 # Compare /etc/rc.conf[.local] to /etc/defaults/rc.conf (-C)
 COMP_CONFS=yes
 #
 ##
 # The following options have no command line overrides
 ##
 #
 # Files to always avoid comparing
 IGNORE_FILES='/etc/motd /etc/printcap'
 #
 # Additional options for diff.  This will get unset when using -s.
 DIFF_OPTIONS='-Bb' # Ignore changes in whitespace
 
 -- 
 Mike Clarke
 ___
 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
 
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/I-donot-like-using-mergemastertp29262747p29272211.html
Sent from the freebsd-questions mailing list archive at Nabble.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


I donot like using mergemaster ?

2010-07-25 Thread zaxis

I want to upgrade my freebsd 8.0  to 8.1.  I have read all the steps about
upgrading freebsd. I feel mergemaster  is difficult to use e.g. which
parameters should i use ?   (you may wish to use -U or -ai or -Fi)  

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/I-donot-like-using-mergemastertp29262747p29262747.html
Sent from the freebsd-questions mailing list archive at Nabble.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


can i just upgrade the 8.1 kernel ?

2010-07-23 Thread zaxis

uname -a
FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Wed Jul 14
15:35:26 CST 2010
r...@mybsd.zsoft.com:/media/G/usr/obj/media/G/usr/src/sys/MYKERNEL  i386

Can i just use the following commands to upgrade to 8.1 kernel ? And does
the virtualbox-ose still work under 8.1 ?

# csup -g -L 2 -h cvsup.freebsd.org
/usr/share/examples/cvsup/standard-supfile
# cd /usr/src
# make buildkernel KERNCONF=MYKERNEL
# make installkernel KERNCONF=MYKERNEL

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/can-i-just-upgrade-the-8.1-kernel---tp29244514p29244514.html
Sent from the freebsd-questions mailing list archive at Nabble.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


cannot install opera

2010-07-16 Thread zaxis

sudo portsnap fetch update
cd /usr/ports/www/opera
/usr/ports/www/operasudo make install clean
Password:
===  opera-10.10.20091120_2 has known vulnerabilities:
= opera -- Data URIs can be used to allow cross-site scripting.
   Reference:
http://portaudit.FreeBSD.org/77b9f9bc-7fdf-11df-8a8d-0008743bf21a.html
= Please update your ports tree and try again.
*** Error code 1

Stop in /media/G/usr/ports/www/opera.

does it mean the oepra vulnerabilities has not been fixed ? 

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/cannot-install-opera-tp29180746p29180746.html
Sent from the freebsd-questions mailing list archive at Nabble.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


How can i know if the freebsd kernel need to be updated ?

2010-07-13 Thread zaxis

Now i use the following commands to maintain my freebsd box.

portsnap fetch update
pkg_version -vIL=
portupgrade -R xxx

It works great for software installed through ports. However, how can i know
if the kernel needs to be updated ?

Sincerely! 

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/How-can-i-know-if-the-freebsd-kernel-need-to-be-updated---tp29147737p29147737.html
Sent from the freebsd-questions mailing list archive at Nabble.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


How to get the SPD infomation in freebsd ?

2010-06-28 Thread zaxis

In windows, the `CPU-Z` utility can be used to get the SPD(Serial Presence
Detect) information. How about freebsd ? I want to get those information
especially frequency to add more memory. And i donot want to touch the
hardware.

Sincerely! 

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/How-to-get-the-SPD-infomation-in-freebsd---tp29015060p29015060.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Is it appropriate to mount /var and /usr on ext2fs partition ?

2010-06-26 Thread zaxis

In fact, i never do such a thing manually! So would you mind  introducing it
in detail especially the command options i should use.

thanks!


RW-15 wrote:
 
 On Thu, 24 Jun 2010 18:36:13 -0700 (PDT)
 zaxis z_a...@163.com wrote:
 
 
 The /dev/ad4s8 is an empty partition. Now i want to move /var
 and /usr to it. Do i need to format /dev/ad4s8 to UFS ?
 
 I would, there are FreeBSD specific file flags, that I don't think are
 supported by  ext2fs. UFS with soft-updates is going to be faster than
 synchronously mounted ext2. And it's very easy to do.
 ___
 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
 
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/Is-it-appropriate-to-mount--var-and--usr-on-ext2fs-partition---tp28988313p29003700.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: pkg_add

2010-06-24 Thread zaxis

uname -a
FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #9: Sat Mar 27
15:06:39 CST 2010 r...@mybsd.zsoft.com:/usr/obj/usr/src/sys/MYKERNEL 
i386

echo $PKG_PATH
PKG_PATH: Undefined variable.

cat .cshrc |grep -i package
setenv PACKAGESITE
ftp://ftp.cn.freebsd.org/pub/FreeBSD/ports/i386/packages-8.0-release/All/

So you should use PACKAGESITE instead of PKG_PATH you mentioned .


Fbsd1 wrote:
 
 I checked the pkg_add manpage for where does pkg_add look for the named 
 pkg distribution file? It says the env PKG_PATH holds it but env command 
 does not show that variable. Is it /usr/packages or /usr/ports/packages?
 
 How can I see the value of PKG_PATH?
 What is the path of where the pkg distribution file are suppose to reside.
 ___
 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
 
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/pkg_add-tp28988075p28988141.html
Sent from the freebsd-questions mailing list archive at Nabble.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


Is it appropriate to mount /var and /usr on ext2fs partition ?

2010-06-24 Thread zaxis

df -h
Filesystem SizeUsed   Avail Capacity  Mounted on
/dev/ad4s3a496M119M337M26%/
devfs  1.0K1.0K  0B   100%/dev
/dev/ad4s3e496M6.7M449M 1%/tmp
/dev/ad4s3f 14G7.8G5.4G59%/usr
/dev/ad4s3d1.4G171M1.1G13%/var
/dev/ad4s7  30G3.5G 26G12%/media/F
/dev/ad4s8  30G172M 28G 1%/media/G

mount
/dev/ad4s3a on / (ufs, local)
devfs on /dev (devfs, local, multilabel)
/dev/ad4s3e on /tmp (ufs, local, soft-updates)
/dev/ad4s3f on /usr (ufs, local, soft-updates)
/dev/ad4s3d on /var (ufs, local, soft-updates)
/dev/ad4s7 on /media/F (msdosfs, local)
/dev/ad4s8 on /media/G (ext2fs, local)

The /dev/ad4s8 is an empty partition. Now i want to move /var and /usr to
it. Do i need to format /dev/ad4s8 to UFS ?

Sincerely!


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/Is-it-appropriate-to-mount--var-and--usr-on-ext2fs-partition---tp28988313p28988313.html
Sent from the freebsd-questions mailing list archive at Nabble.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


What's the difference between portupgrade and portmaster ?

2010-05-31 Thread zaxis

Why do we need two tools ?

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/What%27s-the-difference-between-portupgrade-and-portmaster---tp28736514p28736514.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FireFox problem ?

2010-05-31 Thread zaxis

pkg_info |grep -i firefox
firefox-3.5.9_1,1   Web browser based on the browser portion of Mozilla

After using the latest version, the problem disappears!


Dan Nelson wrote:
 
 In the last episode (May 29), zaxis said:
 
 uname -a
 FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #9: Sat Mar
 27 15:06:39 CST 2010
 r...@mybsd.zsoft.com:/usr/obj/usr/src/sys/MYKERNEL  i386
 
 pkg_version -vIL= | grep -i firefox
 firefox-3.5.9,1needs updating (index has
 3.5.9_1,1)
 
 Sometimes when i close one page tab, firefox will exit automatically !
 
 Please make sure you are running the most recent version before reporting
 problems.
 
 3.5.9_1,1:
  date: 2010/05/18 14:17:31;  author: beat;  state: Exp;  lines: +1 -0
  - Fix crash when closing tab after recent cairo update
  - Bump PORTREVISION
 
 
 -- 
   Dan Nelson
   dnel...@allantgroup.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
 
 


-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/FireFox-problem---tp28719810p28736563.html
Sent from the freebsd-questions mailing list archive at Nabble.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


FireFox problem ?

2010-05-29 Thread zaxis

uname -a
FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #9: Sat Mar 27
15:06:39 CST 2010 r...@mybsd.zsoft.com:/usr/obj/usr/src/sys/MYKERNEL 
i386

pkg_version -vIL= | grep -i firefox
firefox-3.5.9,1needs updating (index has 3.5.9_1,1)

Sometimes when i close one page tab, firefox will exit automatically !

Sincerely!

-
e^(π⋅i) + 1 = 0
-- 
View this message in context: 
http://old.nabble.com/FireFox-problem---tp28719810p28719810.html
Sent from the freebsd-questions mailing list archive at Nabble.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


How to check a ext3 partition ?

2010-02-27 Thread zaxis

There is a ext3 partition used to share data between linux and freebsd.
Sometimes freebsd cannot mount this partition as abnormal poweroff.   I have
to enter linux to do `fsck.ext3` .

Can freebsd fsck ext3 partition ?

-
fac n = let {  f = foldr (*) 1 [1..n] } in f 
-- 
View this message in context: 
http://old.nabble.com/How-to-check-a-ext3-partition---tp27732285p27732285.html
Sent from the freebsd-questions mailing list archive at Nabble.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


After customizing 8.0 kernel, the VirtualBox doesnot appear ?

2010-02-19 Thread zaxis

uname -a
FreeBSD mybsd.zsoft.com 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #6: Fri Feb 19
15:49:41 CST 2010 r...@mybsd.zsoft.com:/usr/obj/usr/src/sys/MYKERNEL 
i386

pkg_info | grep virtualbox
virtualbox-ose-3.1.2_1 A general-purpose full virtualizer for x86 hardware
virtualbox-ose-kmod-3.1.2_1 VirtualBox kernel module for FreeBSD

kldstat
Id Refs AddressSize Name
 1   15 0xc040 9a0ab8   kernel
 21 0xc0da1000 1b724snd_hda.ko
 32 0xc0dbd000 567b0sound.ko
 51 0xc61e1000 27000vboxdrv.ko
 61 0xc6208000 951000   nvidia.ko
 71 0xc61c6000 1ext2fs.ko

VirtualBox
stop here forever ...

From another terminal:

ps -A | grep -i virtua
13900 ?? I 0:00.14 /usr/local/lib/virtualbox/VBoxSVC --pipe 8
--auto-shutdown
13896 0 I+ 0:00.79 VirtualBox
13897 0 I+ 0:00.05 /usr/local/lib/virtualbox/VBoxXPCOMIPCD

However, GENERIC kernel works fine before:

diff GENERIC MYKERNEL
21,22c21,22
 cpu I486_CPU
cpu #cpu I486_CPU
 #cpu I586_CPU
40c40
options #options INET6 # IPv6 communications protocols
48,52c48,52
 options NFSCLIENT # Network Filesystem Client
 options NFSSERVER # Network Filesystem Server
 options NFSLOCKD # Network Lock Manager
 options NFS_ROOT # NFS usable as /, requires NFSCLIENT
options #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
92c92
device #device fdc
140,150c140,150
 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 #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
153,159c153,159
 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 #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
268c268
device #device an # Aironet 4500/4800 802.11 wireless NICs.
273,274c273,274
 device ral # Ralink Technology RT2500 wireless NICs.
device #device ral # Ralink Technology RT2500 wireless NICs.
 #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
302c302
device #device umass # Disks/Mass storage - Requires scbus and da
329c329
device #device firewire # FireWire bus code
331,334c331,334
 device fwe # Ethernet over FireWire (non-standard!)
 device fwip # IP over FireWire (RFC 2734,3146)
 device dcons # Dumb console driver
device #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

Any suggestion is appreciated!

-
fac n = let {  f = foldr (*) 1 [1..n] } in f 
-- 
View this message in context: 
http://old.nabble.com/After-customizing-8.0-kernel%2C-the-VirtualBox-doesnot-appear---tp27651435p27651435.html
Sent from the freebsd-questions mailing list archive at Nabble.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


cannot start VirtualBox-3.1.2 !

2010-02-10 Thread zaxis

VirtualBox works great under FreeBSD-8.0 using the `GENERIC` kernel. Today i
customize the kernel using a copy of /usr/src/sys/i386/conf/GENERIC. I
havenot changed anything except its name modified as `MYKERNEL`.

After `buildkernel` and `installkernel`, the new kernel works well. However,
when running `VirtualBox` from roxterm, VirtualBox doesnot show its window
without any output . I have to use `Ctrl+C` to stop virtualbox !

Why doesnot VirtualBox work using `MYKERNEL` ?

-
fac n = let {  f = foldr (*) 1 [1..n] } in f 
-- 
View this message in context: 
http://old.nabble.com/cannot-start-VirtualBox-3.1.2-%21-tp27542585p27542585.html
Sent from the freebsd-questions mailing list archive at Nabble.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