如何卸载从源代码构建的obs-studio | CentOS 8

如何卸载从源代码构建的obs-studio | CentOS 8

我怎样才能卸载obs工作室从我的 CentOS 8 机器的源代码构建?它是从源代码构建的 - 没有浏览器 - 并且不能在这台电脑上运行。

当我尝试卸载 OBS 时,出现错误:

[mlodybukk@localhost ~]$ cd ~/Pobrane/obs-studio-25.0.8/build/
[mlodybukk@localhost build]$ sudo make uninstall
[sudo] password for mlodybukk: 
make: *** No rule to make target 'uninstall'.  Stop.
[mlodybukk@localhost build]$ 

make -n install log

make[2]: *** No rule to make target 'deps/jansson/lib/libjansson.a', needed by 'libobs/libobs.so.0'.  Stop.
make[1]: *** [CMakeFiles/Makefile2:452: libobs/CMakeFiles/libobs.dir/all] Error 2
make: *** [Makefile:152: all] Error 2

我已将其二进制文件安装在/home/mlodybukk/obs-studio-portable/bin.它必须在那里启动

答案1

你提到的一条评论

OBS 有二进制文件/home/mlodybukk/obs-studio-portable/bin

删除该目录/home/mlodybukk/obs-studio-portable及其内容,您很可能会成功删除整个包。由于您选择了便携式版本,因此它并未“安装”。

不要忘记检查你删除这个目录是正确的

答案2

# rm $(which obs-studio)

which命令正在查找二进制文件的位置。所以which obs-studio会打印类似的东西/usr/bin/obs-studio。该rm命令正在删除该二进制文件。如果这不起作用,请替换obs-studioobs.

或者只是删除您运行的二进制文件。

相关内容