Skip to content

Commit

Permalink
2024-06-25 21:18:04
Browse files Browse the repository at this point in the history
Affected files:
.obsidian/workspace.json
src/content/blog/how-to-connect-wifi-on-ubuntu-server.md
  • Loading branch information
gyunseo committed Jun 25, 2024
1 parent bc40c33 commit 12b2e69
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 8 deletions.
29 changes: 21 additions & 8 deletions .obsidian/workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,21 @@
"source": false
}
}
},
{
"id": "b7da5d0984d87f55",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "src/content/blog/how-to-connect-wifi-on-ubuntu-server.md",
"mode": "source",
"source": false
}
}
}
]
],
"currentTab": 1
}
],
"direction": "vertical"
Expand Down Expand Up @@ -85,7 +98,7 @@
"state": {
"type": "backlink",
"state": {
"file": "src/content/blog/install-neovim-using-aqua-on-ubuntu.md",
"file": "src/content/blog/how-to-connect-wifi-on-ubuntu-server.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
Expand All @@ -102,7 +115,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "src/content/blog/install-neovim-using-aqua-on-ubuntu.md",
"file": "src/content/blog/how-to-connect-wifi-on-ubuntu-server.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
Expand All @@ -125,7 +138,7 @@
"state": {
"type": "outline",
"state": {
"file": "src/content/blog/install-neovim-using-aqua-on-ubuntu.md"
"file": "src/content/blog/how-to-connect-wifi-on-ubuntu-server.md"
}
}
}
Expand All @@ -148,8 +161,10 @@
"table-editor-obsidian:Advanced Tables Toolbar": false
}
},
"active": "eee94e44d418180a",
"active": "b7da5d0984d87f55",
"lastOpenFiles": [
"src/content/blog/install-neovim-using-aqua-on-ubuntu.md",
"src/content/blog/how-to-connect-wifi-on-ubuntu-server.md",
"dist/posts/aqua를-이용해-wsl-ubuntu에-neovim을-설치하자.png",
"src/content/blog/manage-cli-program-version-using-aqua-proj-on-windows.md",
"src/content/blog/astro-paper-4.md",
Expand Down Expand Up @@ -178,7 +193,6 @@
"dist/tags/ostep/1",
"dist/posts/우테코-2차-소감문.png",
"dist/posts/우테코-1차-소감문.png",
"dist/posts/virtual-lans.png",
"src/content/blog/boj-11725-트리의-부모-찾기.md",
"src/content/blog/boj-1935-후위-표기식2.md",
"src/content/blog/boj-15666-N과-M-(12).md",
Expand All @@ -194,7 +208,6 @@
"src/content/blog/computer-science-qna.md",
"src/content/blog/programmers-보호소에서-중성화한-동물.md",
"src/content/blog/programmers-즐겨찾기가-가장-많은 식당-정보-출력하기.md",
"src/content/blog/boj-15649-N과-M-(1).md",
"src/content/blog/at-coder-beginner-contest-346-up-solve.md"
"src/content/blog/boj-15649-N과-M-(1).md"
]
}
38 changes: 38 additions & 0 deletions src/content/blog/how-to-connect-wifi-on-ubuntu-server.md
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"
```

이런식으로 바꿔줘야 합니다.

0 comments on commit 12b2e69

Please sign in to comment.