LoveUnix » AIX -IBM UNIX » 《走入IBM小型机世界》答疑和勘误
让LU留住您的每

一天 让LU博客留住您的每一天
2008-9-5 08:43 netbbs
P239

强烈不建议使用r命令。

应该是强烈建议不使用r命令吧:lol   既然不建议,怎么强烈啊。

2008-9-5 08:44 netbbs
多少页回头再一下,
pci-x 的带宽的,1,066M ,写成了1.066M

2008-9-8 00:34 xialele
其实word做出版不好 ,老大试试pdf

2008-9-8 00:35 老农
LS,那是出版社要求的

2008-9-8 09:06 飞夜
《走出IBM 小型机纠错能力考察世界》

《走出IBM 小型机纠错能力考察世界》— 每走过该世界的一个地方,发现一个问题,走出后工资涨1K,走完该世界的所有角落,你就是当前小型机世界的富豪了!:victory:

2008-9-10 00:16 老农
先说一下:走完之后有MM不?:$

2008-9-10 16:46 xiongqq_521
其实这个问题,很多人都想问,看来龙大哥为我们道出了心声

2008-9-16 21:28 rockhai
orian,你那本“解密IBM群集技术”出了没有?

如题,在99页,看你提到这本书,很是期待啊!

2008-9-17 07:42 orian
明年底或者后年初。。。:sad

2008-9-17 22:32 yanxi
有电子档吗想要

2008-9-18 01:50 老农
不要总想不劳而获:L

2008-9-19 09:28 木鱼脑壳
[quote]原帖由 [i]yanxi[/i] 于 2008-9-17 22:32 发表 [url=http://www.loveunix.com/redirect.php?goto=findpost&pid=832553&ptid=87377][img]http://www.loveunix.com/images/common/back.gif[/img][/url]
有电子档吗想要 [/quote]
书都没出版,把个电子档发到网上,人家还出个鸟书啊???
有点常识好不好??

2008-9-19 16:32 eagle
也买了一本,上书店买的,太大了,呵呵

2008-9-19 18:19 orian
谢谢!锻炼身体有点太轻,每天上下班带着就当5公里负重越野吧!:lu4:

2008-10-19 17:03 workaholic
[quote]原帖由 [i]orian[/i] 于 2008-9-19 18:19 发表 [url=http://bbs.loveunix.net/redirect.php?goto=findpost&pid=833447&ptid=87377][img]http://bbs.loveunix.net/images/common/back.gif[/img][/url]
谢谢!锻炼身体有点太轻,每天上下班带着就当5公里负重越野吧!:lu4: [/quote]

你可别逗我笑了 ;P

2008-10-22 11:14 zhou0953
好书,我还没买,急切盼望楼主能够尽快第二版,我买第二版:P

2008-10-22 16:11 潇潇雨竹
[quote]原帖由 [i]zhou0953[/i] 于 2008-10-22 11:14 发表 [url=http://www.loveunix.com/redirect.php?goto=findpost&pid=841796&ptid=87377][img]http://www.loveunix.com/images/common/back.gif[/img][/url]
好书,我还没买,急切盼望楼主能够尽快第二版,我买第二版:P [/quote]


等上半年时间吧?

2008-10-25 13:07 pskill
很好的一本书:lu4: :lu4:

222页 笔误
4.用户资源使用限制
由于传统的Unix系统是[color=Red]部队[/color]每个用户使用资源进行限制,任何用户都可以平等地占用系统资源,为防止[color=Red]某个用户多度使用系统资源[/color],导致系统崩溃

2008-10-25 19:13 haiwailangzi
我们也统一订购了一本《走入IBM小型机世界》,这本书我暂时看了一点,的确介绍的很不错。但是毕竟很多属于笔误,希望大家都可以提出,让Orian去随时更新一下,也许下一版就会避免这些问题了。有时校稿的也会存在不认真的问题,害了我们读者。支持Orian这本书!

2008-10-26 06:54 orian
谢谢楼上,正在改正中。。。。希望大家多多指教

2008-11-2 11:54 diyxyj
108页的程序报错,奇怪

108页的程序报错,奇怪,难道我用法不正确...

[xxxtest:root:/db2backup:] ./tests.sh
[color=blue]./tests.sh[4]: 0403-057 Syntax error at line 4 : `(' is not expected.[/color]
[xxxtest:root:/db2backup:] cat tests.sh
# include <stdio.h>
# include <sys/core.h>
void main(int argc, char *argv[])
{
        FILE *corefile;
        struct core_dumpx c_file;
        char command[256];
        if (argc !=2) {
            fprintf(stderr, "Usage: %s <corefile>\n", *argv);
            exit(1);
        }
        if ((corefile = fopen(argv[1], "r")) == NULL) {
           perror(argv[1]);
           exit(1);
        }
        fread(&c_file,sizeof(c_file),1,corefile);
        fclose(corefile);
        sprintf(command,"lquerypv -h %s 6E0 64|head -1|awk '{print $6)'", argv[1]);
        printf("Core created by:  \n");
        system(command);
        printf("Signal number and cause of error number:  %i\n", c_file.c_signo);
        printf("Core file type: %i\n", c_file.c_flag);
        printf("Number of core dump modules: %i\n", c_file.c_entries);
        printf("Core file format number: %i\n", c_file.c_version);
        printf("Thread identifier: %i\n", c_file.c_flt.th.ti_tid);
        printf("Process identifier %i\n", c_file.c_flt.th.ti_pid);
        printf("Current effective priority: %i\n", c_file.c_flt.th.ti_pri);
        printf("Processor Usage: %i\n", c_file.c_flt.th.ti_cpu);
        printf("Processor bound to: cpu%i\n", c_file.c_flt.th.ti_cpuid);
        if (c_file.c_flt.th.ti_cpu>1)
           printf(*Last Processor: cpu%i\n",c_file.c_flt.th.ti_affinity);
        exit(0);
}
[xxxtest:root:/db2backup:] oslevel -s
5200-10-06-0835

2008-11-3 06:02 orian
楼上老兄,这是C程序,需要编译的,你自己看看,改成shell也很容易

2008-11-5 14:56 xp_cmdshell
昨天刚到手的新书,一口气看了50页,版面有一些顺序觉得不太对劲,也遇到过错别字啦,呵呵,能理解作者,
非常喜欢这本书,打算用10天看完
:P

这下终于走进IBM小鸡世界了

2008-11-6 13:47 plwyzhao
书中对于raid4有这么一句解释“由于使用单一专属的Parity disk来存放parity data,因此在写入数据时,会造成瓶颈”,不就是多了一块盘往里面加数据么,为什么在写的时候会有瓶颈呢?初学者的问题,希望能给出答案的给个答案,或者指个路说明一下我需要看哪些资料能解惑吧。多谢了

页: 1 2 [3] 4


Powered by Discuz! Archiver 5.5.0  © 2001-2006 Comsenz Inc.