ubuntu
文章平均质量分 52
iteye_9678
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubuntu Install vnc server
[b]1.update source[/b] sudo apt-get update [b]2.install vnc server[/b] sudo apt-get install vnc4server [b]3.config password[/b] vncpasswd [b]4.start vnc server[/b] vncserver [b]5.confi...2011-06-11 16:38:17 · 113 阅读 · 0 评论 -
关于ubuntu的apt-get和安装目录
一般的deb包(包括新立得或者apt-get下载的)都在/usr/share。 自己下载的压缩包或者编译的包,有些可以选择安装目录,一般放在/usr/local/,也有在/opt的。 另参见apt使用参考: apt-cache search # ------(package 搜索包) apt-cache show #------(package 获取包的相关信息,如说明、大小、版本等...原创 2011-06-12 17:50:55 · 168 阅读 · 0 评论 -
Linux 添加 IP
vi /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network inte...2016-04-08 16:52:01 · 138 阅读 · 0 评论 -
Linux Notes
1. C compiler not found, Ubuntu sudo apt-get install build-essential2016-04-08 22:06:26 · 152 阅读 · 0 评论 -
intall nginx in Ubuntu from Sources
1. ububtu平台编译环境 apt-get install build-essential apt-get install libtool 2. openssl: tar -xzvf openssl-1.0.1s.tar.gz cd openssl-1.0.1s ./config make make install p...2016-04-09 20:32:27 · 194 阅读 · 0 评论 -
install JDK from source
1. download jdk. 2. #!/bin/sh JV=jdk1.7.0_55 #tar -xvf jdk-7* sudo mkdir -p /usr/lib/jvm sudo mv ./${JV} /usr/lib/jvm/ sudo update-alternatives --install "/usr/bin/java" "java" "/usr/...2014-05-05 12:08:02 · 130 阅读 · 0 评论 -
Linux Note
1. Turned out the problem was \r\n line endings tr -d "\r" < oldname.sh > newname.sh原创 2014-05-16 10:35:59 · 124 阅读 · 0 评论
分享