Linux/Kali_Linux

칼리 리눅스 크롬 설치 / Install Chrome on Kali Linux

옥뀨 2020. 6. 30. 17:23

본격적으로 리눅스에 필요하다고 생각하는 프로그램들을 차례대로 설치해보도록 하겠다.

Let's install programs that we think are necessary for Linux in order.

 

그 중 가장 첫 번째는 크롬 브라우저이다.

The first of these is the Chrome browser.

 

먼저 패키지를 업데이트 하자.

Let's update the package first.

 

업데이트만 하면 되지만 필자는 업그레이드까지 같이 해준다.

You only need to update, but I do the upgrades as well.

 

"update, upgrade, dist-upgrade, autoremove, clean, &&" 에 대한 설명은

https://information-security-vlog.tistory.com/6를 참고하자.

"For instructions on update, upgrade, dist-upgrade, autoremove, and clean, &&" see

https://information-security-vlog.tistory.com/6.

 

$ sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade &&

sudo apt-get autoremove && sudo apt-get clean

패키지 업데이트 / Package Update

이제 구글에서 deb파일을 받아오자.

Now let's get the deb file from Google.

 

"deb 확장자 파일"은 데비안의 소프트웨어 패키지 확장자이며 데비안 기반의 GNU/리눅스 배포판(우분투 등)에서

동작한다.

The "deb extension file" is Debian's software package extension and works with Debian-based GNU/Linux distributions (such as Ubuntu).

 

여기서 사용하는 "wget" 명령어는 터미널에서 웹 서버로부터 콘텐츠를 가져오는 명령어이다.

The "wget" command used here is a command to fetch content from a web server, in a terminal.

 

$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

deb 파일 다운로드 / deb file download

다운로드가 완료되면 "ls" 명령어를 쳐서 다운로드 받은 파일을 확인해보자.

When the download is complete, check the downloaded file by typing "ls" command.

 

여기서 "ls" 명령어는 "list" 의 약자로 파일의 목록을 확인하는 명령어이다.

Here, "ls" command is a command to check the list of files with short for "list".

 

리스트 목록에 "google-chrome-stable_current_amd64.deb" 가 나오면 다운로드를 잘 마친 것이다.

If "google-chrome-stable_current_amd64.deb" appears in the list, the download is complete.

 

다운로드 받은 파일을 설치해보자.

Let's install the downloaded file.

 

$ sudo apt-get install ./google-chrome-stable_current_amd64.deb

크롬 설치 / install chrome

설치가 완료되면 메뉴창에 들어가서 크롬을 검색하여 잘 설치되었는지 확인해보자.

When the installation is complete, let's go into the menu window and search for

Chrome to see if it is installed successfully.

 

크롬이 잘 표시되면 설치는 끝난 것이다.

If Chrome displays well, installation is complete.

크롬 설치 완료 / Chrome installation complete

클릭하여 잘 동작하는지도 확인해보자.

Click to see if it works.

 

잘 작동한다.

Works fine.

작동 확인 / Operation check

아까 받았던 다운로드 파일은 필요가 없어졌으니 지워주도록 하자.

Now that the download file you received earlier is no longer needed, let's delete it.

 

여기서 사용할 "rm" 명령어는 "remove" 의 약자로 파일 및 디렉토리를 삭제하는 명령어이다.

The "rm" command to be used here is an abbreviation of "remove" to delete files and directories.

 

rm 뒤에 오는 "-r" 옵션은 "reculsive"의 약자로 디렉터리와 하위 내용까지 삭제하는 명령어이다.

The "-r" option after rm is an abbreviation for "reculsive" and is a command to delete the directory and

sub-contents.

 

r은 쓰지 않아도 되는 옵션인데 필자는 rf 옵션을 쓰는 게 손에 베어있다.

r is an option that does not need to be used, but I am used to using the rf option.

 

"-f" 옵션은 "force" 의 약자로 말그대로 존재하는 파일을 강제로 삭제하는 옵션이다.

The "-f" option is an abbreviation for "force" and is an option to forcibly delete existing files.

 

$ rm -f google-chrome-stable_current_amd64.deb

deb 파일 삭제 / Deb file deletion

설치가 완료되었으니 앞으로 크롬을 이용해보자.

Now that the installation is complete, let's use Chrome in the future.