Learning#9 : Common Commands run on Linux MID Server (Integrations)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2023 01:11 AM
Hi All,
If you are working on integration with third part application via MID Server. Some common commands you should know running on Linux MID Server:
1. pwd - find the current path you are in
2. cd <destination path> - Go to the destination path from the current path
3. Exit - exit from current user profile
4. Sudo - get the elevated access (super admin access)
5. cd ~ - Come back to home
6. cd .. -- come to previous folder
7. ls - list
8. ls -lr - check the permission access
9. dir - Check all the files exist from your current folder
10. rm file_name - remove the file from current folder
11. mkdir folder name - make new folder
12. chown user:group path - Give the access to the user and group of the given path
13. chmod 700 path - give all permission to the current user to the given path
700 means rwx - read write and execute
600 means read write
Hope this helps
Thanks,
Shamma