forked from satnaing/astro-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Affected files: .obsidian/workspace.json src/content/blog/how-to-connect-wifi-on-ubuntu-server.md
- Loading branch information
Showing
2 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
author: Gyunseo Lee | ||
title: Ubuntu Server에서 WIFI 연결하기 | ||
pubDatetime: 2024-06-25T21:14:00+09:00 | ||
modDatetime: 2024-06-25T21:14:00+09:00 | ||
featured: false | ||
draft: false | ||
tags: | ||
- Linux | ||
- Ubuntu | ||
description: CLI환경에서 WIFI연결하기는 어렵네요... | ||
ogImage: "" | ||
--- | ||
|
||
## Table of contents | ||
|
||
## 들어가며 | ||
|
||
[이 블로그 참고](https://changun516.tistory.com/120) | ||
|
||
`sudo vi /etc/netplan/50-cloud-init.yaml`에서 SSID랑 password입력해주면 되는데, 그럼 매번 재부팅할 때마다 | ||
`sudo ip link set wlp2s0 up` 이걸 해줘야 합니다. | ||
자동으로 up되게 해주려면 | ||
`sudo vi /etc/network/interfaces`으로 interfaces file을 | ||
|
||
``` | ||
auto wlp2s0 | ||
iface wlp2s0 inet dhcp | ||
allow-hotplug wlp2s0 | ||
wpa-ssid "ssid" | ||
wpa-psk "password" | ||
``` | ||
|
||
이런식으로 바꿔줘야 합니다. |