Linux_Best Practice_04_Ubuntu 18.04

Posted tlfox_2006

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux_Best Practice_04_Ubuntu 18.04相关的知识,希望对你有一定的参考价值。

 

 

1. network setup

  • open up "network"  -> manually set IP. 
  • To check -> ip address 

 

2. proxy setup

  • open up "network"
  • set to lasproxy.is.ad.igt.com 9000

 

3. Disply -> Resolution

 

4. responsory setup

Creating  an Apt Proxy Conf File

Apt loads all configuration files under /etc/apt/apt.conf.d. We can create a configuration specifically for our proxy there, keeping it separate from all other configurations.

  1. Create a new configuration file named proxy.conf.
    sudo touch /etc/apt/apt.conf.d/proxy.conf
  2. Open the proxy.conf file in a text editor.
    sudo vi /etc/apt/apt.conf.d/proxy.conf
  3. Add the following line to set your HTTP proxy.
    Acquire::http::Proxy "http://user:password@proxy.server:port/";
  4. Add the following line to set your HTTPS proxy.
    Acquire::https::Proxy "http://user:password@proxy.server:port/";
  5. Save your changes and exit the text editor.

Your proxy settings will be applied the next time your run Apt.

 

do apt upgrade/update to solve not found issue. 

 

以上是关于Linux_Best Practice_04_Ubuntu 18.04的主要内容,如果未能解决你的问题,请参考以下文章

markdown js_cc_04_practice_array_intermediate

markdown js_cc_04_practice_array_elementary

Practice3_2_vector_sort_struct

SDNU_ACM_ICPC_2020_Winter_Practice_1st

markdown js_cc_05_practice_func_elementary

markdown js_cc_02_practice_if_intermediate