Copy a file from a dvd to the local AIX file system


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Copy a file from a dvd to the local AIX file system
# 1  
Old 08-25-2009
Copy a file from a dvd to the local AIX file system

Hi,
I am a newbie to AIX, so please bear with me. I have mounted a dvd drive on AIX. I am trying to copy the file that is on the dvd drive on to the local machine. However, I get an error:
cp: c1m_0001.gz: A system call received a parameter that is not valid.

Can some one point me to the error?
-------------------------------------------------------------------------
# mount
node mounted mounted over vfs date options
-------- --------------- --------------- ------ ------------ ---------------
/dev/hd4 / jfs2 Aug 20 15:40 rw,log=/dev/hd8
/dev/hd2 /usr jfs2 Aug 20 15:40 rw,log=/dev/hd8
/dev/hd9var /var jfs2 Aug 20 15:40 rw,log=/dev/hd8
/dev/hd3 /tmp jfs2 Aug 20 15:40 rw,log=/dev/hd8
/dev/fwdump /var/adm/ras/platform jfs2 Aug 20 15:41 rw,log=/dev/hd8
/dev/hd1 /home jfs2 Aug 20 15:41 rw,log=/dev/hd8
/dev/hd11admin /admin jfs2 Aug 20 15:41 rw,log=/dev/hd8
/proc /proc procfs Aug 20 15:41 rw
/dev/hd10opt /opt jfs2 Aug 20 15:41 rw,log=/dev/hd8
/dev/fslv00 /software jfs2 Aug 25 14:04 rw,log=/dev/hd8
/dev/cd0 /cdrom cdrfs Aug 25 15:58 ro
# cd /cdrom
# ls
c1m_0001.gz
# cp c1m_0001.gz /software
cp: c1m_0001.gz: A system call received a parameter that is not valid.
#
-------------------------------------------------------------------------

Many thanks in advance.
Anurag1510
# 2  
Old 08-25-2009
Hi,

check if you have sufficient permissions to write into the /software directory, if so try

Code:
cp /cdrom/c1m_0001.gz /software/

Kind regards
zxmaus
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copy one file from a server to a local folder

Hi, Is there a way I can copy a file from a server to a local folder (i.e. My Documents)? can it be done by scp? I tried this but it just rename the file as the folder it has to be transferred at. scp -r name@some_server:/home/user/file.txt 'somehere\home\home_dir' Thanks. (4 Replies)
Discussion started by: erin00
4 Replies

2. Shell Programming and Scripting

Copy file from local network and add it to MYSQL

Hello, i need some help. I have a Debian machine in network, which is a web server. I need to copy every day files from local network to MySQL table. Now it is done manually and i am just adding them from web panel (backend) and saving it's binary, extension and etc. Can i automaticly do this... (2 Replies)
Discussion started by: Dyrem
2 Replies

3. Shell Programming and Scripting

Copy a file from local host to a list of remote hosts --- perl script

Hi friends, i need to prepare a script ( in perl) i have a file called "demo.exe" in my local unix host. i have a list of remote hosts in a file "hosts.txt" now i need to push "demo.exe" file to all the hosts in "hosts.txt" file. for this i need to prepare a script(in perl, but shell... (5 Replies)
Discussion started by: siva kumar
5 Replies

4. UNIX for Dummies Questions & Answers

Copy file from RDP to Local

Hi All, I am trying to copy a file from remote desktop to my local system using copy and xcopy commands...but none of them worked..is there any batch file or commands to do the copying .if do please share with me..... (5 Replies)
Discussion started by: navsan420
5 Replies

5. UNIX for Dummies Questions & Answers

How to check whether file system is local or NFS?

Hi, suppose I have file system path say /foo/bar/baz then how would I find out whether it is local file system or NFS? If it is NFS then I want to find out the host where file system is located. Thanks, Paresh (5 Replies)
Discussion started by: masaniparesh
5 Replies

6. UNIX for Dummies Questions & Answers

Copy file from local machine to server?

I am logged into a server via SSH. There is a file on my desktop of my Windows PC I would like to put on that server. How do I do it? SCP looks the likely method but how does the server know where the file is on the local machine? Thanks. (2 Replies)
Discussion started by: Sepia
2 Replies

7. UNIX for Advanced & Expert Users

Using SCP command in IBM AIX to download file from remote to local system

Hi, When i run the code in solaris unix machine, the file from remote server is getting downloaded. but when i use the same code in IBM AIX remote machine, it is not running. It is saying "Erro during scp transfer." Below is the code. Please give some resolution. SCPClient client = new... (1 Reply)
Discussion started by: gravi2020
1 Replies

8. UNIX for Advanced & Expert Users

Commands to copy a tar.gz file from a Remote Unix Server to Local Desktop.

Hi, Just wanted to know, how can I ftp/transfer/copy a (design.tar.gz) archive from a Unix Server (sdmc222.sdmc.cp-srv.com) which is at a remote location, to my Windows Desktop. Obviously, it is not possible at cmd prompt on my Windows using the following commands :- ftp... (3 Replies)
Discussion started by: marconi
3 Replies

9. UNIX for Dummies Questions & Answers

File System - Remote or Local??

Is there a way to find if the file systems mounted on a AIX/Linux box is local or remote? (1 Reply)
Discussion started by: Un1xNewb1e
1 Replies

10. UNIX for Dummies Questions & Answers

how to mount a file system of a remote machine to local file system

Hi friends, In my case, there are serveral PCs running Linux in a LAN. I would like to to mount the directory /A_river of machine-A to the file system of another machine machine-B so that I can access files in that directory. I do not know how to do this. The situation is complicated by... (2 Replies)
Discussion started by: cy163
2 Replies
Login or Register to Ask a Question