quick_command_list
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revisionNext revisionBoth sides next revision | ||
quick_command_list [2016/07/20 17:13] – [Clearing cache linux] k2patel | quick_command_list [2018/05/22 17:59] – [Ping packet size] k2patel | ||
---|---|---|---|
Line 423: | Line 423: | ||
echo 2 > / | echo 2 > / | ||
</ | </ | ||
- | + | *Free PageCache from memory** | |
- | **Free PageCache from memory** | + | |
<code bash> | <code bash> | ||
echo 1 > / | echo 1 > / | ||
Line 432: | Line 431: | ||
This will usually result in some memory becoming more obviously available; however, under normal circumstances this should not be necessary.\\ | This will usually result in some memory becoming more obviously available; however, under normal circumstances this should not be necessary.\\ | ||
BE WARNED that using vm.drop_caches can cause a deadlock if the system is under heavy memory and I/O load!!! | BE WARNED that using vm.drop_caches can cause a deadlock if the system is under heavy memory and I/O load!!! | ||
+ | |||
+ | ==== Ping packet size ==== | ||
+ | <code bash> | ||
+ | ping -v -M do -s 8064 192.168.1.1 | ||
+ | </ | ||
+ | |||
+ | ==== Remove file with ASCII Name ==== | ||
+ | |||
+ | Simplest thing to do is use built in functionality to search and remove in command. | ||
+ | Here is the file i've on my machine. | ||
+ | <code bash> | ||
+ | �^? | ||
+ | </ | ||
+ | |||
+ | which translate to //'' | ||
+ | So check or list all the files with ascii in it. | ||
+ | <code bash> | ||
+ | ls [^[: | ||
+ | </ | ||
+ | |||
+ | now to remove | ||
+ | <code bash> | ||
+ | rm [^[: | ||
+ | </ | ||
+ | |||
+ | :!: Regex can be modified to list all matching file before removal. |
quick_command_list.txt · Last modified: 2022/05/16 20:05 by k2patel