
开发环境
wukunlsy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
shell脚本进行循环的两种方法
#!/bin/bash name=(yunix yhx yfj) echo "array is:${name[@]}" echo "array length is:${#name[*]}" echo ${name[1]} name[1]=yang echo ${name[1]} read -a name echo ${name[1]} echo "loop the array"...原创 2013-03-15 16:51:38 · 474 阅读 · 0 评论 -
一次ubuntu抽风的解决方案
ubuntu抽风,估计是误删了用户home目录下的一些隐藏文件,造成严重不可用. 解决方法是新增了一个用户,然后把旧的用户数据挪过来. 1.新增用户 添加用户: Java代码 ubuntu@ubuntu:/home$ sudo adduser username 删除用户: Java代码 ubuntu@ubuntu:...原创 2013-01-17 22:02:39 · 157 阅读 · 0 评论 -
VMWare Unity Mode with Ubuntu 12.10-Unity is not supported on the guest operatin
sudo add-apt-repository ppa:gnome3-team/gnome3;sudo apt-get update;sudo apt-get install gnome-shell 更新完成后,注销,选择 Gnome Classic - No Effects桌面原创 2014-01-03 21:05:26 · 200 阅读 · 0 评论