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.
Questions tagged [terminal]
419 questions
-1
votes
1 answer
How to use ssh without knowing remote user's password?
I am trying to use ssh and login to a different mac (B) from my mac (A) but do not know B's password. Is there anyway of finding B's password or doing this without access to B?
-1
votes
2 answers
Unable to SSH into Host
I am attempting to SSH into my host. I'm using Mac OSX. When in terminal I type:
ssh user@hostname
I get an immediate error message stating:
connect to host xx.xx.xxx.xx port 22: connection refused
I've tried SSHing into my EC2 instance(different…

stephenthedev
- 113
- 1
- 5
-1
votes
1 answer
Scheduled Remote Desktop Manager With Credentials
I've a lot of servers with Windows Server and remote desktop enabled. For a problem with the windows domain, servers occasionally not perform the login process. So to solve this problem, I need a software or script that allows me to schedule logins…

Pablo
- 1
-1
votes
1 answer
hide resuls in linux terminal
so i basicly in my terminal write like this :
$ espeak "my text"
and i get output this:
ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib…

romas
- 3
- 1
-1
votes
1 answer
cp between mounts using tar (does drive A have to have free space equal to filesize) to complete tar process?
Does the following command if issued between two drives require that the current drive have enough space to accommodate everything being moved to the second drive?
tar cvf - .* --exclude=\. --exclude=\.\. | (cd /dest/dir; tar xvf -)
My line of…

Bms85smb
- 153
- 1
- 6
-1
votes
3 answers
windows 7 terminal server
I reguarly use a 'mstc' Terminal server on windows 7 and logging in is fine, but everytime i logoff and go to log back on it will not save the domain and i have to keep changing it back to what it should be.
Does anybody know how to save the domain…

Dan
- 1
-1
votes
3 answers
-1
votes
1 answer
Which client to use for AS400 terminal?
I would like to connect to AS400 machine but I do not know which client to use. I have clients installed at work but I do not remember how it is called.
I use Windows 7.
Can anyone help me ?

Patryk
- 143
- 2
- 9
-1
votes
1 answer
Nohup to run multiple PHP scripts
I have about 5 different PHP scripts that must be run by the server continuously even with the terminal closed.
How do I run the 5 scripts once via nohup, each with a log of what it generated, and be able to close the terminal?
I tried to run the…

Tom
- 289
- 3
- 13
-1
votes
1 answer
terminal shows percent sign at the end of the path
Since today, my terminal shows a percent sign (%) at the end of the path.
what is this and why this happens?
Is it means a special thing?

Pouya Jabbarisani
- 101
- 4
-2
votes
1 answer
Centos - terminal creates directories/files with no owner/group?
I'm very new to server admin. I'm having an issue whereby any file or folder I create via the terminal on WHM (Centos 7.6) results in a file/folder with 0/0 user and group stat.
Example command:
mkdir mydir
This is confirmed in Filezilla, and…

Mitya
- 99
- 7
-2
votes
1 answer
How to Find and delete File Older than 3 years?
I'm new with server maintenance job.
Now I must find and delete .JPG File older than 3 years. on linux terminal
I have googled and found a script like this
find /path/to/files* -mtime +365 -exec rm {} \;
or
find /path/to/files* -mtime +365…

Uchsun
- 101
- 1
- 2
-2
votes
2 answers
Shell Scripting in Linux
How can I move few files that contain spaces to another directory using a bash script?
file name: "Sublime Text 3.x"
my code is :
for file in $(ls -t | tail -n +1)
do
mv $file /tmp/test
done
Output shows as:
mv: cannot stat ‘Sublime’: No such…

Anas KK
- 5
- 1
-2
votes
4 answers
Connect two TTYs via TCP/IP
I have two computers running Debian and connected via Ethernet. They see each other. I need to connect two virtual terminals on this computer this way: anything I input in first terminal will be printed in another terminal and vice versa. I read…

michaeluskov
- 1
- 2
-2
votes
2 answers
Running commands using root in a loop
I`m following along this post :
https://vpsboard.com/topic/4095-ipsecl2tp-vpn-on-ubuntu-1404/
in order to setup VPN Server in Ubunto, however when i come to this command :
for vpn in /proc/sys/net/ipv4/conf/*; do echo 0 > $vpn/accept_redirects; echo…

Stacker
- 123
- 5