Skip to content

LinuxTips

Niall Cargill edited this page Mar 9, 2017 · 4 revisions

Configuring sudo
Installing Chrome

### 'sudo -i' without password

As root enter visudo

add the following to the file:

<user> ALL=NOPASSWD: ALL

### installing chrome using yum

Add the google repos:

  1. create the file /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
  1. create the file /etc/yum.repos.d/google-x86_64.repo
[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
  1. install chrome: yum install google-chrome-stable
Clone this wiki locally