UnixFAQ2003
UnixFAQ2003,UnixFAQ2003
1、问:在使用UNIX是经常会出现BACKSPACE等键不能正确使用的问题,请问如何解决?
答:
这其实是一个键盘布局不对应的问题,即UNIX使用的键盘布局和我们通常使用的WINDOWS键盘布局不同,可以通过设置客户端软件的方式来实现,也可以在UNIX中使用类似下面的命令来屏蔽。
1.set the DEL as the backspace:
# stty erase
The screen will show "stty erase ^?",Enter to run the command.
2.set the BACKSPACE as the backspace:
# stty erase
The screen will show "stty erase ^H",Enter to run the command.
2、问:HP-UX如何MOUNT PC格式的光盘?
答:
#nohup /usr/sbin/pfs_mountd &
#nohup /usr/sbin/pfsd &
#/usr/sbin/pfs_mount -t rrip -x unix /dev/dsk/c5t2d0 /cdrom
3、问:HP-UX中如何察看光盘路径?
答:
#ioscan -fnC disk|more
4、问:HP-UX中如何启用FTP?
答:
关于FTP的问题小可以写一篇文章,大可以写一本书了,这里只是就事论事,不谈高深:)
与FTP相关的有/etc/inetd.conf,/etc/ftpusers,/etc/shells几个文件,其中/etc/shells中列举可以ftp的shells。
5、问:AIX中如何更改TAR的2M限制?
答:
在装完AIX时,TAR是有2M限制的,原因在于系统的文件大小有2M限制,我们可以
vi /etc/security/limits
将fsize的值改成 -1(意为无限制)后重起系统即可。
5、问:如何将AIX从32bit转换成64bit?
答:
AIX 5L是支持64bit的,但default knernal却是32bit,我们可以通过下面的方法来更改:
ln -sf /usr/lib/boot/unix_64 /unix
ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix
bosboot -ad /dev/ipldevice
shutdown -Fr
重起后通过下面的命令来确认:
bootinfo -y
bootinfo -K
6、问:如何设置文件oracle成-rwsr-s--x权限??
答:
chmod 6751 oracle
7、如何在netterm中一次连接多个进程?
在 Options > Setup > SmartButton keys 中的Label输入标示,Transmitted Key Data输入要运行的命令,如:
sqlplus system/system@hawk1 ^M! sqlplus system/system@hawk1 ^M! sqlplus system/system@hawk1 ^M! sqlplus system/system@hawk1 ^M! sqlplus system/system@hawk1 ^M! sqlplus system/system@hawk1 ^M! sqlplus system/system@hawk1 ^M!!
这样登陆后可以在窗口上方看到相应的label,直接点击label就可以实现多次登录了,这里是7次。