linux下autocad完美替代品bricscad的安装运行

前言

在Linux平台下,能完美兼容.dwg文件的软件并不多。
虽然国产的中望和浩辰为适配uos操作系统,近期都推出了linux版本,但目前好像还没有对应的破姐流出。(如果有的话请私信我或留下评论)
然而有了这一款源自比利时的软件——bricscad,linux下查看和编辑.dwg文件再也不是噩梦了!

安装pj

资源链接:https://pan.baidu.com/s/1dC7zarlqwuO5fa4CBL_KGQ
提取码:24j6
1.下载对应的压缩包,解压并安装其中对应的deb或rpm软件包。
2.在Crack文件夹下,替换bricsys.lic中hostid=< yourmac >等号后面的值为你的mac地址。例如本人的mac地址为AA:BB:CC:DD:EE:FF,替换后为hostid=AABBCCDDEEFF。
3.再把Bricsys-NetworkLicenseManager.tgz压缩包中的文件全部解压到安装目录下(默认为/opt/bricsys/bricscad/v18/),然后再把rlm.zip中的rlm解压出来,连同bricsys.set和替换过mac地址的bricsys.lic文件一起,同样放到安装目录下,大功告成。

软件运行

每次运行bricscad前,都需要先运行安装目录下的rlm,当出现如下界面时,表明激活成功,再运行bricscad即可。
linux下autocad完美替代品bricscad的安装运行_第1张图片

为避免每次启动bricscad都要进行这一步,可以将程序rlm设成开机启动,在Fedora32下的具体操作为:(以下操作均需root)
首先,编辑/etc/rc.d/rc.local,在该文件中添加一行:

/opt/bricsys/bricscad/v18/rlm &

如下所示
linux下autocad完美替代品bricscad的安装运行_第2张图片

&前为破解文件rlm的安装路径。另外需注意,行末的&一定要加,否则重启后就会一直卡在这行命令没法开机了,到时候只能进入单用户模式急救了!
然后为rc.local添加可执行权限

chmod +x /etc/rc.d/rc.local

最后将rc-local.service设置为开机自启动

systemctl enable rc-local.service

如果出现以下错误提示:
The unit files have no [Install] section. They are not meant to be enabledusing systemctl.
Possible reasons for having this kind of units are:1) A unit may be statically enabled by being symlinked from another unit’s
.wants/ or .requires/ directory.2) A unit’s purpose may be to act as a helper for some other unit which has a requirement dependency on it.3) A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, …).
那么在rc-local.service文件末尾加入如下内容即可。

[Install]
WantedBy=multi-user.target

你可能感兴趣的:(linux)