Dualbooting windows and linux

Dualbooting windows and linux About the hardware I’m using I am using an Asus TUF Gaming A15 laptop with Ryzen 7 5800H and RTX 3060, with 2 SSDs, one 512GB and one 1TB. I have windows installed on the 512GB SSD and I want to install Fedora on the 1TB SSD. Prep Ensure secure boot is off To disable secure boot go to the bios/uefi and disable it. Every laptop has a different way to access the bios/uefi, so you might have to look it up....

July 7, 2024 · 2 min · 286 words · Aum Pauskar

Docker

Docker What is docker Docker is a platform for developers and sysadmins to develop, deploy, and run applications with containers. The use of Linux containers to deploy applications is called containerization. Containers are not new, but their use for easily deploying applications is. Why docker Consistency: Docker provides a consistent environment for your application from development all the way through production. Isolation: Docker containers are completely isolated. This means that your application will run the same way no matter where it is deployed....

March 31, 2024 · 8 min · 1594 words · Aum Pauskar

Operating systems

Operating systems Bases of an operating system Execute user programs and make solving user problems easier Make the computer system convenient to use Use the computer hardware in an efficient manner A computer system can be divided roughly into four components: the hardware, the operating system, the application programs, and the users. Use of an operating system The operating system is responsible for the following activities in connection with process management Process creation and deletion Process suspension and resumption Provision of mechanisms for process synchronization Provision of mechanisms for process communication Provision of mechanisms for deadlock handling Operating systems is a resource allocator and it is a control program....

December 30, 2023 · 18 min · 3718 words · Aum Pauskar