zoukankan      html  css  js  c++  java
  • How to install Google Chrome Browser on Kali Linux

    Download Google Chrome

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

    Install Google Chrome

    The easiest way to install google chrome on your Kali Linux is to by use of

    gdegi which will automatically download all depended packages.First install gdegi:

    apt install gdebi-core
    

    Once ready, install the actual google chrome package:

    gdebi google-chrome-stable_current_amd64.deb
    

    Start Google Chrome

    To start Google Chrome, open up a terminal and run google-chrome command:

    google-chrome --no-sandbox
    

    But it is not safe to run google-chrome without sandbox.

    Run Google Chrome as standard user

    useradd -m chromeuser
    

    To run google chrome use command:

    apt install gksu
    
    gksu -u chromeuser google-chrome
    

    Configure Google Chrome to Use a Proxy Server

    vim ~/.bashrc
    

    Add following Content to ~/.bashrc

    alias chrome='google-chrome --proxy-server="socks://127.0.0.1:1080" --no-sandbox --user-data-dir'
    

    Enable the configuration

    source ~/.bashrc
    

    Run Google Chrome

    chrome
    

    NOTE: run Google Chrome in this way that without sandbox is NOT safe.

  • 相关阅读:
    学习进度条--第十四周
    第二次团队冲刺--9
    第二次团队冲刺--8
    课堂练习--最少花费的购买书籍
    第二次团队冲刺--7
    第二次团队冲刺--6
    第二次团队冲刺--5
    软工第四周进度表
    软工第四周过程总结
    个人作业之二柱子四则运算2升级版
  • 原文地址:https://www.cnblogs.com/freedom-try/p/12626439.html
Copyright © 2011-2022 走看看