FreeBSD 7.0R on EeeBOX

2008-10-21 Thread Jyun-Yi Liou
hi list!

I am trying to install my favor FreeBSD on EeeBOX via CD-ROM
it's ok during boot, but sysinstall can't write discklabel in FreeBSD
Discklabel Editor

it said: Unable to find device node for /dev/ad0s1b in /dev! the creation of
filesystems will be aborted

I try to boot with ACPI disable, but it's no good.
How can I do for write discklabel in HDD?

Regards,
jyuny1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: crontab mails

2008-07-26 Thread Jyun-Yi Liou
Hi Yavuz,
It's easy to tell crontab stop sending mail to you by disable sendmail in
/etc/rc.conf

% echo sendmail_enable=\NO\
man rc.conf for more information :-)

or set the variable MAILTO  null on corntab
MAILTO=

Regards,
jyuny1

2008/7/26 Yavuz Maslak [EMAIL PROTECTED]

 Hello

 On freebsd7.0, my crontab sends many mails about its jobs.

 I want crontab not to send these mails

 How can I do that ?
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]

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


Re: optimal CPUTYPE / arch for Intel T5600 ?

2008-07-26 Thread Jyun-Yi Liou
Hi Rene,
for optimizationm, CPUTYPE is depends on what verison of gcc you use.
you can determine waht CPUTYPE you use by checking gcc's online manul
http://gcc.gnu.org/onlinedocs/

i.e.
http://gcc.gnu.org/onlinedocs/gcc-4.2.4/gcc/Optimize-Options.html#Optimize-Options

Regards,
jyuny1

2008/7/25 Rene Ladan [EMAIL PROTECTED]

 Hi,

 I have an Asus A6JE laptop which has an Intel T5600 CPU.  It is
 currently configured as i386
 with CPUTYPE=prescott.  But after reading wikipedia, I get the idea
 that I have slightly
 underconfigured my box, i.e. that a better configuration is possible.
 dmesg says (7.0-release):

 CPU: Intel(R) Core(TM)2 CPU T5600  @ 1.83GHz (1828.77-MHz 686-class
 CPU)
  Origin = GenuineIntel  Id = 0x6f6  Stepping = 6

 Features=0xbfebfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE
  Features2=0xe3bdSSE3,RSVD2,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM
  AMD Features=0x2010NX,LM
  AMD Features2=0x1LAHF
  Cores per package: 2
 real memory  = 2147287040 (2047 MB)
 avail memory = 2095947776 (1998 MB)
 ACPI APIC Table: AMIOEMAPIC 
 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
  cpu0 (BSP): APIC ID:  0
  cpu1 (AP): APIC ID:  1
 ioapic0 Version 2.0 irqs 0-23 on motherboard
 acpi0: _ASUS_ Notebook on motherboard
 acpi0: [ITHREAD]
 acpi0: Power Button (fixed)
 acpi0: reservation of 0, a (3) failed
 acpi0: reservation of 10, 7ff0 (3) failed
 Timecounter ACPI-fast frequency 3579545 Hz quality 1000
 acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
 acpi_ec0: Embedded Controller: GPE 0x1c port 0x62,0x66 on acpi0
 acpi_hpet0: High Precision Event Timer iomem 0xfed0-0xfed003ff on
 acpi0
 Timecounter HPET frequency 14318180 Hz quality 900
 cpu0: ACPI CPU on acpi0
 coretemp0: CPU On-Die Thermal Sensors on cpu0
 est0: Enhanced SpeedStep Frequency Control on cpu0
 est: CPU supports Enhanced Speedstep, but is not recognized.
 est: cpu_vendor GenuineIntel, msr 6130b2406000b24
 device_attach: est0 attach returned 6
 p4tcc0: CPU Frequency Thermal Control on cpu0
 cpu1: ACPI CPU on acpi0
 ACPI Warning (tbutils-0243): Incorrect checksum in table [SSDT] -  77,
 should be
  2C [20070320]
 coretemp1: CPU On-Die Thermal Sensors on cpu1
 est1: Enhanced SpeedStep Frequency Control on cpu1
 p4tcc1: CPU Frequency Thermal Control on cpu1

 Maybe some amd64 configuration is possible, since it the cpu has AMD
 features?

 Please cc me, I'm not subscribed.

 Regards,
 Rene
 --
 http://www.rene-ladan.nl/

 GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6
 (subkeys.pgp.net)
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]

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


Re: Input method doesn't work with QT applications. Anyone able to type Chinese into QT apps?

2008-06-07 Thread Jyun-Yi Liou
Hi Yuri,
First of all, You do not specify what shell you are using. TCSH or BASH?
Second, waht DE you using too?

