在Ubuntu上共享GIMP作品,常用的是使用Samba服务,具体步骤如下:
sudo apt update和sudo apt install samba。sudo mkdir /path/to/shared_folder,将/path/to/shared_folder替换为你想要共享的文件夹路径,然后设置权限,如sudo chmod -R 777 /path/to/shared_folder。/etc/samba/smb.conf,在文件末尾添加[shared_folder],并设置相关参数,如path为共享文件夹路径,browsable = yes,writable = yes等。sudo smbpasswd -a username,将username替换为实际用户名,并按提示设置密码。sudo systemctl restart smbd和sudo systemctl restart nmbd。\\Ubuntu的IP\shared_folder访问;Linux系统可使用sudo mount -t cifs //Ubuntu的IP/shared_folder /mnt/shared_folder -o username=用户名,password=密码命令挂载共享文件夹来访问。