Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the skills of Ubuntu

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "what are the Ubuntu skills". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's ideas to study and learn "what are the Ubuntu skills"?

View the physical address of the current network card

Sudo arp-a | awk'{print $4}'

Sudo ifconfig eth0 | head-1 | awk'{print $5}'

Let the network support nat now

Sudo echo 1 > / proc/sys/net/ipv4/ip_forward

Sudo iptables-t nat-I POSTROUTING-j MASQUERADE

View routing information netstat-rn:sudo route-n

Manually add and delete a route

Sudo route add-net 192.168.0.0

Netmask 255.255.255.0 gw 172.16.0.1

Sudo route del-net 192.168.0.0

Netmask 255.255.255.0 gw 172.16.0.1

The method of modifying the MAC address of Network Card

Sudo ifconfig eth0 down # turn off the network card

Sudo ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE # and then change the address

Sudo ifconfig eth0 up # and then start the network card

Add a service sudo update-rc.d service name defaults 99

Delete a service: sudo update-rc.d service name remove

Temporarily restart a service: / etc/init.d/ service name restart

Temporarily shut down a service: / etc/init.d/ service name stop

Configure which sudo update-alternatives is used by the default Java-- config java

Modify user profile: sudo chfn userid

Set up a proxy for apt: export http_proxy= http://xx.xx.xx.xx:xxx

Modify system login information: sudo vim / etc/motd

Convert the file name from GBK to UTF8:sudo apt-get install convmv convmv-r-f cp936-t utf8-- notest-- nosmart *

Quickly find a file: whereis filename find directory-name file name

View file type: file filename

Display the contents of the last 6 lines of the xxx file: tail-n 6 xxx

Thank you for your reading, the above is the content of "what are the Ubuntu skills?" after the study of this article, I believe you have a deeper understanding of what Ubuntu skills have, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report