Sun UNIX Files & Folders listing


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory Sun UNIX Files & Folders listing
# 1  
Old 08-05-2005
Question Sun UNIX Files & Folders listing

Hi guys, i'm new to UNIX and only know a small amout about it, but have just had some changes at work which now require me to interact with and work on SUN Unix systems often. I have reasonable knowledge of PC's but hope that you will be able to help me with these questions.

Part1.
I would like to know if there is a program or Unix command that will make a text file out put or similar listing of all the directories & files on a SUN Ultra5 computer running SunOS 5.6?

Part2.
I am using a Windows2000 computer to telnet to the SUN Ultra5 computer on our office network, and would like to know(if the above program does exist) how to transfer a file from the W2K PC to the SUN computer using Telnet, and also from the SUN PC to the W2K PC?

Please let me know if there is any more information you require.
# 2  
Old 08-08-2005
Quote:
Originally Posted by Scrat
Hi guys, i'm new to UNIX and only know a small amout about it, but have just had some changes at work which now require me to interact with and work on SUN Unix systems often. I have reasonable knowledge of PC's but hope that you will be able to help me with these questions.

Part1.
I would like to know if there is a program or Unix command that will make a text file out put or similar listing of all the directories & files on a SUN Ultra5 computer running SunOS 5.6?

Part2.
I am using a Windows2000 computer to telnet to the SUN Ultra5 computer on our office network, and would like to know(if the above program does exist) how to transfer a file from the W2K PC to the SUN computer using Telnet, and also from the SUN PC to the W2K PC?

Please let me know if there is any more information you require.
Welcome to the world of unix...we hope you enjoy your stay.

Part 1. The unix command "ls -Al" (without the quotes) will give you a listing of the files and directories in the current directory. You can do a "ls -Al > filename" which will put the output of the "ls -Al" command into a filename of your choosing. If you do a "ls -al" you will see all of the files plus the hidden . (dot) files.

Part 2. I'm not sure if telnet is what you should use. Telnet will allow you to connect to a unix box from a pc, but I'm not sure you can use it to transfer files. Best bet is to search the man pages on the unix box for ftp, i.e. man ftp.

Hope this gets you started. Good luck! Smilie
# 3  
Old 08-08-2005
Quote:
Originally Posted by antalexi
....You can do a "ls -Al > filename" which will put the output of the "ls -Al" command into a filename of your choosing...
"filename" is this just the name you want (i.e. "list.txt") and it will automaticaly drop it in your current directory? or is it the path to store the file in and the file name you want to save it as?

Thanks very much for you help so far.
# 4  
Old 08-10-2005
MySQL

Ok... i tried the
ls -Al >filename
but that only gave me a listing of the contents of the directory i was in(root) and not the sub-directories, so i tried...
ls -AlR >filename
which did give me a complete listing of all files, folders & contents of sub-directories.

To do the transfer of the file to my windows 2000 computer, i installed the free version of "FTP Commander" http://www.internet-soft.com/ftpcomm.htm on my W2k PC then used it to open a FTP session to the SUN PC. This then alowed me to copy the file to my W2K PC easily.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Listing folders and files within

is there any command that can make listing files like this /data/seismic/prestack-4/eon5/PEP/JAWA/AKASIA-BAGUS/3D/F/BL3-4/F12AKB3D_SW82-128_ID1696-1850.segy /data/seismic/prestack-4/eon5/PEP/JAWA/AKASIA-BAGUS/3D/F/BL3-4/F12AKB3D_SW82-128_ID1851-1975.segy ... (2 Replies)
Discussion started by: muhnandap
2 Replies

2. Shell Programming and Scripting

Listing folders that have a file inside them

Hi guys, I'm new to the forums and putting my foot in the door with SED and AWK. I was wondering if someone could help me as I think I'm making this harder than it needs to be... I have a list of folders named as urls, inside these are log files and possibly a 'status' file. I'm trying to get... (6 Replies)
Discussion started by: KakersUK
6 Replies

3. Shell Programming and Scripting

Listing latest & large files from a mounted drive

Hi All, My AIX server have a mounted drive "/stage". I want to list the latest modified/created files in this drive. Also large files in this drive. I tried to ls -l | sort +4nr | head -10 Someother solutions to list from entire drive. Thanks. :) (6 Replies)
Discussion started by: karumudi7
6 Replies

4. Solaris

HP Unix & Sun Solaris on single machine

Is it possible to install 2 flavors of Unix on a single machine ? -HP Unix -SUN Solaris Please provide sufficient information to carry both of the above OS installation on single machine.Any guide/steps/document will do. (3 Replies)
Discussion started by: mahix
3 Replies

5. Shell Programming and Scripting

Just listing size, timestamp & name of files in a directory

How can I list the files in a directory and just show the file size, date stamp, timestamp and file name.. I've been trying to ls -lrt the directory to a file and then use the cut command but I'm not having any luck with getting the proper results.. I thought i could use the -f switch and count... (4 Replies)
Discussion started by: Jazmania
4 Replies

6. Shell Programming and Scripting

Find & Replace string in multiple files & folders using perl

find . -type f -name "*.sql" -print|xargs perl -i -pe 's/pattern/replaced/g' this is simple logic to find and replace in multiple files & folders Hope this helps. Thanks Zaheer (0 Replies)
Discussion started by: Zaheer.mic
0 Replies

7. UNIX for Dummies Questions & Answers

listing executable files in unix.

How to list out the files which are not accessed for the last n days? and How to list out all the executable files in a directory? can anyone help me on the above? Thanks in advance. (3 Replies)
Discussion started by: venkatesht
3 Replies

8. Shell Programming and Scripting

listing folders and using in script

im a bit new to this and have been playing quite a bit and cant figure it out :( I have made a basic script: cd /folder/software1/bin/; echo "software1," >> /in/local/var/trace/davescripts/software.txt "\c"; ls -tm >> /in/local/var/trace/davescripts/software.txt; and this basically... (1 Reply)
Discussion started by: truCido
1 Replies

9. Shell Programming and Scripting

List Files & Folders created/modified

Hello people, I want to list the files & folders created/modified since a particular date say June 2006. I know I can list recursively thru the folders and use awk to extract the date column to get the desired output. Just wanted to check whether there is an easier way to do this. Please... (2 Replies)
Discussion started by: tipsy
2 Replies
Login or Register to Ask a Question