Questions tagged [terminal]

Terminal: 1) A device or program used to talk to a terminal server, usually over Serial or RDP, 2) A synonym for command-shell or command line, 3) A specific OS X program.

419 questions
0
votes
0 answers

LocalHost Host and Port Unable to Connect

I received feedback from one of the community members who showed me that my disk is full. This is why, I would like to try to use the "Deploy and Access the Kubernetes Dashboard" using my Mac Terminal by this command - kubectl apply -f…
jng77
  • 1
0
votes
0 answers

Stuck at Verify kubectl configuration

I'm using Mac Terminal and I'm stuck at the "Verify kubectl configuration", whereas when I run this command --> kubectl cluster-info as the result:- E0331 23:39:48.601633 27402 memcache.go:265] couldn't get current server API group list: Get…
jng77
  • 1
0
votes
0 answers

ssh illegal option while trying to connect to remote server

trying to ssh from my macbook pro, to a remote server, ssh ayan@ServerIPAddress gives the following error ssh: illegal option -- ? usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface] [-b bind_address] [-c cipher_spec] [-D…
Ayan Mitra
  • 101
  • 2
0
votes
1 answer

Linux find command to return files AND owner of files NOT owned by specified user

I have the following terminal command: find /home/not_this/ \! -user not_this_user_account The goal is to find all the files and directories not owned by the specified user and this version of the find command works great. However I'd really like…
John
  • 134
  • 10
0
votes
1 answer

How are Serial Communications designed to be connected virtually on Dell PowerEdge 12th generation servers?

Im trying to figure out what exactly can be configured by the first three settings on Dell PowerEdge R720 Server BIOS's Serial Communications Screen. Let me explain what (I think) I have understood: Disregarding all Input operations, there are or…
0
votes
1 answer

Globing patterns

How can I make a command string work using globing patterns also in the given arguments? powershell.exe -c "&'c:\wind?ws\System32\more.com' C:\path\to\something.txt | findstr 'something'" -> this works This is what I would like to do, for…
0
votes
1 answer

How can I get RAM frequency from the OS X low-level terminal?

How can I get RAM frequency from the OS X low-level terminal? Which comand can help in this situation?
0
votes
1 answer

Error SSH connection. Connection timed ou t

I am not able to connect via SSH to my server and I dont know the reasons. SSHD its running and ports are open in UFW. I tried to change ports but the issue persist. Also tried differents machines and networks. If I reboot the server, sometimes I…
Shugui
  • 1
  • 1
0
votes
0 answers

System has not been booted with systemd as init system (PID 1). Can't operate. ( Openvpn )

I'm pretty new to Linux and i'm still learning the ropes of it. I tried starting the openvpn service using both "systemd start openvpn@server" and "sudo systemctl start openvpn@server" but I still got the error "System has not been booted with…
0
votes
1 answer

TC Corruption of Packets Ingress

I’m new to tc & this may be naive question but correct me if I’m wrong tc qdisc change dev eth0 root netem corrupt 5% Does above command corrupt ingress packets only ? If Yes, does outgress corruption has support with different command to configure…
Genie
  • 13
  • 3
0
votes
1 answer

When process writes to pseudoterminal slave, why it doesn't read what it wrote?

Here is my bash session: lrwx------ 1 stas stas 64 Mar 5 18:18 0 -> /dev/pts/0 lrwx------ 1 stas stas 64 Mar 5 18:18 1 -> /dev/pts/0 lrwx------ 1 stas stas 64 Mar 5 18:18 2 -> /dev/pts/0 We see that bash both reads from and writes to /dev/pts/0.…
0
votes
1 answer

MySQL connection via SSH tunnel on MacOS doesn't work

I've been trying to set up a SSH tunnel with VPN on my macbook with Big Sur 11.2, but it doesn't seem to work. On my linux machine, I can simply turn on the VPN and make a SSH-tunnel. Then I can just connect to the MySQL server via port 3307. If I…
Jay Wit
  • 103
  • 4
0
votes
3 answers

How does the A record change over time by running a DNS query?

I am running a DNS query on www.wikipedia.org using Google's public resolver @8.8.8.8 using the mac terminal. I have to get the A records for the host and run the query a couple of times to notice any change to the A records. dig @8.8.8.8…
0
votes
1 answer

ubuntu run multiple commands with one process

On my dev machine, I'm very often starting a lot of services at once (10+), and then at once I kill them using CTRL+C (very important). The problem is that the output will be presented is only for the latest command. for example: $ npm run service-a…
SexyMF
  • 209
  • 1
  • 2
  • 10
0
votes
1 answer

How to start a gnome-terminal with command from the systemd service on Ubuntu 20.04?

I wrote e service file called /etc/systemd/system/mytest.service . Then I would like to start a new terminal window with some commands that print on the new terminal console. The file mytest.service has this content: [Unit] Description= Test After=…
ywiyogo
  • 121
  • 4