SCP requests password despite common key


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers SCP requests password despite common key
# 15  
Old 07-06-2012
In other words ssh without passwd works then... Smilie
The question about space is more a question of your It background. In Windows all what a user load is in his "home"... on UNIX admin tend to give little space to home directory (usually on boot disk...) and allocate big data filsesystems (usually other disks -external or SAN...)
e.g.
Code:
/dev/vg00/lvol4     350000  208585  133532   61% /home
/dev/esvg01/lvol4  12288000 1107688 10831594    9% /data/save
/dev/esvg02/lvol1  33792000 30027888 3707232   89% /data/rec
/dev/esvg01/lvol3  30720000 26867580 3792252   88% /data/prd/pool
/dev/esvg03/lvol1  16384000 3073888 12894188   19% /export/hpux/10.20

Where were you trying to load your files then?
# 16  
Old 07-06-2012
I was trying to load them into /home/[user]/[path]. When that didn't work, I tried /shared/[user]/[path]. Neither worked, makes me think maybe there isn't enough space allocated to my user ID.

The server is a high-end 64-node 768-core HPC cluster with 12 Intel X5650 cores, 500 GB storage, and 48 GB RAM per node. In other words, it's a million-dollar machine.
# 17  
Old 07-06-2012
What OS are you using?

If it were an HP I would have said to type bdf
But I doubt... (doesnt look very Itanium ...)
try
Code:
df -k 
# or 
df -m

to list the present filesystems ( and size etc...)
# 18  
Old 07-06-2012
Just realized does
Quote:
/shared/[user]/[path]
exist?
# 19  
Old 07-07-2012
Yes. I created the directory.

It turns out that I have 512 MB in /shared/ and 512 MB in /home/ for my account. Good news is, I petitioned for expanded storage, and my request was filled. I now have 300 GB in /home/. What's more, the core problem with scp has been resolved. I will now proceed to transfer the files.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Linux - Join 2 csv files with common key

Hi, I am trying to join 2 csv files, to create a 3rd output file with the joined data. Below is an example of my Input Data: Input File 1 NAME, FAV_FOOD, FAV_DRINK, ID, GENDER Bob, Fish, Coke, 1, M Lisa, Rice, Water, 2, F Jenny, Noodle, Tea, 3, F Ken, Pizza, Coffee, 4, M Lisa,... (7 Replies)
Discussion started by: RichZR
7 Replies

2. UNIX for Dummies Questions & Answers

Merge selective columns from files based on common key

Hi, I am trying to selectively merge two files based on keys reported in the 1st column. File1: #file1-header1 file1-header2 111 qwe rtz uio 198 asd fgh jkl 165 yxc 789 poi uzt rew 89 lkj File2: #file2-header2 file2-header2 165 ghz nko2 ... (2 Replies)
Discussion started by: dovah
2 Replies

3. UNIX for Advanced & Expert Users

scp without first time key generation and confirmation

Hi All, I have setup ssh keys for a user to transfer files without password between two hosts. But still the first time scp asks for confirmation and generates a key Due to this our jobs are failing. Is there a way I can avoid that first time key generation and confirmation also and automate... (3 Replies)
Discussion started by: baanprog
3 Replies

4. UNIX for Dummies Questions & Answers

Public and Private Key generation for scp

Hi, What tool is used to generate public and private keys for SCP? Do you have an example script that generates these keys, puts them in files and then another example script that references them from SCP? Thanks, (9 Replies)
Discussion started by: Astrocloud
9 Replies

5. Shell Programming and Scripting

Merge multiple lines in same file with common key using awk

I've been a Unix admin for nearly 30 years and never learned AWK. I've seen several similar posts here, but haven't been able to adapt the answers to my situation. AWK is so damn cryptic! ;) I have a single file with ~900 lines (CSV list). Each line starts with an ID, but with different stuff... (6 Replies)
Discussion started by: protosd
6 Replies

6. Shell Programming and Scripting

SCP command end with Host Key not found in database

Hi, I'm trying to copy a file from one server to remote server using SCP command. Below is the command i tried and got host key not found in database errror. scp sendfile.txt Remoteserver:/home/xxxx/. Error Message: Host key not found from database Key fingerprint:... (2 Replies)
Discussion started by: skcvasanth
2 Replies

7. Shell Programming and Scripting

Help- Change the password of users to common one

Hi all I have some 106 users of which i need to change the password of them to a common one. I dont know their paswword. But i need to reset them to a common one. How can i do this with a shell script? It would be a great help if some one can help to sort out this.:b::b: I know it can be... (0 Replies)
Discussion started by: Tuxidow
0 Replies

8. UNIX for Dummies Questions & Answers

SCP using a dsa key

Hello all, My first post in this forum. I am trying to download a file from a server to which I have been granted access. They setup a DSA public key and I have a local private key. When i try to download the file it prompts me for my password. How can I tell unix to use the DSA key... (1 Reply)
Discussion started by: who2
1 Replies

9. UNIX for Advanced & Expert Users

Setting Up public key on Windows for ssh/scp

Hi, I am trying to scp a file from our Unix server to the local Windows machine.I have created the key pair in Unix server using ssh-keygen command in unix. But I am not sure where can we put the public key(generated on Unix) in Windows machine so that scp from Unix machine to Windows is... (3 Replies)
Discussion started by: dennis.jacob
3 Replies
Login or Register to Ask a Question