<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="/pages/css/rss.css" type="text/css"?>
<rss xmlns:ps="http://trailfire.com" version="2.0"><channel><title>"apache" by enjoylife</title><link>http://www.trailfire.com/enjoylife/trails/63041</link><category>enjoylife/trails</category><ttl>60</ttl><item><title>The Apache Tomcat Connector - Miscellaneous Documentation - FAQ</title><link>http://www.trailfire.com/enjoylife/marks/225850</link><description><![CDATA[<P>APXS is a Perl script that is created when you build the Apache web server from source. Chances are that if you are getting these errors and you obtained Apache as a binary distribution, that APXS is not configured correctly for your system. Your best bet is to get the Apache source from http://httpd.apache.org and build it yourself. Use the following for a basic build (read the Apache docs for other options):</P><P CLASS="screen"><DIV ALIGN="left"><TABLE BGCOLOR="#000000" BORDER="1" CELLPADDING="2" CELLSPACING="" WIDTH="80%"><TBODY><TR><TD ALIGN="left" BGCOLOR="#000000"><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">cd /usr/local/src</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">gzip -dc apache_1.3.19.tar.gz|tar xvf -</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">cd apache_1.3.19</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">./configure --prefix=/usr/local/apache \</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">--enable-module=most \</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">--enable-shared=max</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">make</B></NOBR><BR><NOBR><EM CLASS="screen">[user@host] ~ $</EM> <B CLASS="screen">make install</B></NOBR><BR></TD></TR></TBODY></TABLE></DIV><P>Note: The above steps assume that you downloaded the Apache source and placed it in your /usr/local/src directory.</P>]]></description><category>apache</category><author>enjoylife</author><pubDate>Wed, 02 Jul 2008 13:36:06 -0700</pubDate><guid isPermalink="false">trailfire:markId:225850</guid></item><item><title>apache2 does not start in cygwin</title><link>http://www.trailfire.com/enjoylife/marks/225888</link><description><![CDATA[<BR>I had the very same problem. This means that you<BR>don&#39;t have cygserver installed. Apache2 requires<BR>cygserver. See this thread on the Cygwin mailing<BR>list:<BR>http://www.cygwin.com/ml/cygwin-apps/2005-02/msg00085.html<BR><BR>There are a few steps to installing cygserver. First<BR>of all, try typing in:<BR>cygserver-config<BR><BR>If you get something like &quot;command not found&quot; then you<BR>need to run Cygwin setup, go to Admin and find<BR>cygserver. Install it.<BR><BR>Then go here:<BR>http://www.cygwin.com/cygwin-ug-net/using-cygserver.html<BR>and follow the directions which start at &quot;How to<BR>start Cygserver&quot;. They claim that installing<BR>cygserver as an NT service is optional, but that<BR>wasn&#39;t my experience. Be sure to make sure you have a<BR>Windows environment variable called &quot;CYGWIN&quot; and that<BR>it contains the word &quot;server&quot;.<BR><BR>Then you just run:<BR>cygserver-config<BR><BR>When it&#39;s finished, start the service :<BR>net start cygserver<BR><BR>Then you should be able to start Apache with:<BR>/usr/sbin/apachectl2 start<BR><BR><BR>Good luck!<BR><BR>-Ethan Herdrick<BR>www.herdrick.com<BR><BR>The service has been installed under LocalSystem account.<BR>To start it, call `net start cygserver&#39; or `cygrunsrv -S cygserver&#39;.<BR><BR>Further configuration options are available by editing the configuration<BR>file /etc/cygserver.conf.&nbsp; Please read the inline information in that<BR>file carefully. The best option for the start is to just leave it alone.<BR><BR>Please keep in mind, that a client application which wants to use<BR>the services provided by cygserver *must* have the environment variable<BR>CYGWIN set so that it contains the word &quot;server&quot;.&nbsp; So, if you don&#39;t<BR>need any other special CYGWIN setting, just set it to &quot;server&quot;.<BR><BR>It is advisable to add this setting to the Windows system environment.<BR><BR>Basic Cygserver configuration finished. Have fun!]]></description><category>apache</category><author>enjoylife</author><pubDate>Wed, 02 Jul 2008 17:47:49 -0700</pubDate><guid isPermalink="false">trailfire:markId:225888</guid></item><item><title>Apache - Application Server Integration</title><link>http://www.trailfire.com/enjoylife/marks/226145</link><description><![CDATA[<P STYLE="text-align: center; font-family: times new roman;" CLASS="MsoTitle"><SPAN STYLE="font-weight: bold;">Integrating Apache with Application Servers<BR></SPAN></P><P STYLE="text-align: center; font-family: times new roman;" CLASS="MsoTitle">S.Prasanna,<BR>sprasanna199@gmail.com</P>]]></description><category>apache</category><author>enjoylife</author><pubDate>Thu, 03 Jul 2008 18:27:39 -0700</pubDate><guid isPermalink="false">trailfire:markId:226145</guid></item><item><title>Using Apache with Cygwin</title><link>http://www.trailfire.com/enjoylife/marks/226148</link><description><![CDATA[<STRONG>Using apxs to create shared DLL modules</STRONG><P>To make the extending httpd with shared DLL modules easier, you can use <A HREF="programs/apxs.html">apxs</A>.</P><P>Make sure you have configured $CFG_LDFLAGS_SHLIB within apxs to include the --shared directive and the path to the shared code DLL cyghttpd.dll.</P><P>After performing make install you will probably have the following lines within your apxs:</P><PRE>  # apxs
  [...]
  my $CFG_LD_SHLIB      = q(dllwrap --export-all --output-def libhttpd.def --implib libhttpd.a --driver-name gcc);          # substituted via Makefile.tmpl
  my $CFG_LDFLAGS_SHLIB = q(-g); # substituted via Makefile.tmpl 
  my $CFG_LIBS_SHLIB    = q();        # substituted via Makefile.tmpl 
  [...]
