伟大的开源操作系统

        这个世界上总有那么几个人做出了软件的不平凡。软件始终是一个新旧迭代很快的技术,很多优秀的产品或者是技术也会慢慢被时代所磨灭,消失在记忆里……
        软件不同于艺术品或者是建筑物,软件的生命周期注定了他的保留时间。
        Linux这一伟大的软件产品却闪烁着伟大的光芒,由于他的开源、社区支持、包容让它走到现在。感谢Linus Benedict Torvalds,Linux将来也会越来越好。

After updating your package information, the essential package 'ubuntu-minimal' could not be located. This may be because you have no official mirrors listed in your software sources

2022年04月07日

最近将 Ubuntu 16.04 升级到 20.04 的时候出现了如下错误:Invalid package informationAfter updating your package information, the essential package 'ubuntu-minimal' could not be located. This may be because you have no o...

Linux 查看日志的6种方法

2022年04月06日

作为一名后端程序员,和 Linux 打交道的地方很多,不会看 Linux 日志,为日后的故障排除带来了很多不便,为了使工作顺利开展,需要经常查看生产环境中的各种日志,总结了在 Linux 6 种查看日志的方法。Linux查看日志的命令有多种: tail、cat、tac、head、echo等,本文只介绍几种常用的方法。tailtail 是查看后面多少行日志,这个是我最常用的一种查看方式:命令格式: ...

dpkg: error processing package initramfs-tools

2022年02月26日

今天在系统升级的时候出现了如下提示: Reading package lists... Building dependency tree... Reading state information... 0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade. 2 not fully installed or ...

Data from such a repository can't be authenticated and is therefore potentially dangerous to use.

2022年02月25日

最近在更新系统的时候出现了如下提示:W: GPG error: http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.2 Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D68F...

Linux 服务与进程区别

2022年01月08日

在 Linux 中,服务只是守护进程的另一个名称,它是在后台运行的客户端/服务器应用程序。服务会持续监听传入的请求并根据给定的请求发送响应。进程只是可以在前台或后台运行的应用程序或脚本。一个服务可以是多个进程,例如httpd(网络服务)或数据库。出于性能原因,将服务拆分为多个进程。快速检查我正在工作的机器显示 6 个 apache2 进程和 8 个 nfsd(NFS 守护程序)进程。但这只是 2 ...

如何设置winscp显示隐藏文件

2022年01月06日

快捷键:Ctrl + Alt + H

dpkg-deb: error: <decompress> subprocess returned error exit status 2

2022年01月04日

最近在更新 Ubuntu 20.04 Minal 的时候出现了如下错误:dpkg-deb (subprocess): decompressing archive member: lzma error: compressed data is corrupt dpkg-deb: error: subprocess returned error exit status 2 dpkg: error ...

SCP key 相关操作

2021年12月31日

今天需要将国外服务器上的文件同步到国内的腾讯云服务器上,我将生成的 .ppk 文件上传到国外服务器上。之后使用如下命令:scp -r id_rsa.ppk /var/CDN root@vps.domain.com:/var/CDN之后提示:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING:...