Clearing Swapfiles?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Clearing Swapfiles?
# 1  
Old 08-13-2004
Clearing Swapfiles?

Hi,

Does anyone know of a command to safely clear the swapfiles to free up diskspace? It's done at shutdown/startup, but I'd rather not have down time, if possible.

Thanks,

MrToast

(BTW, Mac OS X 10.3.5 Smilie )

Last edited by MrToast; 08-13-2004 at 01:24 PM..
# 2  
Old 08-15-2004
You could run as su or root, the command;

swapoff -a

then turn it back on with

swapon -a

you can check to see if the swap is turned off using the top command.
# 3  
Old 08-16-2004
Maybe it's just me, but I can't seem to find the man entries on these commands.

Here's what I'm hoping to be able to do:
swapoff -a
clearswap
swapon -a

Where clearswap will take all these swapfiles and delete them, giving me my gig of harddrive space back.

Thanks,

MrToast
# 4  
Old 08-16-2004
try the command for more info:

info coreutils

or for a specific entry
info swapon
or
info shred
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Clearing a environmental variable

i set a variable from the command line: export GANG="james,roy,martin" i can access this variable ($GANG) from a script. but each time i run the script, the variable keeps getting bigger. more info keeps getting added to it. Is there anyway i can make the $GANG variable contain the... (3 Replies)
Discussion started by: SkySmart
3 Replies

2. AIX

clearing PVID

HI admins, I am not able to clear pvid .I am getting below error. chdev -l hdisk273 -a pv=clear Method error (/usr/lib/methods/chgdisk): 0514-047 Cannot access a device. pv The disk is from SAN. I can clear remove the disk using rmdev.But if i run cfgmgr , this disk apperas... (2 Replies)
Discussion started by: newaix
2 Replies

3. Shell Programming and Scripting

BASH - Clearing value in a variable

anyone has any idae how do i clear the value in a variable in BASH? So far I come across "Clear-variable", however it can only clear a "Local" and "Global" variable. I'm trying to clear a self-declared variable. Anyone has any suggestions? (4 Replies)
Discussion started by: vinzping
4 Replies

4. AIX

log_file_system clearing script

Hi i need a script to manage the mount point for any log location (/u01/dump/log/) i need a script which removes files older then x days but it should not remove file with extention *.log, *.ora etc then for remaing files it must search the huge files like *.txt and do fuser <filename> and... (0 Replies)
Discussion started by: javeedkaleem
0 Replies

5. Linux

clearing history

Is it possible to clear certain specific commands from history. I mean not clearing the entire history (history -c). You don't want anyone to see a particular command you executed. must not also show you have cleared history. Is it possible ? (2 Replies)
Discussion started by: nitin09
2 Replies

6. Programming

clearing breakpoints using dbx v 7.2.1

Im unsure of how to clear break points using dbx v7.2.1 Ive tried using delete linenumber of breakpoint however this does not seem to work. Could anyone point me in the correct direction ? regards (0 Replies)
Discussion started by: JamesGoh
0 Replies

7. HP-UX

clearing history

HI, Can anybody tell me...what is a command for clearing command history in HP-UX machine. I tried 'history -c' but it is not applicable.... Thanks JAGDISH MACHHI (4 Replies)
Discussion started by: jagdish.machhi@
4 Replies

8. Programming

Clearing Data in an Array

How would I clear all data from an array? Here is what I'm doing: while (1) { if ((numbytes = recv(sock2, buf, 100, 0)) == -1) { perror("recv"); } printf("%s : %s", inet_ntoa(their_addr.sin_addr), buf); }buf still has extra data in it, so when I print it, things from previous data is put... (3 Replies)
Discussion started by: Octal
3 Replies

9. Programming

clearing control stack?

Hi, Can someone please explain how is the control stack cleared when we exit from a function?or who clears the rescords in the control stack? Thanks (1 Reply)
Discussion started by: naan
1 Replies

10. UNIX for Dummies Questions & Answers

Clearing Mail Queue

Hello, I am trying to clear my mail queue with the following command: rm /var/spool/mqueue/* But when I do this I get this error: /bin/rm: Argument list too long. Can someone tell me what that error means and what I can do to correct it so I can clear my mail queue? Thanks (2 Replies)
Discussion started by: Chet
2 Replies
Login or Register to Ask a Question