ChinaUnix.net
相关文章推荐:

generate makefile automatically

Anyone know how to generate PDF file with iText by importing xml into iText and return pdf? I found some example via Internet but its didn't show how to create a custom tag to draw table and cell. Please advise.

by toms1981 - Java - 2007-06-28 16:33:33 阅读(1535) 回复(0)

相关讨论

常用的东西: generate random variable with non-uniform distribution. 文件: generation distribution from uniform distribution.pdf 大小: 135KB 下载: 下载 文件: pareto from uniform.pdf 大小: 27KB 下载: 下载 常用的distribution都包括了。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/14802/showart_157089.html

by pipehappy - 网络技术文档中心 - 2006-08-18 11:13:04 阅读(771) 回复(0)

系统总报: Asterisk died with code 1. automatically restarting Asterisk. 这个错误信息,请问是什么原因呢.

by laoguo - VoIP开发技术 - 2007-06-15 09:27:38 阅读(3515) 回复(1)

After installed Solaris 8, my ultra 10 automatically shut off in 30 minutes. Which file can I modify to disable it? Thanks first.

by lamborghini - Solaris - 2003-01-29 10:22:38 阅读(874) 回复(2)

#!/bin/sh # # script to generate system configuration info # echo "Number and speed of CPUs" echo "------------------------" /usr/sbin/psrinfo -v # echo "Memory and device tree information" # echo "----------------------------------" # /usr/sbin/prtconf echo "CPU,Cache,Brd,Memory,Sbus slot info " echo "------------------------------------" /usr/platform/`uname -i`/sbin/prtdiag echo "Solaris...

by netsure - Solaris - 2008-06-03 00:13:40 阅读(1809) 回复(4)

e3000 Solaris 8 boot error saying "rpcbindkeyserv: failed to generate host's netname": starting rpc services: rpcbindkeyserv: failed to generate host's netname when es establishing root's key. keyserv done. Setting netmask of hme0 to 255.255.255.0 Setting default interface for multicast: add net 224.0.0.0: 停在这里不动了,但是能够ping通,有nfs服务,怎样解决?? [ 本帖最后由 inhe 于 2006-2-6 10:58 ...

by inhe - Solaris - 2006-02-07 08:48:08 阅读(1378) 回复(7)

在LINUX学习安装MYSQL,遇到了问题,自己翻译了一下手册,和大家共享吧。 Generally, you start the mysqld server in one of these ways: 1.By invoking mysqld directly. This works on any platform. . 2.By running the MySQL server as a Windows service. This can be done on versions of Windows that support services (such as NT, 2000, and XP). The service can be set to start the server automatically when Wi...

by garfield61 - PHP - 2006-01-09 22:31:56 阅读(1138) 回复(0)

i found ppp would shutdwon after a short time that send or request nothing to internet. how to deal with it. thanks!

by raecol - BSD - 2003-03-31 00:56:41 阅读(1115) 回复(1)

大家好,我是个高中生,高中1年纪。 最近在学习linux下的编程。 // 文件main.c #include #include "hello.h" int main() { str_printf("hello"); return 0; } // hello.h #ifndef HELLO_H_ #define HELLO_H_ void str_printf(const char *str); #endif // hello.c #include "hello.h" void str_printf(const char *str) { printf("hello.c:%s\n", str); } 请问makefile文件该怎么写?

by 写自己的操作系 - C/C++ - 2009-07-27 17:15:17 阅读(2606) 回复(13)

test.h #ifndef _TEST_H_ #define _TEST_H_ void print(); #endif test.c #include #include "test.h" void print() { printf("hello,world\n"); } main.c #include "test.h" int main() { print(); return 0; } makefile: mycpp: main.o test.o gcc -o mycpp main.o test.o main.o: main.c test.h gcc -c main.c test.o: test.c gcc -c test.c makefile...

by hr_it - C/C++ - 2008-09-17 00:10:10 阅读(3904) 回复(11)