如果你的PC机与Mac机在同一个局域网,可以考虑是否将你的Mac和PC加入到同一个工作组(workgroup)。与Mac OS 10.4不同,10.4系统的缺省工作组是”Workgroup”,而Mac OS 10.5则是空白。另外,设置工作组的方法也有所不同。在10.4下,工作组的设置是通过实用程序里的”目录访问”(Directory Access),双击SMB/CIFS选项后,在SMB/CIFS设置界面上的工作组选项下进行设置或修改的。
1、用uuencode 将附件编码为文本形式
uuencode 附件 希望在邮件中使用的附件名 > 附件文本文件
2、连接邮件正文文件和附件文本文件
cat 邮件正文文件 附件文本文件 > 正文附件联合文件
3、发送该邮件
mail -s “你想使用的邮件标题” 收信人email地址 < 正文附件联合文件
示例:
我的邮件正文文件是 message.txt,想发送的附件名字是 attachment.tar.gz,附件文本文件取名为attachment.txt,正文附件联合文件取名为combined.txt,以“测试”为邮件标题发信给Sam@test.com
uuencode attachment.tar.gz attachment.tar.gz > attachment.txt cat message.txt attachment.txt > combined.txt mail -s “测试‘ Sam@test.com < combined.txt
``` [~]$ ssh 192.168.0.233
1
# open http://www.sina.com.cn (注意http://是必需的)
用来用去还是vim用着顺手,对于undo/redo做了番研究,其实除了u和ctrl+r之外,vim里有一个brances的概念。
这个命令可以以递归的方式下载整站,并可以将下载的页面中的链接转换为本地链接。
How to mount a xen image ?
- First you need to find out the partitions and the startsector of partitions: [root@xen rruban]# file rheltest.img rheltest.img: x86 boot sector, GRand Unified Bootloader (0.94); partition 1: ID=0x83, active, starthead 1, startsector 63, 208782 sectors; partition 2: ID=0x8e, starthead 0, startsector 208845, 3871665 sectors, code offset 0x48 There are 3 partitions inside the image file. The startsector of each partition is also listed. Boot partition will have start sector 63.
- Now you need to get the sector size: [root@xen]fdisk -lu rheltest.img
layout: post title: “centos网络配置” date: 2010-12-28 15:22 author: scsidisk categories: Linux tags: CentOS, Linux, 网卡, 配置 Slug: centos%e7%bd%91%e7%bb%9c%e9%85%8d%e7%bd%ae —-
在传统软件产品发布过程中(例如微软的Windows 7的发布过程中),一般都会经历Pre-Alpha、Alpha、Beta、Release candidate(RC)、RTM、General availability or General Acceptance (GA)等几个阶段(参考Software release life cycle)。可以看出传统软件的发布阶段是从公司内部->外部小范围测试>外部大范围测试->正式发布,涉及的用户数也是逐步放量的过程。