Questions tagged «debian»

有关Debian官方发行版的问题(稳定,测试或不稳定);如果您使用的是Debian的衍生产品(例如Mint,Ubuntu,Kali等),请改用该发行版的标签。

5
超级牛势力背后的故事是什么?
众所周知,apt-get拥有超级牛的力量,aptitude但没有: $ apt-get --help | grep -i cow This APT has Super Cow Powers. $ aptitude --help | grep -i cow This aptitude does not have Super Cow Powers. 当然,APT还有一个复活节彩蛋: $ apt-get moo (__) (oo) /------\/ / | || * /\---/\ ~~ ~~ ...."Have you mooed today?"... 我很好奇,这个复活节彩蛋背后有故事吗?它的历史是什么?我知道它已经使用了很长时间了-从Debian早期发行版中的apt来源快速复制中,它在Debian 2.2(马铃薯; apt …
286 debian  apt  history 


3
为什么“ ls”突然用单引号引起来用空格包装项目?
我只是注意到,在我的其中一台机器上(运行Debian Sid),只要键入ls任何带空格的文件名,都将单引号引起来。 我立即检查了别名,却发现它们完整无缺。 wyatt@debian630:~/testdir$ ls 'test 1.txt' test1.txt wyatt@debian630:~/testdir$ alias alias ls='ls --color=auto' alias wget='wget --content-disposition' wyatt@debian630:~/testdir$ (图片) 另一个测试,文件名称中包含单引号(也回答jimmij的请求): wyatt@debian630:~/testdir$ ls 'test 1.txt' test1.txt 'thishasasinglequotehere'\''.txt' wyatt@debian630:~/testdir$ touch "'test 1.txt'" wyatt@debian630:~/testdir$ ls ''\''test 1.txt'\''' test1.txt 'test 1.txt' 'thishasasinglequotehere'\''.txt' (图片) 使用新的coreutils-8.26输出进行更新(虽然它的混乱程度要小得多,但是默认情况下仍然很烦人)。感谢PádraigBrady的此打印输出: $ ls "'test 1.txt'" test1.txt 'test 1.txt' "thishasasinglequotehere'.txt" $ ls -N …

4
无法获取jessie反向端口存储库
我将docker映像用作自己开发的基础,该开发将jessie backports存储库添加到其Dockerfile中,并使用该映像安装依赖项。该图像使用以下命令添加存储库: echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list 问题在于,现在从backports存储库中获取软件包失败,并显示以下错误(该错误以前曾起作用): W: Failed to fetch http://ftp.debian.org/debian/dists/jessie-backports/main/binary-amd64/Packages 404 Not Found W: Failed to fetch http://deb.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages 404 Not Found 我查看了该服务器,而这些路径确实不存在。 我试图在Debian backports站点上确定该特定存储库是否仍然可用,但没有发现任何迹象表明该存储库已被弃用或类似的东西。 这是存储库的临时问题,还是jessie-backports存储库不再可用?如果这不是暂时的问题,那么在不升级到较新的Debian稳定版本的情况下,我必须使用哪些选项来使用此存储库或等效存储库?
155 debian  repository 

4
如何在Debian中从Shell添加存储库?
在Ubuntu中,可以通过以下命令添加存储库- sudo add-apt-repository ppa:yannubuntu/boot-repair 由于Ubuntu是基于Debian代码库的,所以我期望在Debian中也能使用,但事实并非如此。 这是什么原因呢? 还有其他一些我可以使用的shell命令吗? 注意:我知道我可以编辑/etc/apt/sources.list,但是我想通过shell来实现。我也想知道为什么当代码库相同时,相同的命令不起作用。
141 shell  debian  apt  repository  ppa 

9
apt-get更新上的“没有可用的公共密钥”
执行时apt-get update,出现以下错误: root@ADS3-Debian6:/home/aluno# apt-get update Atingido http://sft.if.usp.br squeeze Release.gpg Ign http://sft.if.usp.br/debian/ squeeze/contrib Translation-en Ign http://sft.if.usp.br/debian/ squeeze/contrib Translation-pt Ign http://sft.if.usp.br/debian/ squeeze/contrib Translation-pt_BR (...) Obter:10 http://security.debian.org squeeze/updates/non-free i386 Packages [14 B] Baixados 612 kB em 4s (125 kB/s) Lendo listas de pacotes... Pronto There is no public key available for the following …
133 debian 

8
如何安装Python 3.6?
我想安装最新的Python,本文撰写时为3.6。但是,存储库说Python 3.4.2是最新版本。 我试过了: $ sudo apt-get update $ sudo apt-get install python3 python3 is already the newest version. $ python -V Python 3.4.2 要在Windows工作站上升级到Python 3.6,我只需下载一个exe,单击“下一步”几次,就可以了。在Debian Jessie上安装Python 3.6的正确且正式接受的程序是什么?


4
如何通过Debian Squeeze上的Shell与Unix域套接字通信?
我正在运行Debian Squeeze Web服务器。我已经在上面安装了memcached,并配置了memcached以监听Unix域套接字(位于/tmp/memcached.sock),因为它只需要从位于同一服务器上的网站接收消息即可。 似乎工作正常,但我也想通过外壳与memcached通信,以检查它是否在执行我认为正在执行的操作。 memcached通过简单的ASCII协议接受消息(如果我理解正确的话)。如果它正在侦听TCP / IP,则可以通过以下方式向其发送消息nc: $ echo "stats settings" | nc localhost 11211 但是我不知道如何将文本发送到域套接字。 在我的笔记本电脑(运行OS X Lion)上,同时具有nc和telnet(-U并-u分别具有)选项以使用域套接字。但是,在我的Debian Squeeze Web服务器上,这些选项不存在。
99 shell  debian  socket  telnet 

4
我怎么知道我正在运行哪个版本的Debian?
在一个教程中,系统提示“如果您正在运行Squeeze,请遵循以下说明...”和“如果您正在运行Wheezy,请遵循以下其他说明...” 运行时uname,我得到以下信息: Linux dragon-debian 3.2.0-4-686-pae #1 SMP Debian 3.2.63-2+deb7u2 i686 GNU/Linux 该信息足以知道我使用的是Squeeze还是Wheezy还是从其他地方获取?
95 debian  version 

2
gpg:密钥服务器接收失败:没有dirmngr
尝试在Debian Stretch服务器中接收密钥时,出现以下错误: sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF Executing: /tmp/apt-key-gpghome.4B7hWtn7Rm/gpg.1.sh --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory gpg: connecting dirmngr at '/tmp/apt-key-gpghome.4B7hWtn7Rm/S.dirmngr' failed: No such file or directory gpg: keyserver receive failed: No dirmngr
94 debian  apt  gpg 

5
可用服务清单
是否有任何命令可以显示基于我的狂热的Debian操作系统中的所有可用服务? 我知道,为了查看可以使用的所有正在运行的服务service --status-all。
83 debian  services 

3
Debian中的服务如何工作,如何管理它们?
在Windows中,我有服务管理器,在其中可以看到所有可以通过Windows本身启动的系统服务,可以设置它使用的用户,权限管理位于其中,还可以将变量和其他一些信息传递给服务,我可以命名它们,也可以创建一个程序的重复服务,依此类推。所以我在Windows中有一个主要的管理工具。 我如何在Linux中做同样的事情?如何在启动时触发运行“ svnserve”,或者如何配置要在特殊上下文中运行的服务。我如何查看所有“编程”服务?


3
如何更新Linux“定位”缓存
如何更新定位的缓存/索引?我安装了新软件包,并且文件显然还没有索引。那么,为了使索引器触发,我必须提交哪个命令? 我目前正在研究debian jessie(测试):使用Linux mbpc 3.13-1-amd64#1 SMP Debian 3.13.7-1(2014-03-25)x86_64 GNU / Linux
73 debian  locate 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.