신원형

Added Firefox Installation

Showing 1 changed file with 35 additions and 7 deletions
...@@ -4,13 +4,17 @@ ...@@ -4,13 +4,17 @@
4 * 조건에 맞는 목적지를 지도와 함께 전송합니다. 4 * 조건에 맞는 목적지를 지도와 함께 전송합니다.
5 5
6 --- 6 ---
7 -1. [Requirements](#requirements) 7 +- [About the Project](#about-the-project)
8 -2. [Installation](#Installation) 8 +- [Requirements](#requirements)
9 -3. [Usage](#Usage) 9 +- [Installation](#installation)
10 -4. [Roadmap](#Roadmap) 10 + - [Firefox Installation on AWS EC2](#firefox-installation-on-aws-ec2)
11 -5. [Contributing](#contributing) 11 +- [Usage](#usage)
12 -6. [License](#license) 12 + - [일정이 있는 경우](#일정이-있는-경우)
13 -7. [Contact](#contact) 13 + - [일정이 없는 경우](#일정이-없는-경우)
14 +- [Roadmap](#roadmap)
15 +- [Contributing](#contributing)
16 +- [License](#license)
17 +- [Contact](#contact)
14 18
15 --- 19 ---
16 20
...@@ -40,6 +44,30 @@ and add setting.json at root directory for channel access ...@@ -40,6 +44,30 @@ and add setting.json at root directory for channel access
40 "pw": "<ECampus PW>" 44 "pw": "<ECampus PW>"
41 } 45 }
42 ``` 46 ```
47 +
48 +## Firefox Installation on AWS EC2
49 +
50 +```sh
51 +$ cd /usr/local
52 +$ wget http://ftp.mozilla.org/pub/firefox/releases/101.0/linux-x86_64/en-US/firefox-101.0.tar.bz2
53 +$ tar xvjf firefox-101.0.tar.bz2
54 +sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
55 +```
56 +
57 +Please Note that some amazon image requires to install dependency manually.
58 +
59 +```sh
60 +$ sudo yum install libXinerama.x86_64 cups-libs dbus-glib
61 +$ sudo yum install gtk3-devel
62 +```
63 +
64 +You can verify that installation is complete via
65 +
66 +```sh
67 +$ firefox -v
68 +```
69 +
70 +
43 # Usage 71 # Usage
44 #### 일정이 있는 경우 72 #### 일정이 있는 경우
45 <img src = "http://khuhub.khu.ac.kr/2018102202/study-or-enjoy/uploads/b63693903e41d13ce90107b24de4dd3c/assignment_1_.png" width = "250"> </img> 73 <img src = "http://khuhub.khu.ac.kr/2018102202/study-or-enjoy/uploads/b63693903e41d13ce90107b24de4dd3c/assignment_1_.png" width = "250"> </img>
......