Skip to content

Tag: linux

HLS (apple http stream) video download

I have video in HLS format. And I would like to save it to disk. I want to see it with VLC offline with no adds. 🙂 Is there a simple way to do it? ( I am using Linux mint so it easy to run scripts) Thanks in advance. Answer The tricky part is to find the cookie given

How do I create a file in FUSE in C?

For an assignment we have to build a FUSE file system using C. I am trying to create an empty file in the mountpoint directory that I have mounted when I start fuse but it’s not working. I tried placing the following inside my own implementation of the fuse init function: After I had done that, what hap…

How to port forward in Docker container?

I’d like to forward 8080 port to 80 with iptables in a Docker container. In the build I have an error message as you can see below. Here is the Dockerfile: Here is the output: Thank you in advance for any help you can provide. Answer First, running an iptables command during the docker build process wou…