Questions tagged [remote]
Working through the network with files, programs, etc., that are stored on a distinct machine from the original host.
698 questions
1
vote
1
answer
60
views
How to add Basic Auth credentials to Flatpak remote requests?
I need to host a private Flatpak remote with restricted access by using Basic Auth (login/password). All I need now is to make Flatpak client add Authorization HTTP header with credentials to all ...
0
votes
1
answer
65
views
macOS: list all Users with Admin privileges
How can I get the list of all Users with Admin privileges, on all selected Macs, in Apple Remote Desktop?
I have tried:
dscl . -list /Groups/admin GroupMembership
But this does not list anything, not ...
2
votes
2
answers
472
views
Receiving " syntax error near unexpected token `then'" from remote Linux server with if, then, fi
I need help in determining why I get
syntax error near unexpected token `then'
from the following command:
for vm in {20..30} ; do ssh -q -o "StrictHostKeyChecking no" 192.168.210.${vm} &...
0
votes
0
answers
67
views
Comparison of content of two folders on remote cluster with rsync command
There is my home directory and its backup on the remote cluster.I used rsync command to check if home directory and its backup are completely identical:
rsync -rvnc data/ data2 >rsync_out-4.txt 2&...
1
vote
1
answer
103
views
Configure git repository on production server with remote source
It may be a vague question, but I can't currently find a good solution in my head.
I have a BookStack application running on a company server. To simplify and for security I have a custom .gitignore ...
0
votes
2
answers
62
views
rewrite linux image on device via ethernet
I have embedded device with Linux (stored in EMMC).
When i need to update Linux image (i have one .img file) i need to connect via serial terminal, edit boot_targets to start system from SD-card and ...
0
votes
1
answer
124
views
I need to run script on remote server which require root access using sshpass and its failing
I need to run script on remote server which require root access using sshpass and its failing with eror script not found. I ran below command.
sshpass -frhelpass ssh user@IP 'echo mypass | sudo -S &...
1
vote
0
answers
546
views
GDB remote: step/next "Cannot find bounds of current function"
I'm trying to run GDB remote debugging on a single source file, very basic C code, and I'm hitting a wall on something that seems like it should be completely obvious. Specifically, I cannot figure ...
1
vote
0
answers
27
views
Ubuntu VM running on HyperV Windows 10 machine remote login will not stay toggled on
I have an Ubuntu VM running in HyperV on a Windows 10 machine. I'm trying to configure Ubuntu to allow remote logins so I can use Remote Desktop from my Windows host to login, but the toggle that ...
0
votes
2
answers
143
views
Is my Linux inside virtual box being hacked or is it my base system; windows which is compromised?
There's a Oracle Linux running inside a Virtual Box, which is running on Windows 11 home.
Need help understanding:
Is there any chance of any of either the linux or , as this clearly appears to be a ...
0
votes
1
answer
146
views
ssh remote port forwarding in systemd
I would like to execute this command
ssh -R 2200:localhost:80 user@"myddns.net"
at every startup of my fedora system (note that the command itself is working in a shell).
I thought to use ...
1
vote
1
answer
96
views
Remote journal over AutoSSH tunnel
I'm having several remote sites (test setups), each having multiple Linux devices, uploading their journal remotely to Raspberry Pis in that remote site. I'm trying to forward these journals via ...
0
votes
1
answer
345
views
Why would apt fail to login using conf file information in auth.conf.d?
Quite a tricky problem, this one: I've set up a custom Debian repository on a remote server (let's say, example.com), which is served at https://example.com/aptrepos, and for that path I've set up ...
0
votes
1
answer
248
views
systemd - service fails to start on server boot
I made a system service on remote VM that should start on boot as suggested here:
[Unit]
Description={removed}
Wants=network-online.target
After=network-online.target
[Service]
User={my username}
...
0
votes
0
answers
48
views
execute a script on different remote machines on multiple files
I want to execute a script which is located on different machines. On each machine there is a set of files which the script should scan. I have something like this but it does not work:
for host in ...