After completing this internship at Linux world informatics under the guidance of My Mentor Mr. Vimal Dga Sir, I am feeling very glad before starting the internship I did not know anything about Jenkins where it is used, why is it so important in today's industry. I thought it might be a basic internship about Jenkins but after 3 -4 lectures I realized that it's more than what I expected . Sir taught us not only to create jobs and nodes in Jenkins but also its integration with git Kubernetes, pipeline structure, and Managing users and Security..
I thank Vimal Daga sir and LinuxWorld Informatics Pvt. Ltd. for everything I learned…
For installing docker you first need to setup Yum repo. Lets get started..
We will use following commands —
- su - root // switch to “root” user
- [root@dhcppc3 ~]# cd /etc/yum.repos.d/
[root@dhcppc3 yum.repos.d]# touch docker.repo
3. Add the Following lines in the file docker.repo
[docker]
name = docker
baseurl = https://download.docker.com/linux/centos/7/x86_64/stable/
gpgcheck=0

4. [root@dhcppc3 yum.repos.d]# yum repolist
Introduction to flutter…..
Flutter is an open-source UI software development kit created by Google. It is used to develop cross platform applications for Android, iOS, Linux, Mac, Windows, Google Fuchsia, and the web from a single codebase.
Lets start creating app using simple steps…
Step 1: Create flutter app using these commands
flutter create myapp_linux
cd myapp_linux
step 2: On your linux machine make sure the httpd software is install and its running..
you can run following command to do so..
yum install httpd
systemctl start httpd
systemctl enable httpd
step 3: Create a file name app.py inside folder /var/www/cgi-bin/ and add the following code..
make it executable using chmod +x app.py
and disable firewall
systemctl stop firewalld
setenforce 0

step 5 :
Add the following code in myapp_linux