<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>四维映像</title><link>http://www.i4wei.com</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/i4wei" /><description>The more a man learns, the more he sees his ignorance.</description><language>en</language><lastBuildDate>Sun, 18 Mar 2012 21:13:14 PDT</lastBuildDate><generator>http://wordpress.org/?v=3.3.1</generator><sy:updatePeriod xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">hourly</sy:updatePeriod><sy:updateFrequency xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">1</sy:updateFrequency><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/i4wei" /><feedburner:info uri="i4wei" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>i4wei</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Setup Static IP Address on Solaris 11</title><link>http://feedproxy.google.com/~r/i4wei/~3/cVfKwqyVpjg/1905</link><category>实用技巧</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Sun, 18 Mar 2012 21:13:14 PDT</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1905</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>After install Solaris 11 there is a service called Network Auto Magic (NWAM) by default, which simplifies the process significantly. NWAM is really very much the same as Network Manger, it can provide location based networking profiles and manage multiple types of interfaces (wireless and wired) seamlessly, although it may not be the best for a server configuration. We need to disable it before setup the IP address.</p>
<p><strong>Disable Network Auto Magic</strong></p>
<p>For Solaris 11, instead of disabling network/physical:nwam and enabling network/physical:default we control NWAM by setting the ncp mode to DefaultFixed</p>
<p># netadm enable -p ncp DefaultFixed</p>
<p>If you wanted to re-enable NWAM then we can set the ncp mode back to Automatic</p>
<p># netadm enable -p ncp Automatic</p>
<p>Once we have disabled NWAM we will lose all network connectivity and configurations.</p>
<p><strong>View the Datalink Devices</strong></p>
<p>Solaris 11 devices have many layers to their configuration, which makes advanced configurations much simpler however does complicate basic configurations. Basically the kernel is aware of the physical hardware and we can see this visibility with the first command.</p>
<p># dladm show-phys</p>
<p>LINK         MEDIA                STATE      SPEED  DUPLEX    DEVICE</p>
<p>bge0         Ethernet             unknown    1000   full      bge0</p>
<p>The second command gives us the ability to see the physical interface linked to a logical interface.  After disabling NWAM you will NOT have a logical interface linked to your physical device (in my case bge0) because of this you will see that the state of the data-link device is “unknown”.  Also it is important to note that the device names are based off of vendor bge = broadcom and they are incremented based on the number of devices in the machine.</p>
<p># dladm show-link</p>
<p>LINK        CLASS     MTU    STATE    BRIDGE     OVER</p>
<p>bge0        phys      1500   unknown  &#8211;         &#8211;</p>
<p>Also before we move on we will just take a look at our existing logical interfaces, the only one you should have after disabling NWAM is lo0 which is your loopback interface.</p>
<p># ipadm show-if</p>
<p>IFNAME     STATE    CURRENT      PERSISTENT</p>
<p>lo0        ok       -m-v&#8212;&#8212;46 &#8212;</p>
<p><strong>Create and Configure a Logical Interface</strong></p>
<p>So the first step is creating a logical interface, then we can apply an IP configuration against it.  This will create a link from the logical interface to the physical interface, and will change the state to “up” from “unknown” that we saw before.</p>
<p># ipadm create-ip bge0</p>
<p># dladm show-link</p>
<p>LINK        CLASS     MTU    STATE    BRIDGE     OVER</p>
<p>bge0        phys      1500   up       &#8211;         &#8211;</p>
<p># ipadm show-if</p>
<p>IFNAME     STATE    CURRENT      PERSISTENT</p>
<p>lo0        ok       -m-v&#8212;&#8212;46 &#8212;</p>
<p>bge0       down     bm&#8212;&#8212;&#8211;46 -46</p>
<p>Now above we have successfully created the logical interface and we can now apply an IP configuration to it.</p>
<p>Tto create a static IP configuration on the logical interface.</p>
<p># ipadm create-addr -T static -a 192.168.100.200/24 bge0/v4</p>
<p># ipadm show-addr</p>
<p>ADDROBJ           TYPE     STATE        ADDR</p>
<p>lo0/v4            static   ok           127.0.0.1/8</p>
<p>bge0/v4           static   ok           192.168.100.200/24</p>
<p>lo0/v6            static   ok           ::1/128</p>
<p>-T option defines the type of configuration static and dhcp are the most common options,</p>
<p>-a is for the address on a static configuration and you will notice that we are not using the logical interface name (bge0), but instead a variation (bge0/v4).  This represents the version of the IP protocol the configuration is using.  So you can have a bge0/v6 and a bge0/v4.</p>
<p>Alright so you have successfully configured your network interfaces, however NWAM was doing more than just this, so you might not have full network connectivity yet.</p>
<p><strong>Verify Full Network Configuration and Connectivity</strong></p>
<p>Additionally we need to verify routing in order to be confident in our configuration.</p>
<p># netstat -r</p>
<p>Routing Table: IPv4</p>
<p>Destination           Gateway           Flags  Ref     Use     Interface</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8211; &#8212;&#8211; &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;</p>
<p>solaris              solaris              UH        2          0 lo0</p>
<p>192.168.100.0        192.168.100.200      U         3          1 bge0</p>
<p>&nbsp;</p>
<p>Routing Table: IPv6</p>
<p>Destination/Mask            Gateway                   Flags Ref   Use    If</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8211; &#8212; &#8212;&#8212;- &#8212;&#8211;</p>
<p>solaris                     solaris                     UH      2       4 lo0</p>
<p>Above will display the current routing table (which does not have a default route), ensure your default route is defined and correct.  If you need to create it use the below command.</p>
<p># route -p add default 192.168.100.1</p>
<p># netstat -r</p>
<p>Routing Table: IPv4</p>
<p>Destination           Gateway           Flags  Ref     Use     Interface</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8211; &#8212;&#8211; &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;</p>
<p>default             192.168.100.1  UG        2      10466</p>
<p>solaris              solaris              UH        2         12 lo0</p>
<p>192.168.100.0        192.168.100.200      U         6       1810 bge0</p>
<p>&nbsp;</p>
<p>Routing Table: IPv6</p>
<p>Destination/Mask            Gateway                   Flags Ref   Use    If</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8211; &#8212; &#8212;&#8212;- &#8212;&#8211;</p>
<p>solaris                     solaris                     UH      2     156 lo0</p>
<p>&nbsp;</p>
<p>At this point you should have full network connectivity without using NWAM.  So now just reboot to ensure that your settings persist after a reboot.</p>
<p>&nbsp;</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ecwGW4-C8N5LACoVjv9p7odcskY/0/da"><img src="http://feedads.g.doubleclick.net/~a/ecwGW4-C8N5LACoVjv9p7odcskY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ecwGW4-C8N5LACoVjv9p7odcskY/1/da"><img src="http://feedads.g.doubleclick.net/~a/ecwGW4-C8N5LACoVjv9p7odcskY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/cVfKwqyVpjg" height="1" width="1"/>]]></content:encoded><description>After install Solaris 11 there is a service called Network Auto Magic (NWAM) by default, which simplifies the process significantly....</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1905/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1905</feedburner:origLink></item><item><title>FreeBSD SSH远程登录方式更改</title><link>http://feedproxy.google.com/~r/i4wei/~3/BUD6edUZIUM/1902</link><category>实用技巧</category><category>FreeBSD</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Thu, 16 Feb 2012 19:01:59 PST</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1902</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>从远程用 SSH 登录 FreeBSD 的时候，一直提示 Using keyboard-interactive authentication，即键盘交互认证模式，而不是传统的 password 模式。FreeBSD 5.3 起，默认sshd 的认证方式就是这个。<br />
要更改登录方式只要做如下操作：<br />
修改配置文件，把 /etc/ssh/sshd_config 中的 PasswordAuthentication 选项取消注释，并改成 yes 就可以了。</p>
<p>另外，如果想让 root 也能通过 SSH 直接登录，同样编辑 /etc/ssh/sshd_config 文件，去掉注释 PermitRootLogin yes 就可以用 root 登陆了。</p>
<p>更改完配置文件后，记得运行下面的命令重启sshd服务。<br />
/etc/rc.d/sshd restart</p>
<p>Tips： /etc/ssh/下有两个文件非常相似 ssh_config 和 sshd_config 。由于我经常使用TAB的自动完成功能，导致我没有仔细看清楚，修改错配置文件。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/0DHQwxK6r45oNQgtSzCcwhQm4K4/0/da"><img src="http://feedads.g.doubleclick.net/~a/0DHQwxK6r45oNQgtSzCcwhQm4K4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0DHQwxK6r45oNQgtSzCcwhQm4K4/1/da"><img src="http://feedads.g.doubleclick.net/~a/0DHQwxK6r45oNQgtSzCcwhQm4K4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/BUD6edUZIUM" height="1" width="1"/>]]></content:encoded><description>从远程用 SSH 登录 FreeBSD 的时候，一直提示 Using keyboard-interactive authentication，即键盘交互认证模式，而不是传统的 password 模式。FreeBSD 5.3 起，默认sshd 的认证方式就是这个。 要更改登录方式只要做如下操作： 修改配置文件，把 /etc/ssh/sshd_config 中的 PasswordAuthentication 选项取消注释，并改成 yes...</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1902/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1902</feedburner:origLink></item><item><title>Can’t Take My Eyes Off You [MP3]</title><link>http://feedproxy.google.com/~r/i4wei/~3/SRsXaDKWNMA/1887</link><category>娱乐影音</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Thu, 09 Feb 2012 19:40:23 PST</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1887</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p style="text-align: center;">

<div  id="cssa9178b2406c27daccf4c0ad4f3ff9165" >
    <p>Here is the Music Player. You need to installl flash player to show this cool thing!</p>
</div>
<script type="text/javascript">

var flashvars = {
  config: "http%3A%2F%2Fwww.i4wei.com%2Fwp-content%2Ffmp-jw-files%2Fconfigs%2Ffmp_jw_widget_config.xml?1197158651",
  file  : "http%3A%2F%2Fwww.i4wei.com%2Fwp-content%2Fuploads%2F2012%2F02%2FCant-Take-My-Eyes-Off-You.mp3"
};
var params = {
  wmode             : "transparent",
  quality           : "high",
  allowFullScreen   : "true",
  allowScriptAccess : "true"
};
var attributes = {};

swfobject.embedSWF("http://www.i4wei.com/wp-content/plugins/flash-mp3-player/player/player.swf", "cssa9178b2406c27daccf4c0ad4f3ff9165", "177", "80", "9", "expressInstall.swf", flashvars, params, attributes);

</script>

</p>

<p><a href="http://feedads.g.doubleclick.net/~a/OxQB_Drietm719-NKmSQ3VbJUVk/0/da"><img src="http://feedads.g.doubleclick.net/~a/OxQB_Drietm719-NKmSQ3VbJUVk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/OxQB_Drietm719-NKmSQ3VbJUVk/1/da"><img src="http://feedads.g.doubleclick.net/~a/OxQB_Drietm719-NKmSQ3VbJUVk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/SRsXaDKWNMA" height="1" width="1"/>]]></content:encoded><description></description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1887/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1887</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/i4wei/~5/31LN8hTiM_0/Cant-Take-My-Eyes-Off-You.mp3" length="6086773" type="audio/mpeg" /><feedburner:origEnclosureLink>http://www.i4wei.com/wp-content/uploads/2012/02/Cant-Take-My-Eyes-Off-You.mp3</feedburner:origEnclosureLink></item><item><title>摄影的自省 为什么你要拍这张照片</title><link>http://feedproxy.google.com/~r/i4wei/~3/xL14CUYsLzQ/1879</link><category>摄影天地</category><category>Photography</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Thu, 09 Feb 2012 17:13:07 PST</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1879</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>来自摄影师Peter West Carey的一个问题：拍照的时候，到底你在想什么？他拍摄已经超过20年，拍过无数的照片，摄影近乎一种反射动作。但对他而言，仍然有一关键问题，会在他按快门之前出现：为什么我要拍这张照片？</p>
<p>的确，如果我们要拍一张照片时，特别是希望提升摄影水平，这个问题会非常有用。作者分析了以下一些可能的答案，不是论对错，而是一种思考方式。</p>
<p><span id="more-1879"></span></p>
<p><strong>1. 因为漂亮</strong></p>
<p>这是非常普遍的答案。例如看见漂亮的风景，就会想拍摄下来，然后保存，或是上传到网上分享。问题是漂亮的风景并不等于漂亮的照片，原因很简单，环境的光暗对比可能过强，又或是美丽的夕阳却有些树木遮挡干扰，我们的脑部会奇妙地修改、调整、改变焦点，但相机却不会，即使有HDR，但照片上的杂物，它却不懂得过滤。</p>
<p>因此，仅仅因为漂亮并不足以构成拍摄的理由，漂亮的风景，从不等于漂亮的照片。看一看我们自己的电脑，不正是收藏了大量当时觉得漂亮，拍出来却很乏味的照片吗？</p>
<p><strong>2. 因为有感觉</strong></p>
<p>这个大概是拍照的好理由。不论我们感受到任何情绪，如果一个情境能牵动到你，那么我们大可以尝试去拍摄下来，然后透过电脑屏幕去传达，让照片的观众也有可能接收得到，这可以是一张好照片。</p>
<p><strong>3. 因为有故事</strong></p>
<p>这是很多很多摄影师想得到的照片。当一个世界的故事、生活、动作，压缩在一张照片里的时候，当一张照片能够说出一个丰富故事的时候，这是必须要拍下来的作品。请多寻找这些机会，尤其是旅行时。</p>
<p><strong>4. 因为有指导性</strong></p>
<p>一张照片，可以胜过千言万语。不用理会什么三分法、黄金比例，又或曝光要完全正确之类，如果一张照片能够教会人学会一件事，就拍摄它吧。</p>
<p><strong>5. 因为我想记住这个时刻</strong></p>
<p>可能是海滩上的一个夕阳，又或是小店里的一杯寂寞的咖啡。我们都在网上看过这些朋友的照片，说实在，很闷，这些照片都很闷。</p>
<p>不过，这不代表我们不应该拍摄，但只要紧记这些照片是你的私人回忆，不要强逼你的朋友看这些照片，就让它静静地陪着你，贴在你私人的办公桌前。因为别人并没有共享你的回忆与感受，除了你自己，别人并不懂欣赏，如果你不分享，只好好地保存，这作品的价值会更高。</p>
<p><strong>总结</strong></p>
<p>拍照的理由或许还有很多，但这里并不是说因为漂亮所以拍照是肤浅的，而是这种思考有助我们去改善自己的摄影触觉与技巧，更精于仔细拍出好的作品，而不仅仅因为漂亮就按快门。最后，摄影师总会有种直觉驱使我们去拍照，请不要忽视。</p>

