Gedit管理编码
Gedit按open(打开),弹出窗口,在下边character encoding(默认显示“自动检测”),下拉 -添加/删除 就可以管理编码了。
Gedit按open(打开),弹出窗口,在下边character encoding(默认显示“自动检测”),下拉 -添加/删除 就可以管理编码了。
装了 ubuntu 11.10 之后找不到管理用户组的界面了,其实只要把 gnome-system-tools 之类的软件包重新安装上,你就会发现什么“用户和组管理”、“时间管理”、“XX管理”之类的选项都回来了,就在“其他”菜单里面。
操作指令 sudo apt-get install -y gnome-system-tools
增加用户组usbfs
$ sudo groupadd usbfs
2. 查看usbfs用户组的gid
$ cat /etc/group | grep usbfs
usbfs:x:1001:
把当前用户增加到usbfs组
$ sudo gedit /etc/group
把
usbfs:x:1001:
修改为
usbfs:x:1001:User
4. 为USB设备重新设置权限编辑/etc/fstab文件,添加下面两行,注意你的gid可能不是1002
$ sudo gedit /etc/fstab
在末尾加上
# 1001 is the USB group IDI
none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0
重新启动后,应该就可以在客户机中使用USB设备了。
打开phpmyadmin文件夹下libraries目录,修改文件config.default.php,搜索AllowArbitraryServer,将其值改为true (默认为false)。
Ubuntu服务器安装图形界面最简单的就是用下面的命令安装整个桌面版的ubuntu,但不建议在服务器上使用此方法,因为安装桌面相关软件太多。当然也可以安装后再删除。
sudo aptitude install ubuntu-desktop
或
sudo apt-get install ubuntu-desktop
下面说的是自定义安装GNOME桌面的步骤:
1.安装x-windows的基础(必须):
sudo apt-get install x-window-system-core
2.安装gnome基础(必须):
sudo apt-get install ubuntu-desktop
3.安装中文显示(这里是ubuntu11.04的中文相关软件包的名称,其它版本的好像有点不同,可以安装新立得软件管理器后,在VNC连接上后搜索相关的language软件包):
sudo apt-get install language-pack-gnome-zh-hans
sudo apt-get install language-pack-gnome-zh-hans-base
sudo apt-get install language-pack-zh-hans
sudo apt-get install language-pack-zh-hans-base
sudo apt-get install language-support-zh-hans
4.安装登录管理器:
sudo apt-get install gdm
说明: gdm(gnome display manager)即gnome图形界面显示管理器,还有kdm/xdm等,它将使您可以在启动时直接进入GUI桌面环境,而勿需通过 startx 来启动GUI。
5.安装新立得软件管理器(这个东西很方便,有时不记得一些软件名称,直接用这个搜索更好用):
sudo apt-get install synaptic
这样基本上OK了,当然安装了桌面后再安装VNC服务了,要不然安装桌面有什么用
安装vnc
apt-get install -y vnc4server x11vnc
启动VNC(首次使用设置密码)
vncserver
设置你的密码后,会启动VNC
现在可以进入桌面,但是不是gnome桌面,我们还要设置一下
结束VNC进程
pkill -9 vnc
清除日志文件
rm -rf /tmp/.X1*
编辑配置文件
vi ~/.vnc/xstartup
在最底部添加一行
gnome-session &
保存,并启动VNC
vncserver
这样,就可以进入gnome桌面了?
ubuntu的默认端口是5901 (debian通常为1)
注:请勿越步操作
修改分辨率编辑文件/usr/bin/vncserver
查找$geometry
修改端口$vncPort =
debian/ubuntu 语言管理工具http://www.l-yp.com/604.html
WINDOWS:
下载plink,xp用户放入x:/windows下 windows7用户放入x:\Users\当前用户 目录下 (X为当前系统安装目录)。
开始-运行-cmd
plink -N -D Users@IP
plink指令
原版
PuTTY Link: command-line connection utility
Unidentified build, Oct 17 2011 17:11:37
Usage: plink [options] [user@]host [command]
("host" can also be a PuTTY saved session name)
Options:
-V print version information and exit
-pgpfp print PGP key fingerprints and exit
-v show verbose messages
-load sessname Load settings from saved session
-ssh -telnet -rlogin -raw -serial
force use of a particular protocol
-P port connect to specified port
-l user connect with specified username
-batch disable all interactive prompts
The following options only apply to SSH connections:
-pw passw login with specified password
-D [listen-IP:]listen-port
Dynamic SOCKS-based port forwarding
-L [listen-IP:]listen-port:host:port
Forward local port to remote address
-R [listen-IP:]listen-port:host:port
Forward remote port to local address
-X -x enable / disable X11 forwarding
-A -a enable / disable agent forwarding
-t -T enable / disable pty allocation
-1 -2 force use of particular protocol version
-4 -6 force use of IPv4 or IPv6
-C enable compression
-i key private key file for authentication
-noagent disable use of Pageant
-agent enable use of Pageant
-m file read remote command(s) from file
-s remote command is an SSH subsystem (SSH-2 only)
-N don't start a shell/command (SSH-2 only)
-nc host:port
open tunnel in place of session (SSH-2 only)
-sercfg configuration-string (e.g. 19200,8,n,1,X)
Specify the serial configuration (serial only)