Easy Checkup Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Easy Checkup Script
# 1  
Old 03-23-2009
Easy Checkup Script

Hi,

I am planning the following to do. On my linux system I've got different users in the /home/ directory. These users have file limitations.

So every user below the /home/ directory should get a text file in a seperate folder /home/$user/files/ which tells him how many files he is already using.

For example:
Code:
Dear User, you are currently using X files in the Linux System. Please be aware that the permissions for you is set to 100 files.

The X for the files I know how to get:
Code:
find /home/directory -type f | wc -l

But some little problems are still unclear for me.

1. How can look like a functionality which do the file creation including the Message for every directory in the /home/ directory?

2. How can I own the files to the related user? witch chown?

3. The file should have an automated filename with numbers with different numbers per User, how can I realise this?

If you can help me this will be greatful.
# 2  
Old 03-23-2009
Just as a side question: Why limit the number of files instead of the total size of the directory (which can be done via quotas)?
# 3  
Old 03-23-2009
Because this is for a free training group and if the good people have time they create file after file and when the next lesson begin I have to clean it up and only need seperate files. That while there a limitations for file numbers Smilie this is only the the pople can create a serveral numbers of files before the system get spammed Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Easy script

Write a script, which of the directory including sources of kernel, choose files with sources in C (files with .c extension), including in name "io" with dirvers (located in random subdirectory drivers) and place their content in file FILE. (to 20 lines). Could someone help me with this task?... (1 Reply)
Discussion started by: Czabi
1 Replies

2. Solaris

solaris X86 Hardware Checkup (HP HW)

Hi ... i am new about HP -Solaris 10 x86 I have fresh hardware, I need to check the RAM , CPU, BUS , Hard drives mounted Can you please help me with commnds. Thanks in advance (3 Replies)
Discussion started by: anand87
3 Replies

3. Shell Programming and Scripting

I need help to write easy shell script

Hello every one :D I am very new in Linux ... that why I do not have any idea to write the script :confused: I am trying to read some tutorial , but I do not have enough time to do it ! because I have to submit my project results in next Wednesday I need your help to write script ! I will... (2 Replies)
Discussion started by: seereen
2 Replies

4. Solaris

Server RAM Usage checkup & support

Hi RAM of my system is 24 GB however when i checked the processes pids and counted the memory usage by pmap i found out that the total memory usage is 36 GB It s obvious that my system might be using some of virtual memory or swap space . How can i check which memory it is using and how .. ... (9 Replies)
Discussion started by: Paarth
9 Replies

5. Shell Programming and Scripting

My first script of day, it looks easy, but...

I've began my journey at 7:50, and at this time i've lost 40 minutes in this easy but :confused::eek:-script. Someone can help me ? I want to see the differences beetween all xml files in two directories (they must be equals), and this is my script: #!/bin/bash dir1="261108"... (5 Replies)
Discussion started by: trutoman
5 Replies

6. UNIX for Dummies Questions & Answers

Need help on installing an EASY to use and easy to install command line text editor

Hi again. Sorry if it seems like I'm spamming the boards a bit, but I figured I might as well ask all the questions I need answers to at once, and hopefully at least get some. I have installed Solaris 10 on a server. The default text editors are there (vi, ex, ed, maybe others, I know emacs is... (4 Replies)
Discussion started by: EugeneG
4 Replies

7. UNIX for Dummies Questions & Answers

Help with an 'easy' script

Hello guys, Forgive me if I duplicate the post but i think i make a mistake choosing the correct forum. I need some help to solve a little problem, I have a big file with almost 100.000 lines of data, here is an example of line: 100099C01101C00000000059399489283CREMOVISTAR_TX ... (3 Replies)
Discussion started by: lestat_ecuador
3 Replies

8. Shell Programming and Scripting

Help with an 'easy' script

Hello guys, I need some help to solve a little problem that I have here: I have a big file with almost 100.000 lines of data, here is an example of line: 100099C01101C00000000059399489283CREMOVISTAR_TX 010001C00000000000099069799MOVISTAR_Tx ... (7 Replies)
Discussion started by: lestat_ecuador
7 Replies

9. Shell Programming and Scripting

easy script

a script, cheer that prints its parameter as shown in the example below. eg: $ cheer U N I X Give me a U! U! Give me a N! N! Give me a I! I! Give me a X! X! #!/bin/sh for letter do echo "Give me a $letter!";echo "$letter!" done this is the code i used for the above script (2 Replies)
Discussion started by: problems
2 Replies

10. UNIX for Dummies Questions & Answers

Easy script

Hi there, Could you please help me with that ? I want to grep a specific string in an .xml file and then rename the file according to the string I found. How can I do that for many files. Because all the files have similar names but different time stamps I want to name them so it's easy to... (8 Replies)
Discussion started by: guest100
8 Replies
Login or Register to Ask a Question