Select the files and leave SHIFT pressed while pressing the DELETE button or option.
Example: Select with CTRL several files while clicking on them.
Leave SHIFT pressed while pressing the DELETE button will delete them permanently.
To select multiple files. Click the first file and then leave SHIFT pressed while selecting the last file you want to select. It is the same thing as dragging the mouse while pressing the left mouse button.
Without using a mouse, you can delete (bypassing trash) straight from the command line, if you're comfortable doing that.
Open a terminal window.
Use the cd command to change directory to where the file is.
Use the ls command to list the files in the directory you've changed into, to make sure you're looking at the right place. (Use ls | less if the output is too long to read; then q will quit from reading the list and back to the terminal.)
Use the rm -v command to verboselyremove the file (deleting it, bypassing trash).
If you get errors: rm -Rfv is necessary to forciblyRecursivelyremove a directory. And rm -fv will force other deletions that are sticking against your will.
For example:
me@mypc:~$ cd /home/steven/Downloads/
me@mypc:/home/steven/Downloads$ ls
file1
file2
file3
.
.
.
me@mypc:/home/steven/Downloads$ rm -v file14
'removed 'file14'
me@mypc:
Select the files and leave SHIFT pressed while pressing the DELETE button or option.
Example: Select with CTRL several files while clicking on them.
Leave SHIFT pressed while pressing the DELETE button will delete them permanently.
To select multiple files. Click the first file and then leave SHIFT pressed while selecting the last file you want to select. It is the same thing as dragging the mouse while pressing the left mouse button.
In Nautilus -> Preferences select the following
to have the option to delete files rather than putting to trash in the right-click context menu.
Without using a mouse, you can delete (bypassing trash) straight from the command line, if you're comfortable doing that.
cd
command tochange directory
to where the file is.ls
command tolist
the files in the directory you'vechanged
into, to make sure you're looking at the right place. (Usels | less
if the output is too long to read; thenq
will quit
from reading thelist
and back to the terminal.)rm -v
command to verbosely
remove
the file (deleting it, bypassing trash).rm -Rfv
is necessary to forcibly
Recursively
remove
a directory. Andrm -fv
will force
other deletions that are sticking against your will.For example: