Linux 精简安装后需要安装的工具

Linux 精简安装后需要安装的工具

当你完成 Linux 机器的安装后,你安装的第一个软件包是什么?你首先获得的工具是什么?

在我的 Debian 系统中,我得到了 pv、screen、ccze 等,像这样


apt-get install pv screen ccze
请发送您的反馈。

答案1

在我设置的每个主机上我都安装了这些。

apt-get install openssh-server sudo screen iproute resolvconf \
                build-essential tcpdump vlan mii-diag firehol \
                apticron atsar ethtool denyhosts rdist bzip2 xclip \
                etckeeper git-core less unzip mtr-tiny curl gdebi-core \
                xbase-clients rsync psmisc iperf lshw wget pastebinit

答案2

我喜欢 Zoredache 的列表,因此我想将这些添加到该列表中:

zsh
nmap
scapy
vim

对于非包装:

vmware server 1.x

答案3

我不再使用 apt-get 了!

aptitude -R install vim lsof htop bash-completion less ncftp ssh iostat debian-goodies

之后,一些基本设置:

echo "source /etc/bash_completion" >> ~/.bashrc
echo "alias ..='cd ..' >> ~/.bashrc
echo '"\e[A": history-search-backward' >> inputrc
echo '"\e[B": history-search-forward' >> inputrc
update-alternatives --set editor /usr/bin/vim.basic

答案4

不要忘记将“lsof”添加到列表中。该命令非常方便。

相关内容