</PRE>Change these to reflect the new compile options needed for shared DLL modules as follows:<PRE>  # apxs
  [...]
  my $CFG_LD_SHLIB      = q(gcc);          # substituted via Makefile.tmpl
  my $CFG_LDFLAGS_SHLIB = q(-g --shared); # substituted via Makefile.tmpl 
  my $CFG_LIBS_SHLIB    = q(<I>/path/to/cyghttpd.dll</I>);        # substituted via Makefile.tmpl 
  [...]
</PRE><P>Now you should be able to create a shared DLL module from a mod_foo.c source file with:</P><PRE>  $ apxs -c mod_foo.c -o mod_foo.dll
</PRE>Place the resulting DLL in Apache&#39;s libexec directory, so the dlopen() function within the compiled in mod_so.c module can find and load it at runtime.]]></description><category>apache</category><author>enjoylife</author><pubDate>Wed, 09 Jul 2008 11:59:02 -0700</pubDate><guid isPermalink="false">trailfire:markId:226148</guid></item><item><title>Learn how to configure Apache</title><link>http://www.trailfire.com/enjoylife/marks/226604</link><description><![CDATA[&nbsp;&nbsp;&nbsp;<BR><P><FONT CLASS="contentText">Apache is controlled by a series of configuration files: httpd.conf, access.conf. and srm.conf (there&#39;s actually also a mime.types file, but you have to deal with that only when you&#39;re adding or removing MIME types from your server, which shouldn&#39;t be too often). The files contain instructions, called <I>directives,</I> that tell Apache how to run. Several companies offer GUI-based <A HREF="http://www.rovis.com/warpaint/">Apache front-ends</A>, but it&#39;s easier to edit the configuration files by hand.</FONT></P><P><FONT CLASS="contentText">Remember to make back-up copies of all your Apache configuration files, in case one of the changes you make while experimenting renders the Web server inoperable.</FONT></P><P><FONT CLASS="contentText">Also, remember that configuration changes you make don&#39;t take effect until you restart Apache. If you&#39;ve configured Apache to run as an inetd server, then you don&#39;t need to worry about restarting, since inetd will do that for you.</FONT></P><P><FONT CLASS="contentText"><FONT CLASS="subhead1">Download the reference card</FONT></FONT></P><P><FONT CLASS="contentText">As with other open-source projects, Apache users share a wealth of information on the Web. Possibly the single most useful piece of Apache-related information--<WBR>apart from the code itself, of course--is a two-page guide created by Andrew Ford.</FONT></P><P><FONT CLASS="contentText">Called the <A HREF="http://www.refcards.com/">Apache Quick Reference Card</A>, it&#39;s a PDF file (also available in PostScript) generated from a database of Apache directives. There are a lot of directives, and Ford&#39;s card gives you a handy reference to them.</FONT></P><P><FONT CLASS="contentText">While this may not seem like a tip on how to run Apache, it will make your Apache configuration go much smoother because you will have the directives in an easy-to-access format.</FONT></P><P><FONT CLASS="contentText">One quick note--we found that the PDF page was a bit larger than the printable area of our printer (an HP LaserJet 8000 N). So we set the Acrobat reader to scale-to-fit and the pages printed just fine.<BR></FONT></P><P><FONT CLASS="contentText">http://articles.techrepublic.com.com/5100-22-5076696.html<BR></FONT></P>]]></description><category>apache</category><author>enjoylife</author><pubDate>Mon, 07 Jul 2008 12:00:43 -0700</pubDate><guid isPermalink="false">trailfire:markId:226604</guid></item><item><title>TechCrunch</title><link>http://www.trailfire.com/enjoylife/marks/226620</link><description><![CDATA[<P>If you want to build quickly and creatively, you need to set up an environment that encourages and facilitates that process. If you don’t have the following basics down, your team will be constantly battling annoying issues instead of getting on with building. You’ll need:</P><OL><LI>Good version control. I suggest <A HREF="http://git.or.cz/">Git<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A>.</LI><LI>An easy-to-use source and changeset browser. We use <A HREF="http://codebasehq.com/">Codebase<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A>.</LI><LI>Solid server infrastructure. Why not build on <A HREF="http://flexiscale.com">Flexiscale<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A>, <A HREF="http://www.mediatemple.net/webhosting/gs/">Grid-Service<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A>, <A HREF="http://www.mosso.com/">Mosso<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A> or <A HREF="http://www.amazon.com/ec2">EC2<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A> and let the big boys worry about uptime and server load?</LI><LI>A ‘one-click’ deployment system. This means that deploying the code from your repository should take just one click. If it’s any more complex than that, there is potential for complications and downtime. <A HREF="http://www.capify.org/">Capistrano<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A> is brilliant if you’re using Rails.</LI><LI>Printers, chalk boards and meeting space. People need the physical space to throw around ideas. We’ve painted an <A HREF="http://www.flickr.com/photos/carsonified/2627370803/">entire wall with blackboard paint<IMG SRC="http://i.ixnp.com/images/v3.37/t.gif" STYLE="border: 0pt none ; margin: 0pt ! important; padding: 1px 0pt 0pt; max-height: 2000px; max-width: 2000px; min-width: 0px; min-height: 0px; font-style: normal; font-weight: normal;" CLASS="snap_preview_icon" ID="snap_com_shot_link_icon"></A> so the team has room to sketch ideas.</LI><LI>Coffee, water, music and healthy snacks.</LI></OL>]]></description><category>apache</category><author>enjoylife</author><pubDate>Mon, 07 Jul 2008 12:59:46 -0700</pubDate><guid isPermalink="false">trailfire:markId:226620</guid></item><item><title>&amp;quot;ld unrecognized option &amp;#039;--as-needed&amp;#039;&amp;quot; - LinuxQuestions.org</title><link>http://www.trailfire.com/enjoylife/marks/226996</link><description><![CDATA[I worked around the problem by editing<BR>/usr/lib/gcc-lib///specs file<BR>to remove the --as-needed and --noas-needed switches,<BR>now everything works!<BR><BR>it&#39;s very strange that this problem occurs with the same exact version of gcc+binutils that don&#39;t have a problem on other platforms.]]></description><category>apache</category><author>enjoylife</author><pubDate>Wed, 09 Jul 2008 17:03:55 -0700</pubDate><guid isPermalink="false">trailfire:markId:226996</guid></item><item><title>A look at Apache modules | The Register</title><link>http://www.trailfire.com/enjoylife/marks/226998</link><description><![CDATA[<H3>A HelloWorld Module</H3><P>Apache:</P><P>1)build<BR></P><P>gcc -fpic -DSHARED_MODULE -I/usr/include/apr-0 -I/usr/include/httpd -c&nbsp; ./mod_helloworld.c<BR></P><P>ld -Bshareable -o mod_helloworld.so mod_helloworld.o</P><BR><P>2) install<BR></P><P>cp ./mod_helloworld.so /usr/lib/httpd/modules/<BR></P><P>chmod 755 /usr/lib/httpd/modules/mod_helloworld.so</P><BR><P><BR></P><P>vi&nbsp; /etc/httpd/conf/httpd.conf</P><P><BR></P><PRE>LoadModule helloworld_module modules/mod_helloworld.so<BR>&lt;Location /helloworld&gt;<BR>        SetHandler helloworld<BR>&lt;/Location&gt;<BR><BR>then <BR>apachectl restart<BR><BR>3) testing <BR>http://localhost/helloworld<BR>you will see :<BR>this is a sample paged developed by xxxx after numerious struglling!!!<BR><BR>for apache2 in ubuntu<BR><BR>gcc -fpic -DLINUX=2 -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -D_REENTRANT  -DSHARED_MODULE -I/usr/include/apache2 -I/usr/include/apr-1.0 -pthread -c  mod_helloworld.c<BR>ld -Bshareable -o mod_helloworld.so mod_helloworld.o<BR>if you need to link additional library ld -Bshareable -o mod_helloworld.so mod_helloworld.o -L. -lmyutils<BR><BR>sudo cp ./mod_helloworld.so /usr/lib/apache2/modules<BR>sudo chmod 644 /usr/lib/apache2/modules/mod_helloworld.so<BR><BR>then set up similar entries in /etc/apache2/<BR>modules_available<BR><BR>like:<BR>sudo cp ./status.load ./helloworld.load<BR>sudo cp ./status.conf ./helloworld.conf<BR><BR>sudo vim   ./helloworld.load<BR>LoadModule helloworld_module /usr/lib/apache2/modules/mod_helloworld.so<BR><BR>sudo vim   ./helloworld.conf<BR>&lt;IfModule mod_helloworld.c&gt;<BR>#<BR># Allow server status reports generated by mod_status,<BR># with the URL of http://servername/server-status<BR># Uncomment and change the &quot;.example.com&quot; to allow<BR># access from other hosts.<BR>#<BR>&lt;Location /helloworld&gt;<BR>    SetHandler helloworld<BR>#    Allow from .example.com<BR>&lt;/Location&gt;<BR><BR>&lt;/IfModule&gt;<BR><BR><BR>sudo ln -s ../mods-available/helloworld.conf ./helloworld.conf <BR>sudo ln -s ../mods-available/helloworld.load ./helloworld.load<BR><BR><BR><BR>sudo /usr/sbin/apache2ctl stop<BR>sudo /usr/sbin/apache2ctl start<BR></PRE>]]></description><category>apache</category><author>enjoylife</author><pubDate>Tue, 15 Jul 2008 17:16:28 -0700</pubDate><guid isPermalink="false">trailfire:markId:226998</guid></item><item><title>Introduction to C++ CGI - Processing Forms &amp;raquo; Guy Rutenberg</title><link>http://www.trailfire.com/enjoylife/marks/227163</link><description><![CDATA[<P>As I said the second and third steps are troublesome only when not done before. <A TITLE="getpost.h" HREF="/wp-content/uploads/2007/09/getpost.h">Here is</A> an implementation for those steps that I’ve written as a part of (yet unreleased) CGI library for C++. It implements functions that take the care of the first three steps and return to the user an STL map containing the form elements’ names in the key and their value in the map pair’s value. This functions allows to process forms in a similar way to processing forms in PHP using $_GET and $_POST.</P><P>Here is a simple example of processing a “get” form using the above <A TITLE="getpost.h" HREF="/wp-content/uploads/2007/09/getpost.h">getpost.h</A> header file.</P>]]></description><category>apache</category><author>enjoylife</author><pubDate>Thu, 10 Jul 2008 15:36:31 -0700</pubDate><guid isPermalink="false">trailfire:markId:227163</guid></item><item><title>Apache JServ Protocol Version 1.1 (AJPv11) - September 9, 1998 - Standard</title><link>http://www.trailfire.com/enjoylife/marks/228750</link><description><![CDATA[<H1 ALIGN="center">Apache JServ Protocol Version 1.1 (AJPv1.1)</H1><P ALIGN="center">Standard - September 9, 1998</P><P ALIGN="center">describes the protocol used to communicate between a web server module<BR>and the Apache JServ servlet engine over a TCP socket.</P><H3>Introduction</H3><BLOCKQUOTE><P>The authentication scheme used for AJPv1.0 (used by Apache JServ 0.9.xx) was considered too simple and worked only on <A HREF="../install/index.html#local">local</A> environments. For this reason, while the request/response phase of the protocol were kept unchanged, authentication handshake was ported from higher versions of the protocol (proposed as a future extension) and implemented here for security reasons.</P><P>This will also provide more feedback to developers for newer revisions of the AJP protocol.</P></BLOCKQUOTE>]]></description><category>apache</category><author>enjoylife</author><pubDate>Sat, 19 Jul 2008 18:04:33 -0700</pubDate><guid isPermalink="false">trailfire:markId:228750</guid></item><item><title>HOW-TO Write a CGI Program in C/C++</title><link>http://www.trailfire.com/enjoylife/marks/228771</link><description><![CDATA[<B>Cookies</B><BR>Cookies are a method to store persistant data with the client. The system must be suppored by both the client (and enabled; there is much hype over a few relatively minor security considerations about cookies) and the web server (most do). Much information on exactly how this works with different browsers etc... can be found on the Internet. For the purposes of this brief document you only need to know the following:<BR>Cookies are set with a <I>header</I> (before the Content) of the format:<BR><BR><I>Set-Cookie: name=value; expires=date; path=path; domain=domain; secure</I><BR><BR>Only the name=value bit is <I>required</I> and can contain anything other than semi-colons or whitespace. Expires is obvious, path the path on the server the cookie relates to (is provided to) i.e. /cgi-bin/ and domain is the domain the cookie relates to (is provided to) i.e. www.company.com or .company.com to provide it to www and www2.company.com).<BR><BR>Cookies are read via the HTTP_COOKIE environment variable and come in one long string of the format:<BR><BR><I>var1=value; var2=value; var3=value</I><BR><BR>If a cookie is set more than once (this can happen if, for example, the same cookie name is set for both .company.com and www.company.com - both are seen as seperate cookies by the browser but both are valid and provided to a request to www.company.com) it will appear twice (or however many times) in the list. By default (Firefox and IE with Apache) the cookie is valid for the FQDN of the webserver, for the directory the script that set it came from and for the duration of this session (usually until browser closes).]]></description><category>apache</category><author>enjoylife</author><pubDate>Sat, 19 Jul 2008 23:25:54 -0700</pubDate><guid isPermalink="false">trailfire:markId:228771</guid></item><item><title>Ubuntu 7.10 修改网卡物理地址 at catch the digital flow｜北极冰仔部落格</title><link>http://www.trailfire.com/enjoylife/marks/228879</link><description></description><category>apache</category><author>enjoylife</author><pubDate>Sun, 20 Jul 2008 11:46:54 -0700</pubDate><guid isPermalink="false">trailfire:markId:228879</guid></item><item><title>使用 Mac4Lin 打造 Leopard 风格的 Ubuntu at catch the digital flow｜北极冰仔部落格</title><link>http://www.trailfire.com/enjoylife/marks/228888</link><description></description><category>apache</category><author>enjoylife</author><pubDate>Sun, 20 Jul 2008 11:58:04 -0700</pubDate><guid isPermalink="false">trailfire:markId:228888</guid></item><item><title>湾区各月出游指南 - 未名空间(mitbbs.com)</title><link>http://www.trailfire.com/enjoylife/marks/449803</link><description><![CDATA[标 题: 湾区各月出游指南<BR>发信站: BBS 未名空间站 (Mon Aug 24 00:34:07 2009, 美东)<BR><BR>湾区各月出游指南 by qcc<BR><BR>看了z00同学的yosemite for dummy，深受启发。我也是个爱四处游荡的人，在湾区8年<BR>，逛过的地方也不少。经常看到版上有人问湾区周围有什么地方可以去玩，我也想把这<BR>么多年走过的地方和大家分享一下。湾区乃至北加州周围有山有海，有森林，有湖泊，<BR>地形起伏变化，风景极具多样性，全年都可以找到游玩的好地方。但是，很多地方有季<BR>节性。所谓在正确的时间，去正确的地方，如果碰巧遇到正确的人，岂不美哉？<BR><BR>下面，就把我老喜欢的地方按月份列一列。我们的口号是：全湾区爱玩的人，联合起来！<BR><BR>一月，是滑雪的高峰季节。Kirkwood是WSN们的最爱， 每到周末，就成群结队carpool<BR>而去，the wall 上呼啸而下的不是雪板，是寂寞。已婚有孩的爱走80去northstar，已<BR>婚无孩的couple喜欢去heavenly，白天滑雪，晚上还可以去赌场消磨。<BR><BR>二月，喜欢滑雪的，还在继续滑。有心人已经开始注意到季节的变换了。湾区春来早，<BR>有些地方已经可以看到野花的踪迹。但是，如果要看野花，二月份应该去南加州。如果<BR>雨水好，death valley, anza borrego park, antelope valley都会有满山遍野的野花<BR>，十分壮观。特别是antelop valley，是加州著名的州花 – 罂粟花的保留地。<BR><BR>三月，赏花季节进入高潮。我特别喜欢这几个地方，一个是fresno 的blossom trail，<BR>各种果树都在此时开花，可谓繁花似锦。还有woodside的filoli garden，以郁金香闻<BR>名。Napa valley的mustard festival也在此时。如果不想开车出远门，湾区的Mt<BR>Diablo, Point Reyes, Henry Coe都是看花的好地方。想看油菜花，东湾coyote hill<BR>是个不错的地方。另外，三月还是出海看鲸鱼的月份，不过本人晕船，从没去过。<BR><BR>四月，只剩下死忠的滑雪男还会起早贪黑往lake tahoe跑了。前半个月，大部分人在焦<BR>头烂额的忙于保税，似乎都忘了要出门玩了。的确，四月是个比较尴尬的月份，<BR>highlight确实不多。且慢！别忘了湾区附近无数的瑰宝。四月是个Hiking的好季节，<BR>这时候，雨季基本结束，热天还未到来，正是四处踏青的好时光。推荐的地方有，big<BR>basin, point reyes，sunol, pinnacle, angel island，big sur，还有中半岛一线的<BR>众多公园。这时候，山中泉水淙淙，林茂叶盛，爱玩的朋友们正好在hiking 中相互熟<BR>悉，为即将开始的summer旅行寻找旅伴。<BR><BR>五月，yeah! 大家第一个想到的就是yosemite，这时候，山路上的积雪化的查不多了，<BR>而山中的瀑布则是最壮观的时候，所以五月份的每个周末，valley里面总是people<BR>mountain, people sea. 不过yosemite的landmark – half dome上的缆绳一般要到<BR>memorial weekend 前后装上去，所以，喜欢challenge的朋友要等一等。另外，我每年<BR>五月一定会去的一个活动是三藩的baytobreakers，这个是一个7.5mile的长跑活动，横<BR>穿三藩市，每年都有五六万人参加，已有百年历史。在这里能看到传说已久的裸奔。另<BR>外，如果有计划穿越大峡谷的朋友，五月是你最后的机会了，之后，那里就是大火盆了。<BR><BR>六月，summer finally comes。爬half dome 的最好季节，yosemite依旧是出门的首选<BR>。夏天到了，camping的季节也到了。加州是camping 的天堂，夏天基本不会有雷雨，<BR>由于干，蚊子也很少。哦对了，六月其实是爬加州北边mt shasta的最好季节。因为这<BR>个时候，storm的概率减少，而山上的积雪还未融化，不会有rock falling的危险。Mt<BR>shasta有一万四千多英尺高，个人感觉，一般体力稍好，没有高山反应，会基本的<BR>climbing技巧，都应该能爬上去。六月还是rafting的好时候，各个河流流量充沛，<BR>american river, cache creek, russion river都是大家常去的地方。<BR><BR>七月，可去的地方实在太多了。我每年七月都要计划一个long trip。一条路线是加州<BR>北边的redwood park以及oregon的crater lake. Crater lake海拔有7千尺，太早去，<BR>路可能没开。Lassen volcanic national park我也在july 4th去过。还有sequoia/<BR>kings canyon，都是七月出游的理想目的地。当然，加州以外，黄石，大提顿，冰川是<BR>这个时候旅行的经典路线。如果去阿拉斯加，七月也不错。<BR><BR>八月，基本上，七月份能去的地方，八月份都能去。不过，我每年八月份的时候，都会<BR>去一个地方，就是lake tahoe。八月的lake tahoe，湖水经过一个夏天的烘晒，已经不<BR>是那么冰冷了。你既可以在湖中畅游，也可以租一艘kayak，轻舟荡漾，湖光山色，美<BR>不胜收。另外，加州北边的shasta lake, whiskeytown lake都是消暑的好去处。湾区<BR>周围的话, 东湾livermore的lake del valle是个消暑休闲的好地方。如果湾区出现高<BR>温天气的话，去santa cruz, monterey 的路上就会堵满车。<BR><BR>九月，labor day在美国的大多数地方，是夏天结束的标志。实际上在湾区，整个九月<BR>基本上还可以算作夏天。Again, 对喜欢爬山的朋友，labor day weekend是挑战Mt<BR>Whitney这个美国大陆的最高峰的好时机。和mt Shasta不同，爬mt whitney 基本还是<BR>走hiking trail, 九月的时候，山上的积雪都已融化 ，而storm season 尚未到来，正<BR>好爬 whitney。不过，要记住，爬山的permit二月份就要开始申请。<BR><BR>十月，夏天的出游高潮告一段落。然而，爱玩的人是永远不会闲着的。夏去秋来，正是<BR>赏秋叶的时光。加州以常青树居多，秋叶自然不能和东岸的满山遍野相比，倒也别有特<BR>色。提到秋叶，不能不提eastern sierra。这里山体陡峭，气势宏伟，和西边的缓缓上<BR>升的山脉大相径庭。Mammoth lake, june lake, bishop附近都有不错的秋色。其他大<BR>家常去赏叶的地方有lake tahoe，hope valley, plumas county等等。湾区附近，<BR>henry coe尚可一看。不过，只要留心，在湾区开车时，路边也经常能看到成片的秋叶。<BR><BR>十一月，十一月份是holiday season 的开始。湾区的第一场雨到来，气温陡降。按照<BR>我候鸟一样的行动规律，一般是往南行。每年的十一月，或者去LA/SD探亲访友，或者<BR>远行至arizona, utah一带的national parks。犹他和arizona接境处，有一个区域，称<BR>作grand circle,包括大峡谷，zion, bryce canyon, arches, canyon land, capitol<BR>reef, monument valley等国家公园和纪念碑。这一带是美国西部风景的精华。<BR><BR>十二月，满街都是”jingle bell, jingle bell”的音乐，是一个温馨的月份。或者说<BR>，十二月份是团聚的日子，而不是出门的日子。但是对于我们幸苦的硅工而言，年底通<BR>常有难得的长假，所以一定要利用。这个时间段我去过florida, Hawaii, las vegas,<BR>LA/SD等地。十二月份也是滑雪季节的开始，我来美国最开心的时光就是和朋友们在<BR>lake tahoe 的ski party中度过的。<BR>]]></description><category>apache</category><author>enjoylife</author><pubDate>Sun, 23 Aug 2009 23:24:50 -0700</pubDate><guid isPermalink="false">trailfire:markId:449803</guid></item></channel></rss>
