由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - help
相关主题
Help on 'make'中文编辑器(Unix)
按你们的经验,这个错误是由什么引起的?UNIX SHELL 下中文
[转载] Help ! hwo to get the # of cpu's ???is there any good alternative software for CXterm?
questionHow to view chinese character in Linux or Unix
能这样么?CXTERM 终结说明
How to check OS information ?How to use Chinese under Unix ?
help: where can I download the Chinese font!xset 的问题
About install cxterm on HP-Unix system. Help如何在UNIX下看中文
相关话题的讨论汇总
话题: shell话题: unix话题: ld话题: path话题: library
进入Unix版参与讨论
1 (共1页)
w*****s
发帖数: 71
1
我用unix下的framemaker生成一文件,现在希望convert to
windows下能用的word文件.不知哪位有相关的办法.
较急...多谢帮忙...
b*******n
发帖数: 1
2
unix 下怎么样上bbs并且能看到中文?用什么软件呢?thanks
f****u
发帖数: 12
3
cxterm
欲知详情,请按'X'.

【在 b*******n 的大作中提到】
: unix 下怎么样上bbs并且能看到中文?用什么软件呢?thanks
s****l
发帖数: 78
4
install cce or gce (wzce) in console
or install cxterm for X-windows
or install chinese support for X-windows, then normal telnet can do

【在 b*******n 的大作中提到】
: unix 下怎么样上bbs并且能看到中文?用什么软件呢?thanks
l******t
发帖数: 108
5
我登录以后module初始化的shell是bash,怎么设置
成初始化的shell是csh?
m*******m
发帖数: 182
6

man vipw

【在 l******t 的大作中提到】
: 我登录以后module初始化的shell是bash,怎么设置
: 成初始化的shell是csh?

m*****e
发帖数: 4193
7
chsh

【在 l******t 的大作中提到】
: 我登录以后module初始化的shell是bash,怎么设置
: 成初始化的shell是csh?

l******t
发帖数: 108
8
i got "permission denied" when run vipw :(

【在 m*******m 的大作中提到】
:
: man vipw

m*******m
发帖数: 182
9
run it as root.

【在 l******t 的大作中提到】
: i got "permission denied" when run vipw :(
l******t
发帖数: 108
10
sign, i cannot get a root

【在 m*******m 的大作中提到】
: run it as root.
相关主题
How to check OS information ?中文编辑器(Unix)
help: where can I download the Chinese font!UNIX SHELL 下中文
About install cxterm on HP-Unix system. Helpis there any good alternative software for CXterm?
进入Unix版参与讨论
l*l
发帖数: 225
11
The module read /etc/default and /etc/skle when root add a user or
just use adduser command.
the default shell of anynew user will be defined by /etc/default/adduser.
So tell root to change that file if needed.

【在 l******t 的大作中提到】
: 我登录以后module初始化的shell是bash,怎么设置
: 成初始化的shell是csh?

l******o
发帖数: 25
12
what does the following error msg mean?
set LD_LIBRARY_PATH ../usrlib
export LD_LIBRARY_PATH
mkfontdir .
ld.so.1: mkfontdir: fatal: relocation error: file /usr/openwin/server/lib/libfont.so.1: symbol serverClient: referenced symbol not found
t.so.1: symbol serverClient: referenced symbol not found
*** Signal 9
make: Fatal error: Command failed for target `fonts.dir'
how can I do?
thank you.
a*****i
发帖数: 4391
13
set is a csh/tcsh command and export is a bash one
You should use export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../usrlib if you are using
bash as your shell.

【在 l******o 的大作中提到】
: what does the following error msg mean?
: set LD_LIBRARY_PATH ../usrlib
: export LD_LIBRARY_PATH
: mkfontdir .
: ld.so.1: mkfontdir: fatal: relocation error: file /usr/openwin/server/lib/libfont.so.1: symbol serverClient: referenced symbol not found
: t.so.1: symbol serverClient: referenced symbol not found
: *** Signal 9
: make: Fatal error: Command failed for target `fonts.dir'
: how can I do?
: thank you.

l******o
发帖数: 25
14
oh, I use csh.
is there export in csh?

【在 a*****i 的大作中提到】
: set is a csh/tcsh command and export is a bash one
: You should use export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../usrlib if you are using
: bash as your shell.

e****d
发帖数: 895
15
How to calculate add, minus, time, division in Shell script?
Thanks
D**e
发帖数: 10169
16
you can use 'bc', not very convenient, use perl bah.

【在 e****d 的大作中提到】
: How to calculate add, minus, time, division in Shell script?
: Thanks

F****r
发帖数: 34
17
我对这个不太熟,现在手头也没有书。
记得以前用过,现在试了一下可以。
我用的是Unix C shell.
> @ e = 6
> @ f = 7
> @ g = $e + $f
> echo $g
13
> @ h = $e - $f
> echo $h
-1
> @ j = $e * $f
> echo $j
> @ w = 2
> @ r = $e / $w
> echo $r
3
除法好像是整数相处,想起他的小数,加减。
我就不记得了。你可以找Unix C shell 得书查一查。
注意符号之间的空格。
也许我知道的太少了,请大虾们指正。

【在 e****d 的大作中提到】
: How to calculate add, minus, time, division in Shell script?
: Thanks

e****d
发帖数: 895
18
Thanks

【在 F****r 的大作中提到】
: 我对这个不太熟,现在手头也没有书。
: 记得以前用过,现在试了一下可以。
: 我用的是Unix C shell.
: > @ e = 6
: > @ f = 7
: > @ g = $e + $f
: > echo $g
: 13
: > @ h = $e - $f
: > echo $h

l*******r
发帖数: 2
19
I want to augment disksim(a storage system simulator developed in c) with some
other parameter, but I don't know how to start. I have it's source code. Maybe
the first thing is to understand disksim's coding structure (function
relation).
are there any methods (or tools) can let me quickly undstand the simulator?
If you were me, what you would do?
3q
s*****i
发帖数: 650
20
how to see the solaris version in unix?
T********r
发帖数: 6210
21
uname?

【在 s*****i 的大作中提到】
: how to see the solaris version in unix?
c******y
发帖数: 37
22
uname -r
cat /etc/release

【在 s*****i 的大作中提到】
: how to see the solaris version in unix?
1 (共1页)
进入Unix版参与讨论
相关主题
如何在UNIX下看中文能这样么?
Unix 下的中文环境How to check OS information ?
谁能告诉我怎么在unix下装中文系统啊,help: where can I download the Chinese font!
[转载] 中文流览问题About install cxterm on HP-Unix system. Help
Help on 'make'中文编辑器(Unix)
按你们的经验,这个错误是由什么引起的?UNIX SHELL 下中文
[转载] Help ! hwo to get the # of cpu's ???is there any good alternative software for CXterm?
questionHow to view chinese character in Linux or Unix
相关话题的讨论汇总
话题: shell话题: unix话题: ld话题: path话题: library