Gnome2/3: 命令行修改背景墙纸

GNOME2中,可以通过gconf-editor图形化界面来修改gnome2的配置,以修改其背景;
GNOME3中,可以通过dconf-editor图形界面来修改gnome3的配置,从而修改背景;
下面给出通过命令行修改背景的方法。
执行之前,先准备一张图片放在桌面上。我的路径是:

/home/feichashao/Desktop/feichashao.jpg

Gnome2

用以下命令可查看当前背景

$ gconftool-2 --get /desktop/gnome/background/picture_filename

用以下命令可设置当前背景

$ gconftool-2 --set --type string /desktop/gnome/background/picture_filename '/home/feichashao/Desktop/feichashao.jpg'

Gnome3

用以下命令可查看当前背景

$ gsettings get org.gnome.desktop.background picture-uri

用以下命令可修改当前背景

$ gsettings set org.gnome.desktop.background picture-uri 'file:///home/feichashao/Desktop/feichashao.jpg'

注:
1. 如果通过ssh执行上面的设置命令,会出现报错。
2. 要更改用户A的背景,应该用A用户执行上述命令。

(process:10123): dconf-WARNING **: failed to commit changes to dconf: Error spawning command line `dbus-launch --autolaunch=d954c83dff5ff4d8570c01048fa36b50 --binary-syntax --close-stderr': Child process exited with code 1

RHEL6: 执行远程X应用(Remote X to Linux)

X Window System

X Window System 的架构可以支持网络,也就是说,在remote端的机器,只需要有X Window相关运行库,不需要有显示器键盘鼠标,就可以在另一台机器(workstation端)上进行图形化交互。换句话说,程序可以在remote端跑,绘图以及响应鼠标键盘部分可以在workstation端进行。

将remote端的X forward到workstation端有多种方法,这里举例两种方法:一是用SSH,二是直接用X11 Remote Connection.

继续阅读“RHEL6: 执行远程X应用(Remote X to Linux)”

RHEL6: Bash脚本实现批量删除用户

前面用bash脚本批量生成了用户 https://feichashao.com/rhel6-bash-batuser/ ,现在问题来了: 如果我要批量删掉它们呢?

基本功能

1. 程序接受两个参数,第一个是删除用户的数量,第二个是待删除用户的前缀。
例如,

# ./batUserdel 3 testuser

那么 testuser1, testuser2, testuser3 都会被删除。

继续阅读“RHEL6: Bash脚本实现批量删除用户”

RHEL6: Bash脚本实现批量添加用户

Don't repeat yourself.
用脚本批量生成用户,就可以自动生成成千上万个用户啦。

基本功能

1. 程序接受2个参数,第一个参数是生成用户的数量,第二个参数是用户名的前缀。
例如,执行

# ./batUser 3 testuser

会生成 testuser1, testuser2, testuser3 这3个用户。

2. 用户的默认密码设定为 redhat .

继续阅读“RHEL6: Bash脚本实现批量添加用户”

RHEL6: 设置GRUB密码

机器启动时,用户可以通过修改GRUB的启动选项,启用单用户模式,或者干些更加丧心病狂的事情。
设置GRUB密码,用户如果要在GRUB引导时编辑引导信息,就要先输入GRUB密码。

# grub-md5-crypt

回车,输入密码,再次输入密码。
会自动生成一串密码,如,

$1$/xxxxx$xxxxxxxxxxxxx

上面以$作为分隔,第一个参数表示加密方式,1是MD5,第二个参数是加密的Salt,最后一长串是密文。

将上面整串东西加到 /boot/grub/grub.conf 中。

# vim /boot/grub/grub.conf

password --md5 $1$/xxxxx$xxxxxxxxxxxxx
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/sda3
#          initrd /initrd-[generic-]version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
password --md5 $1$/xxxxx$xxxxxxxxxxxxx
hiddenmenu
title Red Hat Enterprise Linux (2.6.32-431.el6.x86_64)
        root (hd0,0)
        kernel /vmlinuz-2.6.32-431.el6.x86_64 ro root=UUID=8f8608d3-c941-4092-a9c5-b5aa9221515f rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
        initrd /initramfs-2.6.32-431.el6.x86_64.img

重启,进入GRUB菜单,嗯,现在需要先按p输入密码之后才能按e编辑选项了。