#Installing FSV on Ubuntu 22.04
21 messages · Page 1 of 1 (latest)
I believe fsv as a program no longer works, but if I’m wrong:
You can git clone the code and compile it manually by changing into the directory with the code and running make
Actually it can compile for ubuntu 22.04 from this github https://github.com/mcuelenaere/fsv
Install
Clone the repository Make a configure script: ./autogen.sh Install dependencies (Ubuntu): sudo apt-get install libgtkgl2.0-dev libgl1-mesa-dev libglu1-mesa-dev Do the install dance: ./configure make sudo make install
this is not clear at all.
WTF is a configure script? WTF you supposed to put IN that script?
they also assume one knows how to clone the repository automatically.
It still compiles?!?!
Isn’t this why we invented cmake anyway
To do all of this for us
If you want exact steps, you can follow these, 1 line at a time.
sudo apt install libgtkgl2.0-dev libgl1-mesa-dev libglu1-mesa-dev git build-essential
git clone https://github.com/mcuelenaere/fsv.git
cd fsv
./autogen.sh
./configure
make
I wouldn't install it though, just run ~/fsv/src/fsv
It is an ancient software that barely works, that's why I wouldn't install it, but you can build and run it
You don't put anything in the script, you just run it. Like I said though it's a fork of a fork of an ancient software that barely builds on ubuntu 22.04 and not on anything newer, but you can still build and run it if you really want to. Apparently it's ment to represent your file system like they did it in the Jurassic park movie.
your code writings made it clearer.
But you're specifially saying NOT to run sudo make install , correct?