{"id":21957262,"url":"https://github.com/blesson-tomy/s4_operating_systems_lab","last_synced_at":"2026-05-09T10:49:50.319Z","repository":{"id":220151722,"uuid":"750892341","full_name":"Blesson-Tomy/S4_Operating_Systems_Lab","owner":"Blesson-Tomy","description":"This repository contains the programs for the Operating Systems Lab that we had in S4.","archived":false,"fork":false,"pushed_at":"2024-08-12T14:37:19.000Z","size":56,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-27T23:37:53.373Z","etag":null,"topics":["c","lab","operating-system"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Blesson-Tomy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-31T14:30:54.000Z","updated_at":"2024-08-12T14:37:22.000Z","dependencies_parsed_at":"2024-02-14T09:41:46.202Z","dependency_job_id":"5f9eca64-332d-48fb-a2f6-168687c71c4b","html_url":"https://github.com/Blesson-Tomy/S4_Operating_Systems_Lab","commit_stats":null,"previous_names":["blesson-tomy/operating-systems-lab"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blesson-Tomy%2FS4_Operating_Systems_Lab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blesson-Tomy%2FS4_Operating_Systems_Lab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blesson-Tomy%2FS4_Operating_Systems_Lab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Blesson-Tomy%2FS4_Operating_Systems_Lab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Blesson-Tomy","download_url":"https://codeload.github.com/Blesson-Tomy/S4_Operating_Systems_Lab/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245010810,"owners_count":20546729,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","lab","operating-system"],"created_at":"2024-11-29T08:52:07.729Z","updated_at":"2026-05-09T10:49:45.283Z","avatar_url":"https://github.com/Blesson-Tomy.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# S4_Operating_Systems_Lab\n\n## BASIC LINUX COMMANDS\n\n## Aim: To implement basic linux commands\n\n## Commands:\n\n### Command 1: pwd\n\nDisplay the working directory\n\nSyntax: pwd\n\n\n### Command 2: ls\n\nTo get the list of all the files or folders\n\nSyntax: ls\n\n\n### Command 3: cd\n\nUsed to change the directory.\n\nSyntax: cd\n\n\n### Command 4: echo \n\nThis command helps us move some data, usually text into a file.\n\nSyntax: echo \u003ctext\u003e\n\n\n### Command 5: mkdir\n\nThis command is used to create a new directory.\n\nSyntax: mkdir \u003cfilename\u003e\n\n\n### Command 6: date\n\nThe date command is used to display date, time, time zone, and more.\n\nSyntax: date\n\n\n### Command 7: touch\n\nThe touch command is used to create empty files. We can create multiple empty files by executing it once.\n\nSyntax:\ntouch \u003cfile name\u003e  \ntouch \u003cfile1\u003e  \u003cfile2\u003e ....  \n\n\n### Command 8: history\n\nThe history command is used to display the history of commands used in the terminal.\n\nSyntax: history\n\n\n### Command 9: nano\n\nUsed to open or create a new file in the terminal for editing.\n\nSyntax: nano \u003cfilename\u003e\n\n\n### Command 10: clear\n\nLinux clear command is used to clear the terminal screen.\n\nSyntax: clear\n\n\n### Command 11: sudo\n\nThe command in Linux is generally used as a prefix for some commands that only superusers are allowed to run. If you prefix any command with “sudo”, it will run that command with elevated privileges or in other words allow a user with proper permissions to execute a command as another user, such as the superuser.\n\nSyntax: sudo \u003ccommand\u003e\n\n\n### Command 12: cat\n\nThe cat command is a multi-purpose utility in the Linux system. It can be used to create a file, display content of the file, copy the content of one file to another file, and more.\n\nSyntax: cat [OPTION]... [FILE]..  \n\n\n### Command 13: man\n\nAn interface to the system reference manuals.\n\nSyntax: man \u003ccommand\u003e\n\n\n### Command 14: uname\n\nOffers information about a Linux machine's operating system and hardware platform\n\nSyntax: uname\n\n\n### Command 15: whoami\n\nPrints effective userid.\n\nSyntax: whoami\n\n\n### Command 16: rm\n\nIt stands for 'remove' and, as the name suggests, it's used to delete files and directories. \n\nSyntax: rm \u003cname\u003e\n\n\n### Command 17: rmdir\n\nThe rmdir command removes the directory, specified by the Directory parameter, from the system. The directory must be empty before you can remove it, and you must have write permission in its parent directory.\n\nSyntax: rmdir \u003cname\u003e\n\n\n### Command 18: cp\nCopy from one file to another.\nSyntax: cp \u003csource_file\u003e \u003cdestination\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblesson-tomy%2Fs4_operating_systems_lab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblesson-tomy%2Fs4_operating_systems_lab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblesson-tomy%2Fs4_operating_systems_lab/lists"}