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.
|
|
|
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?
|