Archive for 03月, 2008

国产3G下月八城市放号

TD:即TD-SCDMA,是国内自主研发的3G网络。其功能较目前国内手机普遍应用的2G更为先进,上网速度更快,可实现视频通话等功能。

中国移动宣布启用157号段,TD网试商用期间资费打五折
通信业界期盼以久的国产3G网络———TD-SCDMA终于将揭开神秘的面纱。3月28日,中国移动宣布,将从4月1日起面向北京、上海、天津、沈阳、广州、深圳、厦门和秦皇岛8个城市,正式启动TD社会化业务测试和试商用。试商用期间将采用157号段,通话费5折优惠。北京移动表示,4月1日之前,TD手机和号码就能到货,具体放号数量下周才能清楚。

可视电话资费标准
本地通信 主叫0.6元/分钟 被叫免费
国内漫游 主叫0.9元/分钟 被叫0.60元/分钟
国内长途 0.10元/6秒
说明:上述国内漫游、国内长途资费均不含港澳台通信资费,港澳台、国际长途资费标准参照现有GSM网相关资费标准执行。

此文只做新闻引用.不做任何评论.消息来源于新浪.查看原文

ubuntu 修改启动等级

在其他很多发行版里面如果想将系统的启动等级修改.比如为了使用字符界面.可以直接修改/etc/inittab 这个文件里面的init后面的参数.而ubuntu从6.10使用了upstart来取代inittab.很多相关性脚本都在/etc/event.d 下面.其中有一个脚本 rc-default 这个脚本可以控制启动等级.
# rc - runlevel compatibility
#
# This task guesses what the "default runlevel" should be and starts the
# appropriate script.
start on stopped rcS
script
runlevel --reboot || true
if grep -q -w -- "-s\|single\|S" /proc/cmdline; then
telinit S
elif [ -r /etc/inittab ]; then
RL="$(sed -n -e "/^id:[0-9]*:initdefault:/{s/^id://;s/:.*//;p}" /etc/inittab || true)"
if [ -n "$RL" ]; then
telinit $RL
else
telinit 2
fi
else
telinit 2
fi
end script

这样可以发现默认情况下由于没有/etc/inittab文件所以启动等级是2 .你可以在这边修改也可以自己创建一个/etc/inittab 文件.格式如下
id:N:initdefault:
N为启动等级.实际在Debian 发行版中2-5的等级是一样的. 这和我们看到的其他发行版不一样
如果需要设置不同的启动等级.且内容不一样可以安装sysv-rc-conf 这个软件.可以很方便地设置不同的启动等级.

还有一个文件 rcS-sulogin 是设置单用户的相关信息的.

残言片语

前段时间把工作的事情定了.顺便出去走走了.只是没有带相机.所以没有发什么图片上来.本来把在路上的随感通过短信发到饭否上,可是今天回来才发现饭否现在这个服务处于调整状态.唉郁闷.

记得的一些随感
1 对自己来说西湖,玄武湖,瘦西湖其实都差不多.或者是因为自己不是一个喜欢玩的人

2 人还真贱,我站在火车上那么长时间累死了,居然有人坐在那边也闲累.

3 杭州好像很有钱.做公交的全是老年人.

4 每个地方的10086都不一样

这是什么?

这是iPhone

iphone02iphone01

这是iPod touch

itouch01

这是魅族

meizhu01meizhu02

California Fashion Schools

California has many fashion-focused areas, especially Hollywood with its influence on the film industry.If you are interested in learning in one of the leading fashion and trend-setting states, then you should consider California fashion schools.But first of all, you are in the United States, Or you intend to pursue further studies to the United States. Then you really can go to look at the other side.
You can be California Fashion Schools in the corresponding diploma to prove you the ability to fashion.
a fashion school in california or
fashion schools in california
or fashion schools in los angeles..there are many…….

American InterContinental University - Los Angeles, CA
American InterContinental University at Atlanta (Buckhead), GA offers associate’s and bachelor’s degrees in fashion design, fashion marketing, and combines the two in a bachelor’s degree of fashion design and marketing. You can choose to specialize or to integrate both fields, coupling the advertising, marketing, and retail know-how of the marketer with the creativity and artistic talents of the designer. Click the link to receive more information.

VirtualboxBox对USB的支持

今天使用Vbox 发现这样的错误 [virtualbox访问usb子系统失败] .在晚上找了一下发现问题的主要原因是Vbox对USB不支持.但是想一下以前是支持的啊,看来是7.10取消了Vbox对USB的支持.到晚上转了一圈发现答案还是比较多的.只是看了很多的朋友都是新建usbfs这个新组.然后将用户添加等等一系列的操作.其实发现不用太麻烦

在 /etc/init.d/mountdevsubfs.sh 文件,找到如下内容:


#mkdir -p /dev/bus/usb/.usbfs
#domount usbfs "" /dev/bus/usb/.usbfs
-obusmode=0700,devmode=0600,listmode=0644
#ln -s .usbfs/devices /dev/bus/usb/devices
#mount --rbind /dev/bus/usb /proc/bus/usb

取消最后四行的注释纯盘后.找到Vbox创建的用户组
(cat /etc/group | grep vboxusers)
的ID.如我的是1001.

在/etc/fstab文件最后加上

none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0 .

使vboxusers用户组拥有访问usb设备的权限 .这样重启电脑就可以使用了.其实如果不想重启就如下

sudo mount -vt usbfs none /proc/bus/usb -o devgid=1001,devmode=664 也可以..

注意在虚拟机中使用U盘.应该在主机中 unmount U盘.