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

TinyEditor is a simple and easy-to-use HTML WYSIWYG editor

A few days ago, I introduced to you a domestic xh...

How to set password for mysql version 5.6 on mac

MySQL can be set when it is installed, but it see...

Significantly optimize the size of PNG images with CSS mask (recommended)

This article is welcome to be shared and aggregat...

MySQL Tutorial: Subquery Example Detailed Explanation

Table of contents 1. What is a subquery? 2. Where...

Sample code for html list box, text field, and file field

Drop-down box, text field, file field The upper p...

Example of usage of keep-alive component in Vue

Problem description (what is keep-alive) keep-ali...

Linux RabbitMQ cluster construction process diagram

1. Overall steps At the beginning, we introduced ...

What to do if you forget your mysql password

Forgot your MySQL password twice? At first I did ...

td width problem when td cells are merged

In the following example, when the width of the td...

The difference between ${param} and #{param} in MySQL

The parameter passed by ${param} will be treated ...

Analysis of slow insert cases caused by large transactions in MySQL

【question】 The INSERT statement is one of the mos...

Tips for optimizing MySQL SQL statements

When faced with a SQL statement that is not optim...