![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Security Anything involving computer security goes here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Read words from file and create new file using K-shell. | bsrajirs | Shell Programming and Scripting | 4 | 06-01-2007 09:15 AM |
| Set quota on directories | *Jess* | SUN Solaris | 1 | 05-08-2007 05:00 AM |
| Quota-problem | chrizz | HP-UX | 5 | 10-28-2006 03:20 PM |
| How to set user quota | KaiXiang | Linux | 2 | 09-03-2003 09:04 PM |
| Quota | jarthda | UNIX for Dummies Questions & Answers | 1 | 05-14-2001 12:25 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
create file with 20mb with quota
Hello ,
does anyone know how to create a file with 20mb with the help of quota without root and as a normal user? thank u in advance |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
You are trying to get around the quota imposed on your home directory?
/tmp and /var/tmp are two of the usual places to create large files that do not need to stay around forever. |
|
#3
|
|||
|
|||
|
well...the file has to created in the home directory ....thats the problem
|
|
#4
|
||||
|
||||
|
Hi.
You could try a link from home to tmp ... cheers, drl |
|
#5
|
|||
|
|||
|
if u could explain it in detail how it could be done would be nice..as i new to quota command.
thank u in advance |
|
#6
|
||||
|
||||
|
Hi.
Assuming that you have the file in /tmp, say with the name "q", then try each of the following while in your home directory: Code:
ln /tmp/q q ln -s /tmp/q q Note that code that is written to expect files to be in certain places is not very flexible. Look over the man pages on quota and ln to make sure that we are discussing the right concept and command(s): Code:
man ln man quota |
||||
| Google The UNIX and Linux Forums |