for TCSH, it should be this in your ~/.xinitrc
setenv XMODIFIERS='@im=gcin'
setenv GTK_IM_MODULE=gcin
setenv QT_IM_MODULE=gcin

I guess you are using TCSH not BASH.
gcin can let you type chinese in GTK apps without set GTK_IM_MODULE

You can check the SHELL VARIABLE that is set or not after logged-in X.

Regards,
jyuny1

2008/6/7 Yuri [EMAIL PROTECTED]:

 When I am trying to type Chinese characters I can only do this from GTK
 applications.
 Input method doesn't work QT applications for me.

 I have the following in my .xinitrc:
 export XMODIFIERS='@im=gcin'
 export GTK_IM_MODULE=gcin
 export QT_IM_MODULE=gcin

 I have zh-gcin-1.4.0_1 installed and start it with 'gcin '.

 In GTK apps Alt-Space creates the prompt windows. And in any QT apps -- no
 such box is popping up.

 Yuri

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

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


Re: Input method doesn't work with QT applications. Anyone able to type Chinese into QT apps?

2008-06-07 Thread Jyun-Yi Liou
Hi Yuri,
try this below,

export LANG=zh_TW.UTF-8
export LC_CTYPE=zh_TW.UTF-8
export  LC_MESSAGES en_US.ISO8859-1
export  LC_TIME en_US.ISO8859-1

this may let your gcin working and keep your system speak in english

further more, you may want to read this doc
http://chinsan2.twbbs.org/zh-tut/

Regards,
jyuny1

2008/6/7 Yuri [EMAIL PROTECTED]:

 Hi Jyun-Yi,

 I am using bash.
 And XMODIFIERS, GTK_IM_MODULE and QT_IM_MODULE variables are all set to the
 values you wrote.
 But in QT applications the prompt window doesn't pop up as in GTK ones.

 I am not setting any of LANG/LC_ALL/LC_CTYPE to Chinese.
 This may be related to the problem.
 When I set all of those to zh_TW.UTF-8 gcin begins to pop up the prompt
 window from QT applications just like from GTK. But after selection the word
 doesn't appear 9in the editbox.
 But I don't want to use Chinese locale since this makes all applications
 speak Chinese. And I only want to be able to type Chinese words.

 Do you know how to achieve this?

 Yuri


 Jyun-Yi Liou wrote:

 Hi Yuri,
 First of all, You do not specify what shell you are using. TCSH or BASH?
 Second, waht DE you using too?

 for TCSH, it should be this in your ~/.xinitrc
 setenv XMODIFIERS='@im=gcin'
 setenv GTK_IM_MODULE=gcin
 setenv QT_IM_MODULE=gcin

 I guess you are using TCSH not BASH.
 gcin can let you type chinese in GTK apps without set GTK_IM_MODULE

 You can check the SHELL VARIABLE that is set or not after logged-in X.

 Regards,
 jyuny1



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


Re: amule crash

2008-06-06 Thread Jyun-Yi Liou
2008/6/7 Tsu-Fan Cheng [EMAIL PROTECTED]:

 Hi,
   my amule (freebsd 7.0/i386) crash regularly due to:


 pid 2032 (amule), uid 1001, was killed: out of swap space

  ^^
% df -h,
watch and see, your swap is out of space

bigger swap space or not down too much.

Regards,
jyuny1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


gnash leave a blank page when visit youtube

2008-06-02 Thread Jyun-Yi Liou
Hi list!

I've changed my browser's flash player form
www/linux-flashplugin7(out-of-date, and ports mark this as RESTRICTED D: )
to graphic/gnash a few hours ago
but gnash just leave me a blank page while I am visiting youtube

screen shot:
http://img144.imageshack.us/img144/6953/screenshot0206200820260bt8.jpg

and there is my about:plugins
http://img113.imageshack.us/img113/6189/screenshot0206200820280ey5.jpg

libgnashplugin.so was installed at /usr/local/lib/browser_plugins correctly

this is a part of my config.log (yes, I change graphic/gnash/Makefile)
 ./configure --with-boost-incl=/usr/local/include
--with-boost-lib=/usr/local/lib
--with-npapi-plugindir=/usr/local/lib/browser_plugins
--with-kde-pluginprefix=/usr/local --enable-jpeg --enable-png --enable-Xft \
   --enable-fontconfig --enable-plugins --enable-nsapi
--disable-kparts --disable-cygnal --enable-gui=gtk --enable-renderer=agg
--enable-media=ffmpeg --x-libraries=/usr/local/lib
--x-includes=/usr/local/include --prefix=/usr/local \
   --mandir=/usr/local/man --infodir=/usr/local/info/
--build=i386-portbld-freebsd7.0

I tried some different arguments but still not working on it.
Does anything I missed?

