Detailed configuration of wireless network card under Ubuntu Server

Detailed configuration of wireless network card under Ubuntu Server

1. Insert the wireless network card and use the command: iwconfig to check whether the wireless network card exists.

The wireless network card here is wlan1

2. Enable the wireless network card: sudo ifconfig wlan1 up

3. Automatically connect to the router configuration: Use the wpa_passphrase "essid" "key" command to get the content and add it to /home/wireless.conf.

4. Add network card configuration information: Add in /etc/network/interfaces

  • auto wlan1
  • iface wlan1 inet dhcp
  • wpa-conf /home/wireless.conf

5.ifconfig to view the obtained IP address

Finish!

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed explanation of how to build an Ftp server on Ubuntu (success guaranteed)
  • How to decompile android apk in ubuntu environment
  • VMware workstation 12 install Ubuntu 14.04 (64 bit)
  • VMware Workstation 14 Pro installation Ubuntu 16.04 tutorial
  • Solution to Ubuntu not being able to connect to the Internet
  • Solution to the problem that Ubuntu cannot connect to the Internet in the virtual machine
  • Ubuntu16.04 builds php5.6 web server environment
  • How to build nfs service in ubuntu16.04
  • How to modify the time zone and time in Ubuntu system
  • Solution to no Chinese input method in Ubuntu

<<:  Detailed explanation of MySQL instance with SSD storage enabled

>>:  How to implement the paging function of MyBatis interceptor

Recommend

Use a table to adjust the format of the form controls to make them look better

Because I want to write a web page myself, I am al...

MySQL uses inet_aton and inet_ntoa to process IP address data

This article will introduce how to save IP addres...

Sample code on how to implement page caching in vue mobile project

background On mobile devices, caching between pag...

HTML Frameset Example Code

This article introduces a framework made by Frame...

Summary of the unknown usage of "!" in Linux

Preface In fact, the humble "!" has man...

Solution to forgetting MySQL root password in MACOS

MySQL is a relational database management system ...

The easiest way to debug stored procedures in Mysql

A colleague once told me to use a temporary table...

The best solution for implementing digital plus and minus buttons with pure CSS

Preface: For the implementation of digital additi...

MySQL 8.0 New Features - Introduction to Check Constraints

Table of contents Preface Check Constraints Creat...

Use CSS to draw a file upload pattern

As shown below, if it were you, how would you ach...

Nodejs implements intranet penetration service

Table of contents 1. Proxy in LAN 2. Intranet pen...