skip to Main Content

how to fix the weird error "Operation not permitted" – CentOS

[hadoop@worker-18 tmp]$ ./sysupdate -bash: ./sysupdate: Operation not permitted [hadoop@worker-18 tmp]$ chmod +x ./sysupdate [hadoop@worker-18 tmp]$ ./sysupdate -bash: ./sysupdate: Operation not permitted [hadoop@worker-18 tmp]$ sudo ./sysupdate sudo: unable to execute ./sysupdate: Operation not permitted [hadoop@worker-18 tmp]$ ls -l ./sysupdate -rwxrwxrwx 1…

VIEW QUESTION

Get Ubuntu version number only with bash – Debian

I execute command cat /etc/os-release in order to get info like NAME="Ubuntu" VERSION="18.04 LTS (Bionic Beaver)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 18.04 LTS" VERSION_ID="18.04" HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" VERSION_CODENAME=bionic UBUNTU_CODENAME=bionic I want to get only 18.04 from VERSION_ID I tried like cat…

VIEW QUESTION
Back To Top
Search