Centos

Centos

1348
Views

How to modify your DNS on mac OSX Mojave and El Capitan 2020

OthersBritt Maree posted the article • 0 comments • 1348 views • 2019-09-11 11:19 • data from similar tags

From this tutorial, you will learn how to modify your dns on your macOS. 
 

Tools:
Mac laptop
 
 1. Go to your mac os System Preferences option, click the apple icon on the top left screen .
 

 
2.  Click on Network
 

 
3. Select the first connection in your list and click Advanced
 

 
 
 
 
 
4. Select the DNS tab and add 208.67.222.222 and 208.67.220.220 to the list of DNS servers. Click OK
 

 
5. cache and web browser caches to ensure that your new DNS configuration settings take immediate effect.



At the point, we highly suggest that you flush your DNS resolver cache and web browser caches to ensure that your new DNS configuration settings take immediate effect.
 
Video Instruction:
 
 





  view all
From this tutorial, you will learn how to modify your dns on your macOS. 
 

Tools:
Mac laptop
 
 1. Go to your mac os System Preferences option, click the apple icon on the top left screen .
 

 
2.  Click on Network
 

 
3. Select the first connection in your list and click Advanced
 

 
 
 
 
 
4. Select the DNS tab and add 208.67.222.222 and 208.67.220.220 to the list of DNS servers. Click OK
 

 
5. cache and web browser caches to ensure that your new DNS configuration settings take immediate effect.



At the point, we highly suggest that you flush your DNS resolver cache and web browser caches to ensure that your new DNS configuration settings take immediate effect.

 
Video Instruction:
 
 






 
2089
Views

i heard the newest version of ubuntu doesn't work very well on computers that are 4 years old and older, does linux-mint 18.3 have similar issues?

QuestionsTomas replied • 2 users followed • 1 replies • 2089 views • 2018-11-26 16:45 • data from similar tags

2053
Views

I am using fedora dualbooted in my asus laptop everything fine but all of sudden I lost wifi connection

QuestionsFelix replied • 2 users followed • 1 replies • 2053 views • 2018-11-26 16:38 • data from similar tags

2110
Views

People talk about "learning Ubuntu". It seems simple enough to navigate the desktop to me. What am I missing , because I love to learn new things?

QuestionsAlex replied • 2 users followed • 1 replies • 2110 views • 2018-11-26 16:17 • data from similar tags

2028
Views

RTX 2070, does it has high quality?

Questionszahirkelloud replied • 10 users followed • 9 replies • 2028 views • 2018-11-24 19:26 • data from similar tags

1905
Views

I started using Ubuntu on a bootable usb drive

QuestionsTomas replied • 2 users followed • 1 replies • 1905 views • 2018-10-31 13:58 • data from similar tags

1906
Views

Can u guys suggest me one stable kernel for ubuntu 18.04.1 becasue im having random freezes with fresh install ubuntu with kernel 4.18.8

QuestionsCyril replied • 2 users followed • 1 replies • 1906 views • 2018-10-21 16:48 • data from similar tags

1984
Views

I'm gonna work on from the kernel on my actual machine? or should I just fire a distro on quemo and start?

QuestionsMaurice replied • 2 users followed • 1 replies • 1984 views • 2018-10-21 16:45 • data from similar tags

2000
Views

Can someone please help me with an error in ubuntu?

QuestionsEdikan replied • 2 users followed • 1 replies • 2000 views • 2018-10-21 16:41 • data from similar tags

2286
Views

I am building an image with WordPress and own templates. Unfortunately this takes long time, at least 5 minutes most of the time.

QuestionsRoman replied • 4 users followed • 3 replies • 2286 views • 2018-10-20 01:29 • data from similar tags

2319
Views

How to install and start ipmitool on Ubuntu/Debian ,step by step tutorial

OthersCHARLIE posted the article • 0 comments • 2319 views • 2018-09-30 18:53 • data from similar tags

1. We need use two core modules
 
modprobe ipmi_si
modprobe ipmi_devintf
echo ipmi_si >> /etc/modprobe
echo ipmi_devintf >> /etc/modprobe2. Install ipmitool via apt-get
 
apt-get install ipmitool3. List ipmi   network infos
 