otherwise, I can play flash at youtue by this little script, scrpit is
copied from http://wiki.gnashdev.org/YouTube
% cat play_youtube
#! /bin/sh
url=$1
vars=$`wget --quiet -O - $url | grep -F watch_fullscreen | cut -d \? -f 2
| cut -d \ -f1`
echo $vars
gnash -vv -F 2 -P FlashVars=$vars http://tw.youtube.com/player2.swf

screen shot:
http://img231.imageshack.us/img231/6889/screenshot0206200820465iz9.jpg

so, this is not gnash's problem but firefox?
please, tell me how you do it, if someone happy with gnash and firefox :-)

ps. I found a bug report about blank flash page
https://savannah.gnu.org/bugs/?18822
  is it related?

Happy hacking,
jyuny1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gnash leave a blank page when visit youtube

2008-06-02 Thread Jyun-Yi Liou
Is there any way to avoid RESTRICTED and install www/linux-flashplugin7 ?
www/linux-flashplugin9 always freeze my firefox :-(

I miss the old days with www/linux-flashplugin7 D-:

btw, graphic/gnash seems pretty stable, but the integration with firefox is
poor in my case.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gnash leave a blank page when visit youtube

2008-06-02 Thread Jyun-Yi Liou
2008/6/2 Derek Graham [EMAIL PROTECTED]:

 Dunno i think if you edit the Makefile and comment out the restricted, it


I've tried to comment out the RESTRICTED, but the output:
===  linux-flashplugin-7.0r73 has known vulnerabilities:
= linux-flashplugin -- unspecified remote code execution vulnerability.
   Reference: 
http://www.FreeBSD.org/ports/portaudit/04c6187d-2d8f-11dd-98c9-00163e16.htmlhttp://www.freebsd.org/ports/portaudit/04c6187d-2d8f-11dd-98c9-00163e16.html

= Please update your ports tree and try again.
*** Error code 1

Stop in /usr/ports/www/linux-flashplugin7.
*** Error code 1

Stop in /usr/ports/www/linux-flashplugin7.

anything I can do further?


 might work, by the way good idea to CC the freebsd-questions@freebsd.org
 you might get more responses.

thanks for the notice :-)




 Sincerely,
 Derek A. Graham

 best regards,
jyuny1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gnash leave a blank page when visit youtube

2008-06-02 Thread Jyun-Yi Liou
2008/6/2 Yuri Pankov [EMAIL PROTECTED]:

 What is actual problem (error messages from `make`, please) with
 linux-flashplugin7?

the message I got:

===  linux-flashplugin-7.0r73 has known vulnerabilities:
= linux-flashplugin -- unspecified remote code execution vulnerability.
   Reference: 
http://www.FreeBSD.org/ports/portaudit/04c6187d-2d8f-11dd-98c9-00163e16.htmlhttp://www.freebsd.org/ports/portaudit/04c6187d-2d8f-11dd-98c9-00163e16.html

= Please update your ports tree and try again.
*** Error code 1

Stop in /usr/ports/www/linux-flashplugin7.
*** Error code 1

Stop in /usr/ports/www/linux-flashplugin7.

anything I can do further?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gnash leave a blank page when visit youtube

2008-06-02 Thread Jyun-Yi Liou
2008/6/2 Yuri Pankov [EMAIL PROTECTED]:

 If you are absolutely sure you want linux-flashplugin7 installed, despite
 security vulnerability, you can disable portaudit check (this message comes
 from portaudit) with -DDISABLE_VULNERABILITIES (it's documented in ports(7)
 manpage).

 HTH,
 Yuri


Thanks for the hint!
I should man 7 ports first :-)

best regards,
jyuny1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Flickr client

2008-06-02 Thread Jyun-Yi Liou
2008/6/3 Derek Graham [EMAIL PROTECTED]:

 I was curious is there a client that works in FreeBSD in which a flickr
 client
 that allows large bulk uploads to flickr? I am wanting to upload more then
 5
 at a time and tried jUploadr(alot of errors) and kflickr(wont build). Those
 two are only linux but any advice would be greatly appreciated.

 Thanks Derek
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]



Hi Derek,
I use pearch and give flicker as a key wok, the output I got below
net/p5-Net-FS-Flickr  A Perl interface for store and retrieve files on
Flickr
www/flickcurl C library for the Flickr API
www/p5-Flickr-API Perl interface to the Flickr API
www/p5-Flickr-Upload  Upload images to flickr.com
www/p5-Net-Flickr-API Base API class for Net::Flickr::* libraries
www/p5-Net-Flickr-Backup  OOP for backing up your Flickr photos locally
www/p5-Net-Flickr-RDF Describe Flickr photos as RDF

I think a little perl script will be helpful with www/p5-Flickr-Upload  :-D

HTH,
jyuny1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]