Collapse

Announcement

Collapse
No announcement yet.

How to add additional binaries commands to CageFS users in CloudLinux

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to add additional binaries commands to CageFS users in CloudLinux

    The binaries for ffmpeg are installed on my server but the application installed under the user home directory doesn't pick it up.

  • #2
    If you are using Cloudlinux then you will have to will have to add these additional binaries/commands so that all the users on the server can use them after CageFS has been updated.

    Click image for larger version  Name:	Screenshot_2.png Views:	1 Size:	79.5 KB ID:	779


    SSH the server using root credentials.

    Code:
    nano /etc/cagefs/conf.d/binutils.cfg
    First, check the location of FFmpeg using which command.

    Code:
    [root@sh84 bin]# which ffmpeg
    /usr/local/bin/ffmpeg

    Then update the file with below code.

    Code:
    [binutils]
    comment=common utils
    paths=/usr/local/bin/ffmpeg
    Add additional paths using ;

    Finally, update cageFS.

    Code:
    cagefsctl --force-update

    Click image for larger version

Name:	Screenshot_3.png
Views:	4
Size:	42.1 KB
ID:	783

    That's it !!
    Last edited by Mandeep; 09-18-2018, 12:17 PM.

    Comment


    • #3
      Thank you Mandeep for the informative post on cloudlinux.

      Comment

      Working...
      X