AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / server / 问题

问题[make](server)

Martin Hope
user549144
Asked: 2021-01-13 22:34:31 +0800 CST

如何让我的 PHP 源安装使用 /usr/local/programname/lib 或 /usr/local/lib 中的库?

  • 1

如何让我的 PHP Source 安装使用里面的库/usr/local/programname/lib代替或/usr/local/lib?

我尝试将 LD_LIBRARY_PATH 设置为每个程序名称,例如LD_LIBRARY_PATH="/usr/local/programname1/lib:/usr/local/programname2/lib:/usr/local/programname3/lib".

而且,我退出了。甚至运行source /etc/environment(我已将 LD_LIBRARY_PATH 变量放在 /etc/environment 中),甚至重新启动系统。

但是,当我运行时./configure --with-openssl --with-curl,它告诉我 libssl 不存在。

我不想使用apt提供的libssl-devandlibcurl-dev包,因为我需要最新版本来测试。

而且,我注意到:如果我安装程序的 lib 目录/usr/local/lib而不是/usr/local/programname/lib,它可以在不设置任何环境变量的情况下工作。

但是,在我看来,/usr/local/programname/lib更清楚,所以我想使用这种类型的路径。

我怎样才能使 PHP 使用里面的库/usr/local/programname/lib而不是/usr/local/lib?我的意思是,我想/usr/local/programname/lib比其他lib目录更优先。

programname是指安装在 中的每个程序的名称/usr/local。

我什至尝试使用(我在里面/etc/ld.so.conf.d/programname.conf写过),然后运行​​. 但仍然没有运气。/usr/local/programnameldconfig

顺便说一句,我使用的是 Ubuntu 20.10

编辑:

“不要与系统的约定作对” ——我不能就这样继续前进。我必须尝试这样做,否则我会被卡住,并且依赖于 apt 给我的有点旧的包(即使它给了我最新的包,我也不能,例如:使用 http/3 并测试它和更多的..)。而且,将无法进行任何测试。我这样做是为了让我的程序经得起未来的考验,甚至是为了享受这些试验的乐趣。通过使用新程序进行测试。安装/usr/local感觉不太好,因为我测试了多个版本的库。就像我使用 OpenSSL 1.1.1i 和 OpenSSL 3.0.0 以及其他版本进行测试一样。所以,安装到 /usr/local 不会让我受益,但安装到/usr/local/openssl-1.1.1i和/usr/local/openssl-3.0.0会更干净,会节省我更多的时间。我不能每次都make install继续跑步。make uninstall不仅是 OpenSSL,甚至是 cURL 和其他包。

php environment-variables configuration make libraries
  • 2 个回答
  • 151 Views
Martin Hope
20f2c98f50
Asked: 2020-08-10 14:33:00 +0800 CST

如何安装 nginx-module-brotli?

  • 1

我有一台带有 ubuntu 20.04 的服务器

但我无法nginx-module-brotli为我的 nginx 服务器安装。

以下是我用来为 Nginx 安装 Brotli 的命令:

