http://press.redhat.com/2010/04/21/red-hat-enterprise-linux-6-beta-available-today-for-public-download/
Major Features:
kernel-2.6.32
KVM &KSM
Ext4 & XFS
Block Discard (ATA-Trim for SSD)
CFS scheduler
cgroup
LXC
XEN Dom0 removed
Sandbox
KDE-4.3
Firefox-3.5
OOO-3.1
Gcc-4.4
Glibc-2.11
Iscsi instead of gnbd
阅读全文…
今天在linux下用建设银行_借记卡_在淘宝支付成功。
分享一下过程:
1.申请:
*借记卡(龙卡)非常好申请,带着身份证去营业厅办理即可。
*申请中注意在申请表上勾选“开通网上银行签约服务->网上银行”。
*申请中会问你使用U盾还是口令卡,一定需要申请使用“口令卡”(因为U盾在linux底下很玄…)
阅读全文…
今天我在RHEL5上启动jaxer(/opt/AptanaJaxer/scripts/start.sh), 抛出错误:
Jaxer registration failed. Please check all depend libs exist.
刚解决了这个问题,现在分享一下:
1. 设置LD_LIBRARY_PATH并用ldd查看Jaxer模块的关联。在终端输入:
export LD_LIBRARY_PATH=/opt/AptanaJaxer/jaxer
ldd /opt/AptanaJaxer/jaxer/jaxer
阅读全文…
1.用whereis命令查看你要添加的软件在哪里,比如说我想添加一个终端到右键中。
whereis gnome-terminal
从返回的显示你知道是在 /usr/bin/gnome-terminal
2. 把 gnome-terminal 拷贝到 ~/.gnome2/nautilus-scripts 目录
cp /usr/bin/gnome-terminal ~/.gnome2/nautilus-scripts
3.在桌面右击鼠标,就可以=>script=>找到你刚才添加进去的东东。
4.完成
在安装完Fedora11后,发现用root帐号登录不了系统,在Ubuntu上也是这样的。我记得在Ubuntu上有两种方法可以解决这个问题:
- 找到/etc/X11/gdm/gdm.conf文件中的AllowRoot=false ,把false改为true
- 在System -> Preferences -> Login Window 菜单,并切换到 Security 选项页,然后选中其下的“Allow local system administrator login”选项。
在Fedora11里这样的方法就不管用了,但我觉得有关root登录的限制也应该是在gdm的配置中,于是我打开了/etc/pam.d下的gdm以及gdm-password文件,有关root登录的说明就写在这两个文件里。
阅读全文…
在WINDOWS下可以通过WMI实现此功能,那么在 Linux下如何获取主板序列号信息呢?
用dmidecode命令可以解决这个问题。分享一下:
dmidecode is a tool for dumping a computer’s DMI (some say SMBIOS) table contents in a human-readable format. This table contains a description of the system’s hardware components, as well as other useful pieces of information such as serial numbers and BIOS revision. Thanks to this table, you can retrieve this information without having to probe for the actual hardware. While this is a good point in terms of report speed and safeness, this also makes the presented information possibly unreliable.
阅读全文…