安装Mint的过程没有什么好说的,装完机之后才是重点,这时继续默默地给自己的装机脚本写内容。
本来想找一个Notifier用来提示terminal状态的软件,只是除了growl之外,似乎没有一个好的方案,直到偶然间看到了terminal-notifier。
关于CJK
CJK 是中文(Chinese)、日文(Japanese)、韩文(Korean)三国文字的缩写。顾名思义,它能够支持这三种文字。实际上,CJK 能够支持在 LaTeX 中使用包括中文、日文、韩文在内的多种亚洲双字节文字。
在几次的郁闷过后,以后 UBUNTU的Unity界面的坑爹之后,终于还是回到了SUSE的怀抱,当然了,很大一部分原因还是源自于openSUSE的强大,或者说UBUNTU只适合于使用,而不是像OpenSUSE的企业使用。
对于从WINDOWS转到Opensuse的我们来说,使用解码包是比较重要的,那么接下来我们就用一种比较简单的方法来安装解码包。
好不容易才迎来OpenSUSE的新一次更新~~,最后不多说了~~,以此送给那些需要本文的有兴趣的孩子。
什么是Linux
Linux是一种自由和开放源码的类UNIX操作系统内核。目前存在着许多不同的Linux发行版,可安装在各种各样的电脑硬件设备,从手机、平板电脑、路由器和影音游戏控制台,到桌上型电脑,大型电脑和超级电脑。 Linux是一个领先的操作系统内核,世界上运算最快的10台超级电脑运行的都是基于Linux内核的操作系统。
开始之前了解一下Mezzanine是什么:
> Mezzanine is a powerful, consistent, and flexible content management platform. Built using the Django framework, Mezzanine provides a simple yet highly extensible architecture that encourages diving in and hacking on the code. Mezzanine is BSD licensed and supported by a diverse and active community. > In some ways, Mezzanine resembles tools such as Wordpress that provide an intuitive interface for managing pages, blog posts, form data, store products, and other types of content. But Mezzanine is also different. Unlike many other platforms that make extensive use of modules or reusable applications, Mezzanine provides most of its functionality by default. This approach yields a more integrated and efficient platform.
这也就是官方的简介,简单地说Mezzanine就是一个基于Django框架的应用,同时他提供了类似于wordpress的功能。换句话说,Mezzanine就是一个wordpress,我们只需要简单的修改就可以部署了。一个新项目创建时的截图,
我们可以看到Mezzanine用作商业的时候是如此的简单明了。
详细可以参考官方网站:http://mezzanine.jupo.org/
Mezzanine快速指引
# Install from PyPI
$ pip install mezzanine
# Create a project
$ mezzanine-project myproject
$ cd myproject
# Create a database
$ python manage.py createdb
# Run the web server
$ python manage.py runserver
3240 ./static/media/uploads/gallery
3244 ./static/media/uploads
3248 ./static/media
3252 ./static
24 ./deploy
8 ./requirements
12 ./templates
3520 .
可以使用
python manage.py collecttemplates --help
收集templates
因而,我们需要另外的文件,也就是templates,这个没有在需要额外配置。
git clone https://github.com/renyi/mezzanine-themes.git
关于部署由于之前静态文件的设置问题,因此也就贴了出来。换句话说,默认的静态文件和Django一样需要修改网站nginx的配置文件,比如我的是www.phodal.com.conf。
location /static {
autoindex on;
alias /home/gmszone/Phodal/static;
access_log off;
log_not_found off;
}
location /robots.txt
alias /home/gmszone/Phodal/static;
access_log off;
log_not_found off;
}
location /favicon.ico {
alias /home/gmszone/Phodal/static/img;
access_log off;
log_not_found off;
}
也就是要由nginx指定static的位置,也就没有那么多,只需要。记得重启一下nginx
alias /home/gmszone/Phodal/static;
安装完uWSGI需要,两个文件以便使之运作。
import os,sys
if not os.path.dirname(__file__) in sys.path[:1]:
sys.path.insert(0, os.path.dirname(__file__))
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from django.core.handlers.wsgi import WSGIHandler
application = WSGIHandler()
<uwsgi>
<socket>127.0.0.1:8630</socket>
<chdir>/home/gmszone/Phodal</chdir>
<pythonpath>..</pythonpath>
<module>wsgi</module>
</uwsgi>
uwsgi -x /home/gmszone/Phodal/wsgi.xml
详细可以参照:http://projects.unbit.it/uwsgi/wiki/Example
关于B2G:http://wiki.mozilla.org/B2G