ipmitool lan print4. List users
 
ipmitool user list 1 view all
1. We need use two core modules
 
modprobe ipmi_si
modprobe ipmi_devintf
echo ipmi_si >> /etc/modprobe
echo ipmi_devintf >> /etc/modprobe
2. Install ipmitool via apt-get
 
apt-get install ipmitool
3. List ipmi   network infos
 
ipmitool lan print
4. List users
 
ipmitool user list 1
2145
Views

Did you already start BBR on your own server?

Reply

QuestionsNora posted a question • 1 users followed • 0 replies • 2145 views • 2018-09-29 02:16 • data from similar tags

2179
Views

Failed to start Docker Application Container Engine on centos7

Questionshans replied • 2 users followed • 1 replies • 2179 views • 2018-09-28 03:02 • data from similar tags

1382
Views

How to install Python3.6.5 on Debian9

OthersElias posted the article • 0 comments • 1382 views • 2018-09-25 23:48 • data from similar tags

1. check installed python version
 
python
Python 2.7.9 (default, Mar 1 2015, 18:22:53)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
2. update software packages
 
apt-get update
apt-get upgrade
3. install some essential packages
 
aptitude -y install gcc make zlib1g-dev libffi-dev libssl-devif alert -bash: aptitude: command not found ,you need have to install aptitude
 
apt-get install aptitude4. download python3.6.5
 
wget [url=https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz]https://www.python.org/ftp/pyt ... 5.tgz[/url]
 
 
5. unzip it
 
tar -xvf Python-3.6.5.tgz
 
6.add authority to this file
 
chmod -R +x Python-3.6.57. enter and install it
 
cd Python-3.6.5/
./configure8. move to other file 
 
./configure --prefix=/opt/python3.6.5you would see this infomation
If you want a release build with all optimizations active (LTO, PGO, etc), please run ./configure --enable-optimizations.9. install some other packages
aptitude -y install libffi-dev libssl-devmake && make installif you can see information as follows ,you installed it successfully
Collecting setuptools
Collecting pip
Installing collected packages: setuptools, pip
Successfully installed pip-9.0.1 setuptools-28.8.010. clean
 
make clean
make distclean
  view all
1. check installed python version
 
python
Python 2.7.9 (default, Mar 1 2015, 18:22:53)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

2. update software packages
 
apt-get update
apt-get upgrade

3. install some essential packages
 
aptitude -y install gcc make zlib1g-dev libffi-dev libssl-dev
if alert -bash: aptitude: command not found ,you need have to install aptitude
 
apt-get install aptitude
4. download python3.6.5
 
wget [url=https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz]https://www.python.org/ftp/pyt ... 5.tgz[/url]

 
 
5. unzip it
 
tar -xvf Python-3.6.5.tgz

 
6.add authority to this file
 
chmod -R +x Python-3.6.5
7. enter and install it
 
cd Python-3.6.5/
./configure
8. move to other file 
 
./configure --prefix=/opt/python3.6.5
you would see this infomation
If you want a release build with all optimizations active (LTO, PGO, etc), please run ./configure --enable-optimizations.
9. install some other packages
aptitude -y install  libffi-dev libssl-dev
make && make install
if you can see information as follows ,you installed it successfully
Collecting setuptools
Collecting pip
Installing collected packages: setuptools, pip
Successfully installed pip-9.0.1 setuptools-28.8.0
10. clean
 
make clean 
make distclean

 
1960
Views

Which C++ ide should I use on Ubuntu

QuestionsDkiptoo replied • 4 users followed • 3 replies • 1960 views • 2018-09-23 22:54 • data from similar tags

1979
Views

What kinds of linux distribution you are using for your desktop?

QuestionsDkiptoo replied • 3 users followed • 2 replies • 1979 views • 2018-09-23 22:54 • data from similar tags

1848
Views

Why are so many deep learning platforms using Ubuntu?

Questionskevin replied • 2 users followed • 1 replies • 1848 views • 2018-09-22 23:55 • data from similar tags

2179
Views

Failed to start Docker Application Container Engine on centos7

Reply

Questionshans replied • 2 users followed • 1 replies • 2179 views • 2018-09-28 03:02 • data from similar tags