$ sudo apt install git gcc cmake libpcre3 libpcre3-dev zlib1g zlib1g-dev openssl libssl-dev
$ wget https://nginx.org/download/nginx-1.18.0.tar.gz
$ tar zxvf nginx-1.18.0.tar.gz
$ git clone https://github.com/google/ngx_brotli.git
$ cd ~/ngx_brotli
$ git submodule update --init
$ cd ~/nginx-1.18.0
$ ./configure --with-compat --add-dynamic-module=../ngx_brotli
$ make modules
$ sudo cp ./objs/*.so /usr/share/nginx/modules
$ cd

和

$ sudo nano /etc/nginx/nginx.conf

load_module modules/ngx_http_brotli_filter_module.so;
load_module modules/ngx_http_brotli_static_module.so;

ubuntu@ov-ert6:~$ sudo systemctl restart nginx

ubuntu@ov-ert6:~$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

当我测试我的网站时,它在标题中找不到 Brotli:

在此处输入图像描述

ubuntu@ov-ert6:~$ sudo cat /etc/nginx/nginx.conf

load_module modules/ngx_http_brotli_filter_module.so;
load_module modules/ngx_http_brotli_static_module.so;
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}


#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

和

sudo nano /etc/nginx/sites-available/www-example-com.conf

server {
    listen 80 default_server;
    listen [::]:80;
    server_name example.com;

    location / {
        return 301 http://www.example.com$request_uri;
    }
}

server {
    listen 80;
    listen [::]:80;
    server_name www.example.com;
    root /var/www/www-example-com/web;
    index index.php;

    #add_header X-Frame-Options "SAMEORIGIN";
    add_header X-XSS-Protection "1; mode=block";
    #add_header X-Content-Type-Options "nosniff";
    add_header Referrer-Policy "strict-origin";
    add_header Content-Security-Policy "default-src 'self' 'unsafe-inline' https: data:; base-uri 'self';";
    add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
    add_header Feature-Policy "speaker 'none';";

    gzip on;
    gzip_vary on;
    gzip_proxied any;
    gzip_comp_level 6;
    gzip_types text/plain text/css text/xml application/json application/javascript application/xml+rss application/atom+xml image/svg+xml;

    brotli on;
    brotli_comp_level 6;
    brotli_types text/plain text/css text/xml application/json application/javascript application/xml+rss application/atom+xml image/svg+xml;
}
ubuntu compression nginx make
  • 1 个回答
  • 3877 Views
Martin Hope
adoado0
Asked: 2017-02-10 01:46:34 +0800 CST

PHP 编译问题 - 卡在“生成 phar.phar”

  • 0

我在一个“有点自定义”的 Centos 6/cPanel 服务器上从源代码编译 PHP 时遇到了问题。一般来说它过去可以工作,现在不行。在此框中编译了许多不同的 PHP,并且没有更大的问题。现在,任何版本的 PHP 都停留在:

'Generating phar.phar'.

一些输出:

Prerequisite `/root/php-7.0.13/ext/phar/phar/phar.inc' is older than target         `ext/phar/phar/phar.inc'.
  No need to remake target `ext/phar/phar/phar.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/clicommand.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/directorygraphiterator.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/directorytreeiterator.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/invertedregexiterator.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/pharcommand.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/phar.inc'.
  Pruning file `/root/php-7.0.13/ext/phar/phar/phar.php'.
  Pruning file `sapi/cli/php'.
  Finished prerequisites of target file ext/phar/phar.phar'.
  Must remake target ext/phar/phar.phar'.
  Putting child 0x022ef310 (ext/phar/phar.phar) PID 22348 on the chain.
  Live child 0x022ef310 (ext/phar/phar.phar) PID 22348 
  Generating phar.phar
  Reaping winning child 0x022ef310 PID 22348 
  Live child 0x022ef310 (ext/phar/phar.phar) PID 22349 
  Reaping winning child 0x022ef310 PID 22349 
  Live child 0x022ef310 (ext/phar/phar.phar) PID 22350 
  Reaping winning child 0x022ef310 PID 22350 
  Live child 0x022ef310 (ext/phar/phar.phar) PID 22351

我试过make'ing,只有1个线程,但没有帮助。

在“干净”之后:

Considering target file `/root/php-7.0.13/ext/phar/phar/phar.inc'.
  File `/root/php-7.0.13/ext/phar/phar/phar.inc' was considered already.
  Considering target file `/root/php-7.0.13/ext/phar/phar/phar.php'.
  File `/root/php-7.0.13/ext/phar/phar/phar.php' was considered already.
  Considering target file `sapi/cli/php'.
  File `sapi/cli/php' was considered already.
 Finished prerequisites of target file `ext/phar/phar.phar'.
 Must remake target `ext/phar/phar.phar'.
 Need a job token; we don't have children
 Putting child 0x00d53610 (ext/phar/phar.phar) PID 17444 on the chain.
 Commands of `ext/phar/phar.phar' are being run.
 Finished prerequisites of target file `pharcmd'.
 The prerequisites of `pharcmd' are being made.
 Finished prerequisites of target file `all'.
 The prerequisites of `all' are being made.
 Live child 0x00d53610 (ext/phar/phar.phar) PID 17444 
 Generating phar.phar
 Reaping winning child 0x00d53610 PID 17444 
 Live child 0x00d53610 (ext/phar/phar.phar) PID 17445 
 Reaping winning child 0x00d53610 PID 17445 
 Live child 0x00d53610 (ext/phar/phar.phar) PID 17446 
Reaping winning child 0x00d53610 PID 17446 
Live child 0x00d53610 (ext/phar/phar.phar) PID 17447

我尝试使用 make-4.2 而不是默认的 make-3.81,但它没有任何改变。

一些 strace 输出:

stat("/root/php-7.0.13/ext/phar/phar/phar.php", {st_mode=S_IFREG|0755,,st_size=992, ...}) = 0
stat("ext/phar/phar.phar", 0x7ffc5f1a4930) = -1 ENOENT (No such file or directory)
stat("ext/phar/phar/phar.inc", {st_mode=S_IFREG|0644, st_size=790, ...}) = 0
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 16875
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
stat("/root/php-7.0.13/ext/json/json_scanner.c", {st_mode=S_IFREG|0644,  st_size=29634, ...}) = 0
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
vfork()                                 = 16877
fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(3, F_SETFD, 0)                    = 0
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(4, F_SETFD, 0)                    = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
wait4(-1, Generating phar.phar
[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 16877
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=16877, si_status=0, si_utime=0, si_stime=0} ---
rt_sigreturn()                          = 16877
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
vfork()                                 = 16878
fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(3, F_SETFD, 0)                    = 0
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(4, F_SETFD, 0)                    = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 16878
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=16878,si_status=0, si_utime=0, si_stime=0} ---
rt_sigreturn()                          = 16878
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
vfork()                                 = 16879
fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(3, F_SETFD, 0)                    = 0
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(4, F_SETFD, 0)                    = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 16879
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=16879, si_status=0, si_utime=0, si_stime=0} ---
rt_sigreturn()                          = 16879
rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
vfork()                                 = 16880
fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(3, F_SETFD, 0)                    = 0
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(4, F_SETFD, 0)                    = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
wait4(-1, 
php centos6 compilation make
  • 1 个回答
  • 928 Views
Martin Hope
ehime
Asked: 2016-08-06 11:43:18 +0800 CST

尝试安装 svn-1.0.2 失败

  • 0

试图弄清楚这个错误发生了什么,以便我们可以成功安装svn-1.0.2

我正在使用命令,echo -e "\n" |pecl install svn-1.0.2

[email protected][/logs/apache]> echo -e "\n" |pecl install svn-1.0.2
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/svn.so' - /usr/lib64/php/modules/svn.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/geoip.so' - /usr/lib64/php/modules/geoip.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/oauth.so' - /usr/lib64/php/modules/oauth.so: cannot open shared object file: No such file or directory in Unknown on line 0
downloading svn-1.0.2.tgz ...
Starting to download svn-1.0.2.tgz (25,226 bytes)
.........done: 25,226 bytes
4 source files, building
running: phpize
Configuring for:
PHP Api Version:         20131106
Zend Module Api No:      20131226
Zend Extension Api No:   220131226
Please provide the prefix of Subversion installation [autodetect] : Please provide the prefix of the APR installation used with Subversion [autodetect] : building in /var/tmp/pear-build-roota11OW6/svn-1.0.2
running: /var/tmp/svn/configure --with-svn --with-svn-apr
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib
checking for PHP extension directory... /usr/lib64/php/modules
checking for PHP installed headers prefix... /usr/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... gawk
checking for svn support... yes, shared
checking for specifying the location of apr for svn... yes, shared
checking for svn includes... Found libsvn 1.7.4
checking for apr and apr-util... Found apr 1.4.6
libsvn includes: "-I/usr/include/subversion-1 -I/usr/include/apr-1 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE"
libsvn ldflags: "-lsvn_client-1 -lsvn_fs-1 -lsvn_repos-1 -lsvn_subr-1 -L/usr/lib64 -lapr-1"
checking for a sed that does not truncate output... (cached) /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC -DPIC
checking if cc PIC flag -fPIC -DPIC works... yes
checking if cc static flag -static works... no
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.o... (cached) yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating ./config.status
config.status: creating config.h
config.status: executing libtool commands
running: make
/bin/sh /var/tmp/pear-build-roota11OW6/svn-1.0.2/libtool --mode=compile cc -I/usr/include/subversion-1  -I/usr/include/apr-1  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -I. -I/var/tmp/svn -DPHP_ATOM_INC -I/var/tmp/pear-build-roota11OW6/svn-1.0.2/include -I/var/tmp/pear-build-roota11OW6/svn-1.0.2/main -I/var/tmp/svn -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -I/usr/include/subversion-1 -I/usr/include/apr-1 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -DHAVE_CONFIG_H  -g -O2   -c /var/tmp/svn/svn.c -o svn.lo
libtool: compile:  cc -I/usr/include/subversion-1 -I/usr/include/apr-1 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -I. -I/var/tmp/svn -DPHP_ATOM_INC -I/var/tmp/pear-build-roota11OW6/svn-1.0.2/include -I/var/tmp/pear-build-roota11OW6/svn-1.0.2/main -I/var/tmp/svn -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -I/usr/include/subversion-1 -I/usr/include/apr-1 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -DHAVE_CONFIG_H -g -O2 -c /var/tmp/svn/svn.c  -fPIC -DPIC -o .libs/svn.o
/var/tmp/svn/svn.c: In function ‘init_svn_client’:
/var/tmp/svn/svn.c:354: warning: ‘svn_client_get_simple_provider’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:151)
/var/tmp/svn/svn.c:357: warning: ‘svn_client_get_username_provider’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:198)
/var/tmp/svn/svn.c:360: warning: ‘svn_client_get_ssl_server_trust_prompt_provider’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:265)
/var/tmp/svn/svn.c:364: warning: ‘svn_client_get_ssl_server_trust_file_provider’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:214)
/var/tmp/svn/svn.c:367: warning: ‘svn_client_get_ssl_client_cert_file_provider’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:231)
/var/tmp/svn/svn.c:370: warning: ‘svn_client_get_ssl_client_cert_pw_file_provider’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:248)
/var/tmp/svn/svn.c: In function ‘zif_svn_config_ensure’:
/var/tmp/svn/svn.c:454: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_import’:
/var/tmp/svn/svn.c:495: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:497: warning: ‘svn_client_import’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1885)
/var/tmp/svn/svn.c: In function ‘zif_svn_checkout’:
/var/tmp/svn/svn.c:741: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:742: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:753: warning: ‘svn_client_checkout2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1147)
/var/tmp/svn/svn.c: In function ‘zif_svn_cat’:
/var/tmp/svn/svn.c:825: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_ls’:
/var/tmp/svn/svn.c:895: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:906: warning: ‘svn_client_ls2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:4936)
/var/tmp/svn/svn.c: In function ‘zif_svn_log’:
/var/tmp/svn/svn.c:1112: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:1128: warning: ‘svn_client_log3’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:2500)
/var/tmp/svn/svn.c: In function ‘zif_svn_diff’:
/var/tmp/svn/svn.c:1283: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:1284: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:1286: warning: ‘svn_client_diff3’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:2839)
/var/tmp/svn/svn.c: In function ‘zif_svn_cleanup’:
/var/tmp/svn/svn.c:1350: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_revert’:
/var/tmp/svn/svn.c:1391: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:1393: warning: ‘svn_client_revert’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:3704)
/var/tmp/svn/svn.c: In function ‘zif_svn_resolved’:
/var/tmp/svn/svn.c:1433: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:1435: warning: ‘svn_client_resolved’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:3728)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_file_contents’:
/var/tmp/svn/svn.c:1650: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_file_length’:
/var/tmp/svn/svn.c:1692: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_node_prop’:
/var/tmp/svn/svn.c:1734: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_node_created_rev’:
/var/tmp/svn/svn.c:1779: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_dir_entries’:
/var/tmp/svn/svn.c:1824: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_check_path’:
/var/tmp/svn/svn.c:1869: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_repos_open’:
/var/tmp/svn/svn.c:1932: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:1934: warning: ‘svn_repos_open’ is deprecated (declared at /usr/include/subversion-1/svn_repos.h:383)
/var/tmp/svn/svn.c: In function ‘zif_svn_info’:
/var/tmp/svn/svn.c:2026: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2047: warning: ‘svn_client_info’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:5508)
/var/tmp/svn/svn.c: In function ‘zif_svn_export’:
/var/tmp/svn/svn.c:2099: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2100: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2111: warning: ‘svn_client_export3’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:4750)
/var/tmp/svn/svn.c: In function ‘zif_svn_switch’:
/var/tmp/svn/svn.c:2152: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2153: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2161: warning: ‘svn_client_switch’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1440)
/var/tmp/svn/svn.c: In function ‘zif_svn_copy’:
/var/tmp/svn/svn.c:2205: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2206: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2218: warning: ‘svn_client_copy2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:3941)
/var/tmp/svn/svn.c: In function ‘zif_svn_blame’:
/var/tmp/svn/svn.c:2318: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2339: warning: ‘svn_client_blame2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:2670)
/var/tmp/svn/svn.c: In function ‘zif_svn_delete’:
/var/tmp/svn/svn.c:2386: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2388: warning: assignment discards qualifiers from pointer target type
/var/tmp/svn/svn.c:2390: warning: ‘svn_client_delete2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1735)
/var/tmp/svn/svn.c: In function ‘zif_svn_mkdir’:
/var/tmp/svn/svn.c:2459: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2461: warning: ‘svn_client_mkdir2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1630)
/var/tmp/svn/svn.c: In function ‘zif_svn_move’:
/var/tmp/svn/svn.c:2528: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2529: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2531: warning: ‘svn_client_move3’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:4113)
/var/tmp/svn/svn.c: In function ‘zif_svn_proplist’:
/var/tmp/svn/svn.c:2591: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2602: warning: ‘svn_client_proplist2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:4590)
/var/tmp/svn/svn.c:2630: warning: ‘svn_path_local_style’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:82)
/var/tmp/svn/svn.c:2630: warning: ‘svn_path_local_style’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:82)
/var/tmp/svn/svn.c: In function ‘zif_svn_propget’:
/var/tmp/svn/svn.c:2673: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2684: warning: ‘svn_client_propget2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:4484)
/var/tmp/svn/svn.c:2706: warning: ‘svn_path_local_style’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:82)
/var/tmp/svn/svn.c:2706: warning: ‘svn_path_local_style’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:82)
/var/tmp/svn/svn.c: In function ‘zif_svn_repos_create’:
/var/tmp/svn/svn.c:2750: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_repos_recover’:
/var/tmp/svn/svn.c:2795: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2797: warning: ‘svn_repos_recover2’ is deprecated (declared at /usr/include/subversion-1/svn_repos.h:614)
/var/tmp/svn/svn.c: In function ‘zif_svn_repos_hotcopy’:
/var/tmp/svn/svn.c:2835: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2836: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_commit’:
/var/tmp/svn/svn.c:2916: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:2925: warning: ‘svn_client_commit3’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:2018)
/var/tmp/svn/svn.c: In function ‘zif_svn_lock’:
/var/tmp/svn/svn.c:2985: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_unlock’:
/var/tmp/svn/svn.c:3036: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_add’:
/var/tmp/svn/svn.c:3087: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:3089: warning: ‘svn_client_add2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1535)
/var/tmp/svn/svn.c: In function ‘zif_svn_status’:
/var/tmp/svn/svn.c:3193: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:3198: warning: ‘svn_client_status2’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:2364)
/var/tmp/svn/svn.c: In function ‘zif_svn_update’:
/var/tmp/svn/svn.c:3257: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:3262: warning: ‘svn_client_update’ is deprecated (declared at /usr/include/subversion-1/svn_client.h:1315)
/var/tmp/svn/svn.c: In function ‘zif_svn_repos_fs_begin_txn_for_commit’:
/var/tmp/svn/svn.c:3330: warning: ‘svn_repos_fs_begin_txn_for_commit’ is deprecated (declared at /usr/include/subversion-1/svn_repos.h:1920)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_make_file’:
/var/tmp/svn/svn.c:3437: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_make_dir’:
/var/tmp/svn/svn.c:3475: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_apply_text’:
/var/tmp/svn/svn.c:3516: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_copy’:
/var/tmp/svn/svn.c:3564: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:3565: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_delete’:
/var/tmp/svn/svn.c:3604: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_is_file’:
/var/tmp/svn/svn.c:3681: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_is_dir’:
/var/tmp/svn/svn.c:3720: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_change_node_prop’:
/var/tmp/svn/svn.c:3760: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_contents_changed’:
/var/tmp/svn/svn.c:3811: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:3812: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c: In function ‘zif_svn_fs_props_changed’:
/var/tmp/svn/svn.c:3859: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/var/tmp/svn/svn.c:3860: warning: ‘svn_path_canonicalize’ is deprecated (declared at /usr/include/subversion-1/svn_path.h:282)
/bin/sh /var/tmp/pear-build-roota11OW6/svn-1.0.2/libtool --mode=link cc -DPHP_ATOM_INC -I/var/tmp/pear-build-roota11OW6/svn-1.0.2/include -I/var/tmp/pear-build-roota11OW6/svn-1.0.2/main -I/var/tmp/svn -I/usr/include/php -I/usr/include/php/main -I/usr/include/php/TSRM -I/usr/include/php/Zend -I/usr/include/php/ext -I/usr/include/php/ext/date/lib -I/usr/include/subversion-1 -I/usr/include/apr-1 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE  -DHAVE_CONFIG_H  -g -O2   -o svn.la -export-dynamic -avoid-version -prefer-pic -module -rpath /var/tmp/pear-build-roota11OW6/svn-1.0.2/modules  svn.lo -Wl,-rpath,/usr/lib64 -L/usr/lib64 -lsvn_client-1 -lsvn_fs-1 -lsvn_repos-1 -lsvn_subr-1 -lapr-1
/bin/grep: /usr/lib64/libneon.la: No such file or directory
/bin/sed: can't read /usr/lib64/libneon.la: No such file or directory
libtool: link: `/usr/lib64/libneon.la' is not a valid libtool archive
make: *** [svn.la] Error 1
ERROR: `make' failed
svn make pecl
  • 2 个回答
  • 362 Views
Martin Hope
moestly
Asked: 2016-04-26 19:08:52 +0800 CST

PostgreSQL 配置被忽略

  • 0

我有一个自定义 postgresql 构建,它显示以下输出pg_config

BINDIR = /var/buildout.webstacks.xwiki/bin
DOCDIR = /var/buildout.webstacks.xwiki/share/doc/postgresql
HTMLDIR = /var/buildout.webstacks.xwiki/share/doc/postgresql
INCLUDEDIR = /var/buildout.webstacks.xwiki/include
PKGINCLUDEDIR = /var/buildout.webstacks.xwiki/include/postgresql
INCLUDEDIR-SERVER = /var/buildout.webstacks.xwiki/include/postgresql/server
LIBDIR = /var/buildout.webstacks.xwiki/lib
PKGLIBDIR = /var/buildout.webstacks.xwiki/lib/postgresql
LOCALDIR = /var/buildout.webstacks.xwiki/share/locale
MANDIR = /var/buildout.webstacks.xwiki/share/man
SHAREDIR = /var/buildout.webstacks.xwiki/share/postgresql
SYSCONFDIR = /var/buildout.webstacks.xwiki/etc/postgresql
PGXS = /var/buildout.webstacks.xwiki/lib/postgresql/pgxs/src/makefiles/pgxs.mk
配置 = '--prefix=/var/buildout.webstacks.xwiki' '--sysconfdir=/var/buildout.webstacks.xwiki/etc'
CC = gcc
CPPFLAGS = -D_GNU_SOURCE
CFLAGS = -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv
CFLAGS_SL = -fpic
LDFLAGS = -Wl,--根据需要 -Wl,-rpath,'/var/buildout.webstacks.xwiki/lib'
LDFLAGS_SL =
LIBS = -lpgport -lz -lreadline -lcrypt -ldl -lm
版本 = PostgreSQL 8.4.9

配置文件应该在/var/buildout.webstacks.xwiki/etc/postgresql.

但是当我在该路径中添加或编辑配置文件时,它们会被忽略。相反,postgres 使用数据目录中的文件,在initdb.

./configure根据我的命令,如何让 postgres 使用我的配置(另外) 。

configuration postgresql make
  • 1 个回答
  • 607 Views
Martin Hope
GeoffreyF67
Asked: 2010-01-09 08:41:03 +0800 CST

为什么macports找不到make

  • 8

我正在尝试像这样运行macports:

port install php5

但是,当我这样做时,我收到此错误:

Error: Unable to open port: can't read "build.cmd": Failed to locate 'make' in path: '/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin' or at its MacPorts configuration time location, did you move it? 

所以我查看了我的路径:

declare -x PATH="/Developer/usr/bin:/opt/subversion/bin:/opt/local/bin:/opt/local/sbin:/usr/local/php5/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" 

然后确保 make 位于其中一个目录中:

ls -l /Developer/usr/bin/make

$ lrwxr-xr-x 1 root admin 7 Aug  7 16:47 /Developer/usr/bin/make -> gnumake

并输入:

make

产生:

make: *** No targets specified and no makefile found.  Stop.

所以我知道它就在那里。

但是macports找不到它。有任何想法吗?

G人

mac-osx port path make
  • 3 个回答
  • 10611 Views
Martin Hope
John
Asked: 2009-06-25 21:11:09 +0800 CST

使用 wget 安装 make

  • -1

如何在 CentOS 上make安装?wget

我试过了:

cd /tmp wget ftp.gnu.org/pub/gnu/make/make-3.81.tar.gz 
tar xfz make-3.81.tar.gz 
cd make-3.81 PATH=/usr/local/bin:/usr/bin:/bin 
./configure patch -p1<make-3.81-cygwin.patch patch -p0<make-3.81-cygwin_MAKE_expansion.patch PATH=/usr/local/bin:/usr/bin:/bin 
make PATH=/usr/local/bin:/usr/bin:/bin 
make install 

但是,我收到一条错误消息,指出我没有可接受的 C 编译器。

centos wget make
  • 2 个回答
  • 13761 Views
Martin Hope
Allan Anderson
Asked: 2009-06-13 07:56:57 +0800 CST

并行制造的最佳硬件/软件解决方案?

  • 2

我们有一个基于 Linux 的构建系统,其中一个构建包含许多不同的嵌入式目标(启用了相应的不同驱动程序和功能集),每个目标都使用另一个单一的主源代码树构建。

与其尝试将我们的基于 make 的系统转换为对多进程更友好的系统,我们只想找到同时为所有这些目标启动构建的最佳方法。我不确定如何获得最佳性能。

我考虑了以下可能的解决方案:

  • 许多单独的构建机器。缺点:共享代码的大量副本,或从(慢)共享驱动器工作。更多系统需要维护。
  • 较少数量的多处理器机器(可能是双四核),具有快速条带化 RAID 本地存储。缺点:我不确定它将如何扩展。似乎体积会成为瓶颈,但我不知道这些天 Linux 处理 SMP 的能力如何。
  • 类似的 SMP 机器,但带有运行 VMware 的管理程序或 Solaris 10。这是愚蠢的,还是会提供一些调度好处?缺点:没有解决存储瓶颈问题。

我打算坐下来尝试这些可能性,但我想检查一下我是否遗漏了什么。谢谢!

smp make
  • 3 个回答
  • 126 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve