ubuntu安装xbmc
{{{ apt-get update sudo apt-get install xbmc xinit x11-xserver-utils sudo adduser xbmc --gecos XBMC sudo usermod --group audio,video,fuse,cdrom,plugdev xbmc
sudo vi /etc/init/tty1.conf }}} 把exec /sbin/getty -8 38400 tty1 换成 exec /bin/login -f xbmc /dev/tty1 2>&1 ,可以自动登录。 {{{
exec /sbin/getty -8 38400 ...
more ...在这里详述 liugehao-工作-201302。
- 路由系统测试
- 中间运输平台 TTP-12 TTP-15
- TTP-2 关于现付加班单报表需求
- [TTP-5] 车车运营管理系统部分功能修改需求
ubuntu上配置nfs
本文主要介绍Ubuntu 10.04上NFS服务的安装、配置。
安装NFS相关的软件包 {{{ $ sudo apt-get install nfs-kernel-server }}} 进行配置 与之相关的配置文件有:
/etc/default/nfs-kernel-server {{{ NEED_SVCGSSD=no # no is default }}} 注释: 因为我们并不打算启用NFSv4 安全配置 注意: 如果启用,客户端也必须启用
/etc/default/nfs-common 这是一个common配置文件,也就是说服务器端和客户端都要有相同的配置。 {{{ NEED_IDMAPD=yes # 此项将打开ID映射 NEED_GSSD=no # no is default }}} 注释:ID映射用于解决服务器端UID与客户机UID不同,而无法访问资源的情况。通过UID映射,只需要相同的用户名即可。
/etc/idmapd.conf 既然启用了ID映射,就需要配置: {{{ [Mapping]
Nobody-User ...
more ...xbmc安装万能声卡驱动
{{{ sudo apt-get install alsa-utils }}} 然后执行 {{{ sudo alsamixer }}} 按‘m',把MM改成00,MM状态是静音。 按上下,调整音量。
more ...Cannot set LC_ALL to default locale: No such file or directory
{{{ locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory }}} 解决办法 {{{ sudo locale-gen --lang zh_CN.UTF-8 }}}
more ...ubuntu 12.10中add-apt-repository的软件包
ubuntu 12.10 中add-apt-repository已经不在python-software-properties包中了。
它在 software-properties-common中
{{{ sudo aptitude install software-properties-common }}}
more ...## page was renamed from linux/redhat上安装nginx和php
= redhat上安装nginx和php,mysql = 支持oracle,先安装下面2个包,从oracle网站下载相应版本。 {{{ oracle-instantclient-basic-10.2.0.3-1.x86_64.rpm oracle-instantclient-devel-10.2.0.3-1.x86_64.rpm }}}
http://vladgh.com/blog/install-nginx-and-php-533-php-fpm-mysql-and-apc {{{ yum install pcre-devel ./configure --prefix=/opt/nginx --conf-path=/etc/nginx/nginx.conf --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx.lock --http-log-path=/var/log/nginx/access.log ...
more ...redhat用iso做yum源
- 挂载ISO文件 {{{
mount -o loop RHEL_5.7\ x86_64.iso /media}}}
- 增加一个REPO文件 {{{
vi /etc/yum.repos.d/abc.repo
[Server] name=rhel6server baseurl=file:///media/Server enable=1 gpcheck=1 gpgkey=file:///media/RPM-GPG-KEY-redhat-release }}} 1. 更新源 {{{
yum update
}}}
CategoryRedhat CategoryLinux
more ...在这里详述 liugehao-工作-201301。
i. 内部事务测试 i. 韵达系统域名整理 i. 订单管理系统 与 工单系统接口 测试代码编写,测试
more ...python用abiword将doc转换成html,rtf,pdf...
{{{ sudo apt-get install abiword -y abiword -t output.html resume.doc # 将word转换成html }}}
{{{#!highlight python
import subprocess
import os
import uuid
def document_to_html(file_path):
tmp = "/tmp"
guid = str(uuid.uuid1())
# convert the file, using a temporary file w/ a random name
command = "abiword -t %(tmp)s/%(guid)s.html %(file_path)s ...