Operating systems in practice, module 6 Flashcards

1
Q

what is a command you can use in Linux to copy files between computers on a network?

A

SCP.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what does SCP stand for?

A

secure copy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what does SCP utilise to transfer data?

A

SSH

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what command would you use to transfer a file from your computer to another?

A

format:
scp /path/of/the/file/we/want/to/transfer user@IPadressnumber path we want to copy the file to, then password when prompted.

scp /home/Admin/Desktop/myfile.txt cindy@104.131.122.215:
password:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

how to verify the file is successfully copied?

A

on the other computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what comes with pscp.exe?

A

PuTTY package comes with PuTTY Secure Copy Client.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what can you use to copy files from one machine to another with Windows?

A

pscp.exe

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what would the format be for copying a file from \Desktop called \my_file.txt to the cindy@104.131.122.215: be?

A

pscp.exe C:\Users\cindy\Desktop\my_file.txt cindy@104.131.122.215:
password:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how can you transfer files to many machines?

A

shared folders. make a shared folder, and drop files into it. right click the folder you want to share, share with, pick specific people. You can add users, and even everyone.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what command do you use to share folders in Windows?

A

net share. specify what permissions go to which users.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

how would you give everyone on the network access to a folder called ShareMe, located on the Desktop of username’s computer? grant full permissions to everyone.

A

net share ShareMe=C:\Users\username\Desktop\ShareMe /grant:everyone,full

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

how can you list the currently shared folders on your computer?

A

net share
without any arguments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what does net share do without parameters?

A

displays information about all of the resources that are shared on the local computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what net share parameter specifies the network name of the shared resource?

A

ShareName

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/hh750728(v=ws.11)?redirectedfrom=MSDN

A

net share command supplemental reading

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what portion of the PuTTY package allows you to perform file transfers using the Secure Copy protocol?

A

Pscp.exe?

17
Q

is a protocol implemented by other programs for secure computer-to-computer access?

A

ssh

18
Q

what gives users a graphical user interface to remote computers that have enables connections from it?

A

RDP

19
Q

what is a Linux command used to copy files securely between computers on a network?

A

scp

20
Q

what can you use to give access to files to a group of users as an alternative to transferring files from one computer to another/

A

shared folder

21
Q

what is pscp.exe?

A

PuTTY Secure Copy Client