Answer by Cloud Cho for ifconfig missing after Ubuntu 18.04 install
I had to do:sudo apt-get install net-toolssudo apt autoremoveI guess that the second line be optional.My runtime system: Operating System: Ubuntu 18.04
View ArticleAnswer by Red Pill for ifconfig missing after Ubuntu 18.04 install
This makes the copying of IP addies simpler:alias ifconfig="ip -c a | sed -e 's/\// \//g'"(otherwise that subnet slash prevents doubleclick->select of only the IP)
View ArticleAnswer by Brend for ifconfig missing after Ubuntu 18.04 install
as addition to @vidarlo answer, you can put alias ifconfig='ip -c a' to .bash_aliases if you have typing habit.
View ArticleAnswer by vidarlo for ifconfig missing after Ubuntu 18.04 install
ifconfig is deprecated, and has been so for quite a number of years. The new kid in town is the ip command, which can configure IP's, routes, and everything associated with networks.You can install...
View Articleifconfig missing after Ubuntu 18.04 install
I've just installed Ubuntu 18.04 and selected "minimal install". I then tried to run ifconfig in the terminal and got the following message-bash: ifconfig: command not foundHow come the net-tools...
View Article