yjiang's cake

配置nginx的ip默认站点

一个VPS一般都会有多个虚拟主机,当想把访问IP时,导向到某个虚拟主机可按如下配置虚拟主机文件:

server{ 
    listen 80 default;
    server_name xxx.com; 
    ... 
}

listen 后增加 defalut 即可.

修改apache2虚拟主机端口

1.修改 /etc/apache2/ports.conf

增加 NameVirtualHost *:8080 Listen 8080

用来监听相应的端口

2.修改对应的虚拟主机文件 /etc/apache2/sites-enabled/yjiang

<VirtualHost *:8080> 
    ServerName yjiang.blog 
    ServerAdmin webmaster@localhost 
    RewriteEngine On 
    RewriteOptions Inherit

    DocumentRoot /home/yjiang/letou/blog
    <Directory /home/yjiang/letou/blog/>
            Options -Indexes FollowSymLinks
            AllowOverride All
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog /var/log/apache2/yjiang.blog-error.log
    CustomLog /var/log/apache2/yjiang.blog-access.log combined-time

</VirtualHost>

协调的Ubuntu开始菜单:ClassicMenu Indicator

ClassicMenu_Indicator

有点像Gnome Classic,感觉还不错.mark~

可以官网下载 classicmenu-indicator.

或者直接从软件源安装

sudo apt-add-repository ppa:diesch/testing
sudo apt-get update && sudo apt-get install classicmenu-indicator

建议官网下载安装吧,这个源有很多链接404了.

为ubuntu13.04更换图标-Faenza

QQ图片20130603101446

添加Faenza图标源及安装

 sudo add-apt-repository ppa:tiheum/equinox
 sudo apt-get update
 sudo apt-get install faenza-icon-theme

添加Ubuntu-Tweak源及安装

 sudo add-apt-repository ppa:tualatrix/ppa
 sudo apt-get update
 sudo apt-get install ubuntu-tweak

进入Dash主页,搜索新安装的Tweak,打开 调整->主题->图标 选择Faenza 即可.

64位linux安装金山WPS

只需要安装32bit库(很恐怖,有237M之巨)

sudo apt-get install ia32-libs

然后去 官方下载wps 并安装就可以了.

这货也有139M啊有木有? Win版的只有39M的说. 乃们知道多出来的100M是啥玩意儿么? 一堆的方正字库啊!

Copyright © 2016 yjiang's cake

返回顶部