belzony
deepin
2020-02-03 19:51 官方的压缩包解压,找到amdgpu-install,编辑,找到
function os_release() {
if [[ -r /etc/os-release ]]; then
. /etc/os-release
case "$ID" in
ubuntu|linuxmint|debian|deepin)
里面原本是没有deepin的,我手动加上的,加上以后这个可以运行了就,
但是我的缺少依赖关系,还没解决,初步可以这么解决
function os_release() {
if [[ -r /etc/os-release ]]; then
. /etc/os-release
case "$ID" in
ubuntu|linuxmint|debian|deepin)
里面原本是没有deepin的,我手动加上的,加上以后这个可以运行了就,
但是我的缺少依赖关系,还没解决,初步可以这么解决
Reply Like 0 View the author


中文 