在Ubuntu上从源代码安装Dante
我在但丁身份验证方面有问题,因此我试图根据这个用户的说法从源代码中安装:
https://serverfault.com/questions/611537/danted-socks-proxy-with-authentication
我表演了./configure,make,和make install。
我的安装日志是这里。
我不知道从哪里开始服务。我尝试过"/etc/init.d/danted start“,但它没有工作/缺失。我错过了哪一步?
现在,我的bin文件夹中有以下内容:
Makefile Makefile.am Makefile.in socksify socksify.in这是我第一次尝试安装不使用apt的东西。如有任何建议,敬请见谅。我假设我需要将文件移动到不同的目录并创建一个启动?但我不知道该怎么一步一步地做。
发布于 2015-11-01 11:41:13
/etc/init.d/或其他任何地方都没有安装脚本。
以下是已安装文件的列表:
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/dante
/usr/share/doc/dante/BUGS
/usr/share/doc/dante/VERSION
/usr/share/doc/dante/NEWS
/usr/share/doc/dante/README
/usr/share/doc/dante/LICENSE
/usr/share/doc/dante/CREDITS
/usr/share/doc/dante/README.ldap
/usr/share/doc/dante/INSTALL
/usr/share/doc/dante/doc
/usr/share/doc/dante/doc/SOCKS4.protocol
/usr/share/doc/dante/doc/README.survey
/usr/share/doc/dante/doc/Makefile.in
/usr/share/doc/dante/doc/README.usage
/usr/share/doc/dante/doc/socks.conf.5
/usr/share/doc/dante/doc/README.socksify
/usr/share/doc/dante/doc/Makefile.am
/usr/share/doc/dante/doc/rfc1929.txt
/usr/share/doc/dante/doc/SOCKS4A.protocol
/usr/share/doc/dante/doc/socksify.1
/usr/share/doc/dante/doc/sockd.8
/usr/share/doc/dante/doc/sockd.conf.5
/usr/share/doc/dante/doc/rfc1928.txt
/usr/share/doc/dante/doc/rfc1961.txt
/usr/share/doc/dante/doc/Makefile
/usr/local
/usr/local/bin
/usr/local/bin/socksify
/usr/local/include
/usr/local/include/socks.h
/usr/local/sbin
/usr/local/sbin/sockd
/usr/local/lib
/usr/local/lib/libsocks.a
/usr/local/lib/libdsocks.so
/usr/local/lib/libdsocks.la
/usr/local/lib/libsocks.la
/usr/local/lib/libsocks.so.0.1.1
/usr/local/share
/usr/local/share/man
/usr/local/share/man/man5
/usr/local/share/man/man5/socks.conf.5.gz
/usr/local/share/man/man5/sockd.conf.5.gz
/usr/local/share/man/man8
/usr/local/share/man/man8/sockd.8.gz
/usr/local/share/man/man1
/usr/local/share/man/man1/socksify.1.gz
/usr/local/lib/libsocks.so
/usr/local/lib/libsocks.so.0你必须自己写开始脚本。或者,您可以在/etc/sockd.conf中创建配置之后,在终端中启动socks服务器。读man 5 socks.conf。
/usr/local/sbin/sockdhttps://askubuntu.com/questions/691726
复制相似问题