查看Linux系统版本信息 (转载)
查看Linux系统版本信息
转载自 http://www.cnblogs.com/starspace/archive/2009/03/03/1402263.html
怎样查看Linux系统版本信息的命令...
几种查看Linux版本信息的方法:
1. uname -a Webjx.Com
2. cat /proc/version
3. cat /etc/issue
4. lsb_release -a
详解 lsb_release -a
登录到服务器执行 lsb_release -a ,即可列出所有版本信息,例如:
1. [root@3.5.5Biz-46 ~]# lsb_release -a
2. LSB Version: 1.3
3. Distributor ID: RedHatEnterpriseAS
4. Description: Red Hat Enterprise Linux AS release 4 (Nahant Update 1) Webjx.Com
5. Release: 4 Webjx.Com
6. Codename: NahantUpdate1
7. [root@3.5.5Biz-46 ~]#
这个命令适用于所有的linux,包括Redhat、SuSE、Debian等发行版
相关文档:
1、下载oracle软件
http://www.oracle.com/technology/software/tech/oci/instantclient/index.html
oracle-instantclient-basic-10.2.0.4-1.i386.rpm
oracle-instantclient-sqlplus-10.2.0.4-1.i386.rpm
oracle-instantclient-devel-10.2.0.4-1.i386.rpm
2、安装rpm包
rpm -ivh oracle-instantclient-basic-10.2.0.4 ......
1.Linux文件系统
Linux
支
持多种文件系统,如ext、ext2、minix、iso9660、msdos、fat、vfat、nfs等。在这些具体文件系统的上层,Linux提供
了虚拟文件系统(VFS)来统一它们的行为,虚拟文件系统为不同的文件系统与内核的通信提供了一致的接口。下图给出了Linux中文件系统的关系:
在Linux平台下对文件编程可 ......
一、打开/etc/apt/source.list源列表文件加放源
二、make 工具:
make默认查找的文件名:GNUmakefile makefile Makefile
&nbs ......
转自:http://blog.chinaunix.net/u1/44908/showart_1869167.html
# Linux中用ALSA驱动声卡流程详解:http://www.linuxsir.org/main/?q=node/67
北南南北兄的文章,比较详细的讲解了在linux下解决ALSA驱动声卡问题的流程,复习了声卡检测或者设备检测的许多命令,不错的资料,只是现在问题还没解决。
# alsa-proj ......