<p><a href="http://feedads.g.doubleclick.net/~a/TjibqPWRCuV4pQH312_E9-9aQww/0/da"><img src="http://feedads.g.doubleclick.net/~a/TjibqPWRCuV4pQH312_E9-9aQww/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TjibqPWRCuV4pQH312_E9-9aQww/1/da"><img src="http://feedads.g.doubleclick.net/~a/TjibqPWRCuV4pQH312_E9-9aQww/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/xL14CUYsLzQ" height="1" width="1"/>]]></content:encoded><description>来自摄影师Peter West Carey的一个问题：拍照的时候，到底你在想什么？他拍摄已经超过20年，拍过无数的照片，摄影近乎一种反射动作。但对他而言，仍然有一关键问题，会在他按快门之前出现：为什么我要拍这张照片？ 的确，如果我们要拍一张照片时，特别是希望提升摄影水平，这个问题会非常有用。作者分析了以下一些可能的答案，不是论对错，而是一种思考方式。 1. 因为漂亮 这是非常普遍的答案。例如看见漂亮的风景，就会想拍摄下来，然后保存，或是上传到网上分享。问题是漂亮的风景并不等于漂亮的照片，原因很简单，环境的光暗对比可能过强，又或是美丽的夕阳却有些树木遮挡干扰，我们的脑部会奇妙地修改、调整、改变焦点，但相机却不会，即使有HDR，但照片上的杂物，它却不懂得过滤。 因此，仅仅因为漂亮并不足以构成拍摄的理由，漂亮的风景，从不等于漂亮的照片。看一看我们自己的电脑，不正是收藏了大量当时觉得漂亮，拍出来却很乏味的照片吗？ 2. 因为有感觉 这个大概是拍照的好理由。不论我们感受到任何情绪，如果一个情境能牵动到你，那么我们大可以尝试去拍摄下来，然后透过电脑屏幕去传达，让照片的观众也有可能接收得到，这可以是一张好照片。 3. 因为有故事 这是很多很多摄影师想得到的照片。当一个世界的故事、生活、动作，压缩在一张照片里的时候，当一张照片能够说出一个丰富故事的时候，这是必须要拍下来的作品。请多寻找这些机会，尤其是旅行时。 4. 因为有指导性 一张照片，可以胜过千言万语。不用理会什么三分法、黄金比例，又或曝光要完全正确之类，如果一张照片能够教会人学会一件事，就拍摄它吧。 5. 因为我想记住这个时刻 可能是海滩上的一个夕阳，又或是小店里的一杯寂寞的咖啡。我们都在网上看过这些朋友的照片，说实在，很闷，这些照片都很闷。...</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1879/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1879</feedburner:origLink></item><item><title>台球瞄准详解</title><link>http://feedproxy.google.com/~r/i4wei/~3/KacLbtUukSo/1875</link><category>桌球基地</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Thu, 09 Feb 2012 05:26:53 PST</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1875</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><a href="http://www.i4wei.com/wp-content/uploads/2012/02/snooker-f.jpg"><img class="aligncenter size-full wp-image-1876" title="snooker-f" src="http://www.i4wei.com/wp-content/uploads/2012/02/snooker-f.jpg" alt="" width="440" height="5557" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/eFCXNbuZ5yO3SnoquWWgveuyd4U/0/da"><img src="http://feedads.g.doubleclick.net/~a/eFCXNbuZ5yO3SnoquWWgveuyd4U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eFCXNbuZ5yO3SnoquWWgveuyd4U/1/da"><img src="http://feedads.g.doubleclick.net/~a/eFCXNbuZ5yO3SnoquWWgveuyd4U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/KacLbtUukSo" height="1" width="1"/>]]></content:encoded><description></description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1875/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1875</feedburner:origLink></item><item><title>Generate a zone in Solaris 10 system</title><link>http://feedproxy.google.com/~r/i4wei/~3/eGxtuLwGiFQ/1855</link><category>实用技巧</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Thu, 09 Feb 2012 00:13:27 PST</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1855</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>&nbsp;</p>
<p><strong>To view a list and status of currently installed zones:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
# zoneadm list -vi</p>
<p>ID NAME STATUS PATH<br />
0 global running /</p>
<p><strong>To create a new zone:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
# mkdir /export0/home/myzone<br />
# chmod 700 /export0/home/myzone<br />
# zonecfg -z myzone<br />
myzone: No such zone configured<br />
Use &#8216;create&#8217; to begin configuring a new zone.<br />
zonecfg:myzone&gt; create -b<br />
zonecfg:myzone&gt; set zonepath=/export0/home/myzone<br />
zonecfg:myzone&gt; set autoboot=true<br />
zonecfg:myzone&gt; add net<br />
zonecfg:myzone:net&gt; set address=X.X.X.X/X<br />
zonecfg:myzone:net&gt; set physical=igb0<br />
zonecfg:myzone:net&gt; set defrouter=X.X.X.X<br />
zonecfg:myzone:net&gt; end<br />
zonecfg:myzone&gt; verify<br />
zonecfg:myzone&gt; commit<br />
zonecfg:myzone&gt; exit</p>
<p># zoneadm -z myzone verify<br />
# zoneadm -z myzone install</p>
<p>A ZFS file system has been created for this zone.<br />
Preparing to install zone &lt;myzone&gt;.<br />
Creating list of files to copy from the global zone.<br />
Copying &lt;226649&gt; files to the zone.<br />
Initializing zone product registry.<br />
Determining zone package initialization order.<br />
Preparing to initialize &lt;1888&gt; packages on the zone.<br />
Initialized &lt;1888&gt; packages on zone.<br />
Zone &lt;myzone&gt; is initialized.<br />
The file &lt;/export0/home/myzone/root/var/sadm/system/logs/install_log&gt; contains a log of the zone installation.</p>
<p># zoneadm -z myzone ready<br />
# zoneadm -z myzone boot<br />
# zfs set quota=100G zpool/export0/home/myzone<br />
# zlogin -C myzone<br />
[Connected to zone 'myzone' console]</p>
<p><em>use &#8216;~.&#8217; to escape the console session</em></p>
<p><strong>To Delete a Zone Permanently:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
# zoneadm -z myzone halt<br />
# zoneadm -z myzone uninstall<br />
# zonecfg -z myzone delete</p>
<p><strong>To Delete a zone in a weird state:</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>If the install get interrupted, or the configuration has problems, the zone can end up in an incomplete<br />
state. In this state, it is difficult to uninstall or delete, or continue the configuration. To remove<br />
the incomplete zone and start fresh, do the following:</p>
<p>1. remove the zone entry in /etc/zones/index:</p>
<p>global:installed:/<br />
zone1:installed:/export0/home/zone1<br />
zone2:installed:/export0/home/zone2<br />
zone3:incomplete:/export0/home/zone3</p>
<p>2. delete the xml file associated with the zone under /etc/zones</p>
<p>3. delete the directory associated with the zone (if it has been created)</p>

