Posts

Showing posts from May, 2022

Docker: Volume

Docker commands: docker ps: To show all the running containers in docker docker build <path> -t <image_name>: It creates the image from the Dockerfile in the current folder. docker run -it <image_name or image id>: It start the container     Volume is the storage outside the container. It is used to share the data among different containers at runtime. Docker Volume commands docker volume list docker volume create <volume_name> All the volumes are stored at /var/lib/docker/volumes/_data

Linux commands

 Linux commands To rename the file                    mv <source file> <target file name>

How to connect Ubuntu Linux From Windows 10 using PuTTY & WinSCP

 Title:    Accessing the Linux Machine installed in Virtual Box through WinSCP or Putty, follow below steps In Virtual Box, Open settings configuration Open Network tab Select the "Bridge Adapter" Start the Linux/Ubuntu Machine Install ssh using "Sudo apt install ssh" Check the IP address of your machine using "ifconfig" Copy Inet address  Open WinSCP in your host machine and use the same IP address Use your Linux machine credential to connect to the Linux machine You can connect to putty using the same process. Thank you. Happy coding :) Regards, Kiran.