You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running lipsync on archlinux and I had some errors in the installation process. One is with all the chown $username:$username.
I don't know if there is a group with the same name as the username in ubuntu and debian but not in archlinux. Is there a reason to do it that way ?
I fixed it using group=$(id -g $username) and chown $username:$group everywhere.
The text was updated successfully, but these errors were encountered:
Hello,
I'm running lipsync on archlinux and I had some errors in the installation process. One is with all the
chown $username:$username
.I don't know if there is a group with the same name as the username in ubuntu and debian but not in archlinux. Is there a reason to do it that way ?
I fixed it using
group=$(id -g $username)
andchown $username:$group
everywhere.The text was updated successfully, but these errors were encountered: