Objective

In a bid to automate backup processes, the xFusionCorp Industries sysadmin team has developed a new bash script named xfusioncorp.sh. While the script has been distributed to all necessary servers, it lacks executable permissions on App Server 1 within the Stratos Datacenter.

Your task is to grant executable permissions to the /tmp/xfusioncorp.sh script on App Server 1. Additionally, ensure that all users have the capability to execute it.

Steps
  1. Connect to App server 1
  2. Check the current file permission status:
    ls -la /tmp
    The output should look like 4 ---------- 1 root root 40 Jul 30 02:21 xfusioncorp.sh
  3. Run chmod command to update the permissions:
    sudo chmod 7555 /tmp/xfusioncorp.sh
  4. Verify the result:
    ls -la /tmp
    # 4 -rwxr-xr-x 1

Next: Day 5