-
Latest Posts
- Install newest gcc on CentOS 7
- How to disable IPv6 on CentOS 7
- How to connect a Windows Machine with Ansible via Winrm
- How to Stop/Start Tomcat with Ansible
- Installing Docker and Docker-Compose on CentOS with Ansible
- SSH Login Without Password
- Configure Tomcat as a System Service in CentOS
- How to install Tomcat 11 in CentOS 7/8
- Installing ansible with pip
- Installing python3.9 and pip on CentOS 7
- How to install Oracle Database 23c Developer Edition on Docker
- Welcome!
-
Tag Cloud
ansible centos CentOS 7 credentials disk usage ansible docker docker-compose gcc install IPv6 linux oarcle 23c oracle 23c developer edition oracle database pip pip3.9 playbook python python3.9 ssh ssh-keygen stop start service system service tomcat tomcat11 urllib3 windows management with ansible windows winrm winrm without password
Archives
Tag Archives: gcc
Install newest gcc on CentOS 7
Enable repository and install newest gcc with following commands. yum install centos-release-scl yum install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils Activate it and check version. scl enable devtoolset-9 bash gcc –version For make activation permanent add “scl enable devtoolset-9 bash” to end of the the /etc/profile file. Ok.That’s it!