신원형

update readme.md

Showing 1 changed file with 24 additions and 1 deletions
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
7 7
8 | Name |Version | 8 | Name |Version |
9 | ------ | ------ | 9 | ------ | ------ |
10 -| firefox | 100.0.2 | 10 +| firefox | 100.0.2 or 101.0 |
11 | nodejs | 16.15.0 | 11 | nodejs | 16.15.0 |
12 | npm | 8.10.0 | 12 | npm | 8.10.0 |
13 | geckodriver | 0.31.0-linux64 | 13 | geckodriver | 0.31.0-linux64 |
...@@ -29,6 +29,29 @@ and add setting.json at root directory for channel access ...@@ -29,6 +29,29 @@ and add setting.json at root directory for channel access
29 "pw": "<ECampus PW>" 29 "pw": "<ECampus PW>"
30 } 30 }
31 ``` 31 ```
32 +
33 +## Firefox Installation on AWS EC2
34 +
35 +```sh
36 +$ cd /usr/local
37 +$ wget http://ftp.mozilla.org/pub/firefox/releases/101.0/linux-x86_64/en-US/firefox-101.0.tar.bz2
38 +$ tar xvjf firefox-101.0.tar.bz2
39 +sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
40 +```
41 +
42 +Please Note that some amazon image requires to install dependency manually.
43 +
44 +```sh
45 +$ sudo yum install libXinerama.x86_64 cups-libs dbus-glib
46 +$ sudo yum install gtk3-devel
47 +```
48 +
49 +You can verify that installation is complete via
50 +
51 +```sh
52 +$ firefox -v
53 +```
54 +
32 # Usage 55 # Usage
33 56
34 # Roadmap 57 # Roadmap
......