安装步骤:
1. 在控制台中运行命令修改其属性,使其可以被执行;
chmod a+x name_of_file.bin
2. 运行
./name_of_file.bin
或者
sudo ./name_of_file.bin
Go into a terminal and issue the following command in the directory where the bin file is,
chmod a+x name_of_file.bin
Then run it by writing
./name_of_file.bin
If you get a permission error and/or you're dealing with an installer that applies system-wide changes you might have to launch your application with root privileges:
sudo ./name_of_file.bin
本文介绍如何在Linux系统中通过命令行执行bin文件。包括修改bin文件权限以便执行及使用sudo命令来解决权限问题。
8433

被折叠的 条评论
为什么被折叠?



