networking as user under Ubuntu groovy 20.10

Questions about Wine on Linux
Locked
taglio
Newbie
Newbie
Posts: 1
Joined: Tue Apr 20, 2021 1:59 pm

networking as user under Ubuntu groovy 20.10

Post by taglio »

Hello there I want to use TCP/IP under win applications emulated by wine as a UID=1000 better saying as a user but I cannot.

I've installed wine doing this:

Code: Select all

$ sudo apt install wine64 cabextract wine64-preloader
Next I've do what I've found in your board about permissions but I've do it to all the ELF:

Code: Select all

$ cd /usr/bin
$ find . -name "wine*" | xargs -I {} readlink -f {} | xargs -I {} sudo setcap cap_net_raw+epi {}
But I've got no networking:

riccardo@trimurti:~/.wine/drive_c/Radio_Mobile$ wine cmd
Microsoft Windows 6.1.7601

Code: Select all

C:\Radio_Mobile>ping 8.8.8.8
Pinging 8.8.8.8 [8.8.8.8] with 32 bytes of data:
Request timed out.
riccardo@trimurti:~/.wine/drive_c/Radio_Mobile$
Adny advises?
Locked