<p><a href="http://feedads.g.doubleclick.net/~a/XYqu_g1ZPhT-1csbq6QAeLoB5nQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/XYqu_g1ZPhT-1csbq6QAeLoB5nQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/XYqu_g1ZPhT-1csbq6QAeLoB5nQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/XYqu_g1ZPhT-1csbq6QAeLoB5nQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/eGxtuLwGiFQ" height="1" width="1"/>]]></content:encoded><description>&amp;#160; To view a list and status of currently installed zones: &amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212; # zoneadm list -vi ID NAME STATUS PATH...</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1855/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1855</feedburner:origLink></item><item><title>2011</title><link>http://feedproxy.google.com/~r/i4wei/~3/_vNwwUOs96o/1850</link><category>摄影天地</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Wed, 08 Feb 2012 23:17:33 PST</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1850</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p style="text-align: center;"><a href="http://www.i4wei.com/wp-content/uploads/2012/02/2011.jpg"><img class="aligncenter size-full wp-image-1851" title="2011" src="http://www.i4wei.com/wp-content/uploads/2012/02/2011.jpg" alt="" width="600" /></a><br />
<strong></strong></p>
<p style="text-align: center;"><strong>我的摄影作品2011</strong></p>

<p><a href="http://feedads.g.doubleclick.net/~a/Yz761GAnjhQQiAbDMQyi0TEimn8/0/da"><img src="http://feedads.g.doubleclick.net/~a/Yz761GAnjhQQiAbDMQyi0TEimn8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Yz761GAnjhQQiAbDMQyi0TEimn8/1/da"><img src="http://feedads.g.doubleclick.net/~a/Yz761GAnjhQQiAbDMQyi0TEimn8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/_vNwwUOs96o" height="1" width="1"/>]]></content:encoded><description>我的摄影作品2011</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1850/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1850</feedburner:origLink></item><item><title>FBI “死亡密码”可能是病例？</title><link>http://feedproxy.google.com/~r/i4wei/~3/h_SnnLUsSjU/1838</link><category>信息安全</category><category>password</category><category>Security</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Fri, 08 Apr 2011 07:48:23 PDT</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1838</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>FBI向全球征集破解“死亡密码”（<a href="http://www.i4wei.com/archives/1827">相关新闻</a>）后 ，引起了各国网友的强烈兴趣 。这段密文的解密工作，在互联网上也如火如荼的展开。<span id="more-1838"></span></p>
<p>有不少网友猜测受害者 McCormick 采用了替换和置位加密方法加密了这段文字，FBI也是给出了类似的猜测和破解思路。 其实FBI基于词频分析的失败说明了这条破解道路未必能走的通。这个密文看起来更像是某种缩写 。</p>
<p>一位叫john的外国网友提到的70年代中期在美国经常使用的药物和治疗效果清单速记法与密文很像（可能国内的医院神秘药方一样？)。比如说密文中多次出现的NCBE 指no cause before episode（发作前没有征兆) 具体来说是这样的：</p>
<p>从FBI 提供了两张扫描件来看， 这个治疗清单它开始于第二张也就是印有Note的那一张。P1页是早期病情的诊断基础。Note那张是详细的记录。下面是一些缩写的含义:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="568" valign="top"><strong>ALPNTE GLSE-SE ERTE</strong>它的英文意思指:<br />
A: Latenight, Phenergan, taken in evening G: Latenight Serenace/Seroquel or Seroquel/Serenace Extended Release Taken Evening<br />
<strong>(</strong><strong>大体说几种药物 和用法和服用时间)</strong>&nbsp;</p>
<p><strong>VLSE MTSE-CTSE-WSE-FRTSE</strong></p>
<p>它的英文意思指:<br />
V: Late Serenace Morning take Serenace<br />
<strong>是说早晚使用 氟哌啶醇-一种抗精神分裂药</strong></p>
<p>在p1上还有记录狂躁症发作的列表<br />
<strong>(FLRSEPRSEONDE71NCBE)</strong></p>
<p>英文意思指:<br />
From late september really severe episode on December 1971: No cause before episode<br />
<strong>1971 </strong><strong>年9月下旬开始 到1971年12 躁症真正严重发作。发作前没有征兆 这里面包含多次出现的 NCBE</strong></p>
<p><strong>(CDNSEPRSEONSF/DE74NCBE)</strong></p>
<p>英文意思指:<br />
Chronic Depression in September, really severe episode on the start of December in 1974, no cause before episode<br />
<strong>9</strong><strong>月份慢性抑郁症,1974年12月初 严重发作，发作前没有征兆</strong></p>
<p><strong> </strong></p>
<p><strong>26MLSE74SPRKSE29KENOSOLE173R7RSE</strong>英文意思指:<br />
2x 6mg Serenace in 1974 or 2x 600mg Seroquel in 1974<br />
99-84.B2UNEPLSENCRSEAOLTSENSKSENRSE</p>
<p><strong>2*6</strong><strong>毫克 氟哌啶醇 ….（译者注:都是些药的使用）</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></td>
</tr>
</tbody>
</table>
<p>这个“死亡密码”是药品和治疗记录缩写的，可能是一个比较合理的解密。现在美国的医院仍然在使用新的缩写: 如果治疗记录的解释准确的话 ，不难看出这个人有严重的抑郁症，那么他出现在荒郊野外并且离奇死亡或许有他自己的原因。不过这只是一种猜测，相关的分析已经提交给FBI ,目前FBI 还没有做出说明.</p>
<p>其实在关联信息如此少的密文面前，解密工作非常艰难，有很多的问题，比如能确定他原文是用英文书写吗 ？</p>
<p>附:贴出两段密文，原图请到FBI 官网 <a href="http://www.fbi.gov/news/stories/2011/march/cryptanalysis_032911">http://www.fbi.gov/news/stories/2011/march/cryptanalysis_032911</a>查看</p>
<p><a href="http://www.i4wei.com/wp-content/uploads/2011/04/note1.jpg"><img class="aligncenter size-full wp-image-1839" title="note1" src="http://www.i4wei.com/wp-content/uploads/2011/04/note1.jpg" alt="" width="500" height="400" /></a><a href="http://www.i4wei.com/wp-content/uploads/2011/04/note2.jpg"><img class="aligncenter size-full wp-image-1840" title="note2" src="http://www.i4wei.com/wp-content/uploads/2011/04/note2.jpg" alt="" width="500" height="482" /></a>来源:<a href="http://www.huimaozi.net/?p=62" target="_blank"> 灰帽子</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/_3SFTZbJ0f_-n1tsTW8WtH-wmcw/0/da"><img src="http://feedads.g.doubleclick.net/~a/_3SFTZbJ0f_-n1tsTW8WtH-wmcw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_3SFTZbJ0f_-n1tsTW8WtH-wmcw/1/da"><img src="http://feedads.g.doubleclick.net/~a/_3SFTZbJ0f_-n1tsTW8WtH-wmcw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/h_SnnLUsSjU" height="1" width="1"/>]]></content:encoded><description>FBI向全球征集破解“死亡密码”（相关新闻）后 ，引起了各国网友的强烈兴趣 。这段密文的解密工作，在互联网上也如火如荼的展开。 有不少网友猜测受害者 McCormick 采用了替换和置位加密方法加密了这段文字，FBI也是给出了类似的猜测和破解思路。 其实FBI基于词频分析的失败说明了这条破解道路未必能走的通。这个密文看起来更像是某种缩写 。 一位叫john的外国网友提到的70年代中期在美国经常使用的药物和治疗效果清单速记法与密文很像（可能国内的医院神秘药方一样？)。比如说密文中多次出现的NCBE 指no cause before episode（发作前没有征兆) 具体来说是这样的： 从FBI 提供了两张扫描件来看， 这个治疗清单它开始于第二张也就是印有Note的那一张。P1页是早期病情的诊断基础。Note那张是详细的记录。下面是一些缩写的含义: ALPNTE GLSE-SE ERTE它的英文意思指:...</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1838/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">2</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1838</feedburner:origLink></item><item><title>一张图教你拆解信用卡号码</title><link>http://feedproxy.google.com/~r/i4wei/~3/YsiXtn34hLI/1832</link><category>实用技巧</category><category>Credit Card</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Tue, 05 Apr 2011 17:16:17 PDT</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1832</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>你可能每天都使用信用卡，但你有没有想过你的信用卡号码究竟是如何产生？本文不是教你破解信用卡，只是叫你更了解每一个号码堂中的含意。你的信用卡号码是一个复合标识符组成，当中包含了发卡机构、账号、校验等。看看下图，冗长的号码被分解成单个组件，当你了解过后，就可以计算出其有效性任何信用卡号码。</p>
<p><a href="http://www.i4wei.com/wp-content/uploads/2011/04/CrackingCreditCode3.jpg"><img class="aligncenter size-full wp-image-1833" title="CrackingCreditCode3" src="http://www.i4wei.com/wp-content/uploads/2011/04/CrackingCreditCode3.jpg" alt="" width="600" height="1708" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/ci3SOBe9jL8fh-w_gfqLLjdEwXI/0/da"><img src="http://feedads.g.doubleclick.net/~a/ci3SOBe9jL8fh-w_gfqLLjdEwXI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ci3SOBe9jL8fh-w_gfqLLjdEwXI/1/da"><img src="http://feedads.g.doubleclick.net/~a/ci3SOBe9jL8fh-w_gfqLLjdEwXI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/YsiXtn34hLI" height="1" width="1"/>]]></content:encoded><description>你可能每天都使用信用卡，但你有没有想过你的信用卡号码究竟是如何产生？本文不是教你破解信用卡，只是叫你更了解每一个号码堂中的含意。你的信用卡号码是一个复合标识符组成，当中包含了发卡机构、账号、校验等。看看下图，冗长的号码被分解成单个组件，当你了解过后，就可以计算出其有效性任何信用卡号码。</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1832/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1832</feedburner:origLink></item><item><title>Epsilon客户数据库遭到黑客入侵</title><link>http://feedproxy.google.com/~r/i4wei/~3/zf78GKgrT2Q/1830</link><category>信息安全</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">i4wei</dc:creator><pubDate>Tue, 05 Apr 2011 16:55:10 PDT</pubDate><guid isPermaLink="false">http://www.i4wei.com/?p=1830</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>全球最大的电邮列表服务商Epsilon客户数据库遭到黑客入侵，导致花旗集团（Citigroup Inc）和其它一些美国大公司客户，以及大学理事会学生的姓名和邮件地址的信息被泄露。<span id="more-1830"></span></p>
<p>这是美国历史上最大的黑客入侵事件之一，许多与Epsilon存在业务往来的公司周末对客户发出警告说，部分电子信息可能遭到泄露。</p>
<p>此次事件涉及的公司包括全美最大连锁药店华格林 (Walgreen) 、电视录制技术公司TiVo、美国第一资本金融公司(Capital One Financial Corp.) 和家庭网络购物公司（HSN Inc），以及美国最大的一些银行。</p>
<p>美国大学生理事会（代表大约5,900所高校）所属的部分学生的姓名和电子合同也可能涉及其中。</p>
<p>根据Epsilon的声明和致客户的电子邮件，信用卡或社保卡账号等个人金融信息看起来没有被泄露。</p>
<p>Epsilon在1日表示，公司外部一名黑客侵入部分客户的档案。这家在线营销机构每年发出超过400亿封广告邮件或报价，通常是发给在公司网站注册或购物时留下邮件地址的客户。</p>
<p>HSN 3日在给客户的一封邮件中写道：“我们从邮件服务商Epsilon获悉，您的部分信息可能已被一些未授权个人获得。”</p>
<p>“这些信息包括您的姓名和电子邮件地址，但不包括任何财务或其它敏感信息。我们认为有必要及时将这次事故的消息向您通报。”</p>
<p>花旗集团2日表示，部分客户的姓名和部分信用卡客户的电邮地址（但不包括账户信息）也在被入侵的数据之中。</p>
<p>管理SAT入学考试的大学生理事会2日就入侵事件向学生发出警告，并告诉他们在收到“不明第三方的链接或附件”时要保持警惕。</p>
<p>执法机构正在调查黑客入侵事件，不过目前尚不清楚多少客户或学生的信息已被泄露。Epsilon也在寻找问题何在。</p>
<p>Epsilon发言人西蒙（Jessica Simon）说：“我们正在与相关当局合作，进行全面调查，其它情况尚不便透露。我们无法确认哪些客户收到影响或未收到影响，或在目前提供公司名单。”</p>
<p>第一资本和华格林表示，入侵Epsilon的黑客获得其客户的电邮地址，但没有获得个人身份信息。</p>
<p>TiVo表示，黑客仅获得部分客户的姓氏和电邮地址。</p>
<p>在此事件发生3年前，美国信用卡处理商和支付服务供应商Heartland Payment Systems Inc.遭到的黑客入侵事件，曾是美国历史上最大的个人身份信息泄露事件之一。</p>
<p>该案件中臭名昭著的黑客冈萨雷斯（Albert Gonzalez）带领一个团伙偷取了超过4,000万个支付卡账号，最终被判刑入狱20年。</p>
<p>美国第二大银行摩根大通（JPMorgan Chase &amp; Co）和美国最大的超市运营商克洛格公司（Kroger Co.）表示，部分客户的信息在Epsilon数据入侵事件中遭到泄露。</p>
<p>花旗集团在2日晚间宣布也受到影响。发言人Sean Kevelighan表示，该银行已经在1日通过网站链接向客户通报入侵事件。</p>
<p>Epsilon的其它一些客户还包括威瑞森通讯公司（Verizon Communications Inc）、黑石集团旗下的希尔顿饭店、卡夫食品（Kraft Foods）和医药行业巨头阿斯利康（AstraZeneca Plc）。</p>
<p>虽然Epsilon强调，被盗的资料并不包括信用卡等个人资料，但电脑保安专家警告，外泄的资料足以令黑客发出度身订做的诈骗电邮，诱骗用户提供敏感资料，呼吁互联网用家提防电邮诈骗潮。</p>
<p>以美国得州为基地的Epsilon上周五发表简短声明称，上月30日发现遭黑客入侵，大量数据失窃。全球2500家公司使用Epsilon的服务，每年发出超过 400亿封电邮。Epsilon发言人周一称，2%企业客户受影响，但他拒绝透露有多少电邮用户资料被盗，亦未有解释黑客如何入侵系统。Epsilon强 调，被盗的资料仅限于电邮地址及客户姓名，其他个人识别信息，如电话或信用卡号码没有风险。</p>
<p>花旗、摩根大通及Capital  One等多家美国大企业，已相继发电邮警告可能受影响的客户，呼吁他们小心诈骗电邮。摩通的电邮称，Epsilon表示被盗的数据不包括客户财务资料，摩根正核实有关说法。负责统筹美国全国考试的College  Board则向用户表示，Epsilon没有取得其客户的信用卡资料或社会保障号码，但College  Board警告用户可能收到垃圾电邮及诈骗电邮，它在网站列举可疑电邮的特点，提醒客户小心。</p>
<p>电脑保安专家警告，黑客即使只盗取电邮地址及姓名，亦足以发出具针对性的诈骗电邮。黑客假冒大企业以渔翁撒网方式发诈骗电邮的做法不罕见，但这类诈骗较易识破。相比之下，针对个别企业客户度身订做的钓鱼攻击，即所谓「鱼叉式攻击」（spear phishing），用户上当机会较高。</p>
<p>电脑保安专家塞沃特（Amol  Sawarte）解释，今次事故最大的风险是：「黑客可冒充你的银行、酒店或其他跟你有接触的公司，这些电邮有说服力，因为黑客知道收件人姓名，也知道跟他有业务往来的公司。这些电邮可诱使用户点击要求输入信用卡资料的连结、安装间谍程式或其他恶意软件。」</p>

<p><a href="http://feedads.g.doubleclick.net/~a/GOBWHVj_1Zl4E21zzSg1uPd6XH4/0/da"><img src="http://feedads.g.doubleclick.net/~a/GOBWHVj_1Zl4E21zzSg1uPd6XH4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GOBWHVj_1Zl4E21zzSg1uPd6XH4/1/da"><img src="http://feedads.g.doubleclick.net/~a/GOBWHVj_1Zl4E21zzSg1uPd6XH4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/i4wei/~4/zf78GKgrT2Q" height="1" width="1"/>]]></content:encoded><description>全球最大的电邮列表服务商Epsilon客户数据库遭到黑客入侵，导致花旗集团（Citigroup Inc）和其它一些美国大公司客户，以及大学理事会学生的姓名和邮件地址的信息被泄露。 这是美国历史上最大的黑客入侵事件之一，许多与Epsilon存在业务往来的公司周末对客户发出警告说，部分电子信息可能遭到泄露。 此次事件涉及的公司包括全美最大连锁药店华格林 (Walgreen) 、电视录制技术公司TiVo、美国第一资本金融公司(Capital One Financial Corp.) 和家庭网络购物公司（HSN Inc），以及美国最大的一些银行。 美国大学生理事会（代表大约5,900所高校）所属的部分学生的姓名和电子合同也可能涉及其中。 根据Epsilon的声明和致客户的电子邮件，信用卡或社保卡账号等个人金融信息看起来没有被泄露。 Epsilon在1日表示，公司外部一名黑客侵入部分客户的档案。这家在线营销机构每年发出超过400亿封广告邮件或报价，通常是发给在公司网站注册或购物时留下邮件地址的客户。 HSN 3日在给客户的一封邮件中写道：“我们从邮件服务商Epsilon获悉，您的部分信息可能已被一些未授权个人获得。” “这些信息包括您的姓名和电子邮件地址，但不包括任何财务或其它敏感信息。我们认为有必要及时将这次事故的消息向您通报。” 花旗集团2日表示，部分客户的姓名和部分信用卡客户的电邮地址（但不包括账户信息）也在被入侵的数据之中。 管理SAT入学考试的大学生理事会2日就入侵事件向学生发出警告，并告诉他们在收到“不明第三方的链接或附件”时要保持警惕。 执法机构正在调查黑客入侵事件，不过目前尚不清楚多少客户或学生的信息已被泄露。Epsilon也在寻找问题何在。...</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.i4wei.com/archives/1830/feed</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.i4wei.com/archives/1830</feedburner:origLink></item></channel></rss>

