๊ด€๋ฆฌ ๋ฉ”๋‰ด

Wookang makes AI

์šฐ๋ถ„ํˆฌ ํฌ๋กฌ ์„ค์น˜ ๋ณธ๋ฌธ

Developments/์šฐ๋ถ„ํˆฌ

์šฐ๋ถ„ํˆฌ ํฌ๋กฌ ์„ค์น˜

ํ‘ธ๋ฅธ๊นƒ๋ฐœ๐Ÿณ๏ธ 2018. 1. 26. 14:51
  • ํฌ๋กฌ ์„ค์น˜

  • ์ฒ˜์Œ์—๋Š” chromium์„ ์ผ๋Š”๋ฐ ๋ฒ„๊ทธ๊ฐ€ ์ข€ ์žˆ์–ด ๋‹ค์‹œ ์›๋ž˜ ํฌ๋กฌ์„ ์„ค์น˜

  • https://www.linuxbabe.com/ubuntu/install-google-chrome-ubuntu-16-04-lts

  • deb ํŒŒ์ผ๋กœ ๋ฐ”๋กœ ์„ค์น˜ํ•˜๋ ค ํ•˜์˜€์œผ๋‚˜ ์˜์กด์„ฑ ๋ฒ„๊ทธ ์ƒ๊น€.

  • ๋ฒ„๊ทธ๊ฐ€ ์—†๋‹ค๋ฉด ๊ทธ๋ƒฅ deb ํŒŒ์ผ ๋”๋ธ”ํด๋ฆญํ•ด์„œ ์„ค์น˜ํ•˜๋ฉด ๋œ๋‹ค.


  • terminal์—์„œ๋„ ๋งˆ์ฐฌ๊ฐ€์ง€๋กœ ์˜์กด์„ฑ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒ.

  • ์•„๋ž˜์™€ ๊ฐ™์ด sudo apt-get -f install ๋กœ ํ•ด๊ฒฐ.


  • ๋ณธ๊ฒฉ์ ์œผ๋กœ ์„ค์น˜ํ•ด๋ณด์ž.

For those of you who like to hone their command line skills, here is how to install Google Chrome on Ubuntu 16.04/17.10 using terminal.


Press CTRL+ALT+T to open a terminal window, then edit sources.list file with nano text editor. You need to enter your password.


  • sudo nano /etc/apt/sources.list

Use the down arrow key to scroll to the bottom of this file. Copy the following APT line and paste it at the end of the file.


  • deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

linuxbabe@xenial: ~_011


Press CTRL+O to save the file. Then press CTRL+X to exit out of this file. After that, enter the following command to download Googleโ€™s signing key.


  • wget https://dl.google.com/linux/linux_signing_key.pub

Then use apt-key to add it to your keyring so the package manager can verify the integrity of Google Chrome package.


  • sudo apt-key add linux_signing_key.pub

Now update package list and install the stable version of Google Chrome.


  • sudo apt update

  • sudo apt install google-chrome-stable


Comments