How do I delete a file using Xterminal?

Hi , recently in the interest of playing Doom thro my N900 - I copied 3 wad files thro xterminal to opt/doom/wads..
Now i guess this is occupying my root memory? do you know how i can delete the files using Xterminal. pls let me know
thx.

if it is in /opt, it shouldn't be!!
/opt is actually linked into /home
/home is a 2GIG partition on the EMMC that stores /opt (for optified packages.. all packages you download should sit in /opt) and all your settings / content (like address books and conversations)
To delete it using an x terminal, you really mean using a shell.. the shell is what you see inside the x terminal..
cd /opt/blah/dir
rm filename
rm is delete.. or more accurately remove!! It came in a time when keypresses were expensive
cp is copy
mv is move /rename
ls is list (as in dir)
df is diskspace free
du is diskspace used (as in by a file or directory)
there are loads of things like that
be careful.. rm is the easiest way to ruin a system!

Similar Messages

  • I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    From the Finder menu select 'Secure Empty Trash'. If this or the suggestion above doesn't resolve the problem take a look at the various suggestions in this link:
    http://www.thexlab.com/faqs/trash.html

  • How can I delete a file from Adobe Acrobat Reader DC?

    How can I delete a file from Adobe Acrobat Reader DC?

    What operating system do you use? Where do you store the files?

  • How do you delete a file from an iPad?

    How do you delete a file from an iPad?
    There are 2 versions of a document file on my iPad.
    I want to get rid of the obsolete one.
    The iPad Users Guide does not describe how to delete a document file.
    This is very frustrating!

    The iPad Guide is for the iPad itself, not other apps you may install.
    If you use Pages then read the online help here: http://help.apple.com/pages/ipad/2.2/ - specifically this: http://help.apple.com/pages/ipad/2.2/#/tancfc4d5c02
    Delete a document from your iOS device
    In the document manager, tap Edit.
    When the documents begin to jiggle, tap the ones you want to delete.
    Tap , then tap Delete Documents.To cancel, tap anywhere in the document manager background, or tap Done.

  • How do I delete individual files in Trash

    I have a habit of moving a lot of stuff to my trash bin.  Now after a couple of years I want to recover a lot of the space it's using on my hard drive.  So my question, how do I delete individual files in my trash bin without emptying all the contents in my trash bin?  Is this at all possible?

    Move the files you wish to keep out of the trash, delete the rest.

  • How can I delete large files on my MacBook Pro?

    How can I delete large files on my MacBook Pro? Also my Emails wont delete, how can I delete them?

    Which email client are you using & which version?   Your emails are not appearing in the email trashcan? 

  • How do I delete large files

    How do I delete large files, so they don't take 12 to 16 hours to delete?

    Don't use the Secure Empty Trash option on items which don't contain sensitive data. If the Trash is always doing it, create two folders with the same name in different locations, drag the files into one, and move the other into the folder which contains the first.
    (51817)

  • How do i delete large files and pics of my mac book pro

    how do i delete large files and pics of my mac book pro

    Make sure that you do not delete any system file, or part of an application.
    Use Omnidisksweeper as a search tool   http://www.omnigroup.com/more

  • How I can delete remained files on phone mem after...

    How I can delete remained files on phone mem after removing apps?
    Because it uses a lot of space and I can't use many apps and it says:
    "Memory card full.remove some files first."

    You cannot delete the default apps. Only those that you have added.
    Default apps wiggle, but they don't delete.

  • Does anyone know how i can view PDF files using Galaxy Note 2?

    Does anyone know how i can view PDF files using Galaxy Note 2?
    This is what i have been doing;
    I click on the file i wish to view (via a portal)
    this file goes to notification widget (i drag down screen)
    notification/message says download complete
    i click on notification/message
    nows it says complete action using (here i only have 2 icon options 1= DB Text Editor 2 = HTML Viewer)
    I have installed Adobe Reader.

    Can you confirm if the downloaded file is a pdf file, that is it ends with .pdf?

  • How do you delete .pdf files?

    How do you delete pdf files from android Adobe Reader?  I  can delete the files, how do I
    delete the file name from the Adobe Reader file list, especially duplicate file names.
    someone  please help me. this will have to be done from  within the Reader, I  think. ?

    The full instructions are here: http://learn.adobe.com/wiki/display/readermobile/Android+FAQ.
    Ben

  • How do I delete a file from Reader?

    How do I delete a file from Adobe Reader?

    Files are not kept "in" Adobe Reader, but on your local disk, or at Acrobat.com
    Do you want to delete entries from the "recent" file list?

  • How do I delete a file from the Adobe Reader for iOS?

    How do I delete a file from the Adobe Reader for iOS?

    Read this:
    http://forums.adobe.com/thread/1012973?tstart=0

  • How do i delete Older files from the directory before create a new file?

    Hi,
    How do i delete older files in a particular directory,
    the senorio is count the number of .txt files in a directory and delete the older files if file count is more than 10. (if i add 11th file the very first file has to be deleted)
    i have written the code to count the files and delete , but it is deleting all the files instead of older file
    public class ExtensionFilter implements FilenameFilter {
      private String extension;
      public ExtensionFilter( String extension ) {
        this.extension = extension;            
      public boolean accept(File dir, String name) {
        return (name.endsWith(extension));
    public class FileUtils{
      public static void main(String args[]) throws Exception {
        FileUtils.deleteFiles("c:/countfile/", ".txt");
      public static void deleteFiles( String directory, String extension ) {
        ExtensionFilter filter = new ExtensionFilter(extension);
        File dir = new File(directory);
        String[] list = dir.list(filter);
        File file;
        if (list.length == 0) return;
        for (int i = 0; i < list.length; i++) {
          //file = new File(directory + list);
    file = new File(directory, list[i]);
    if ((list[i]).length()>=10)
         System.out.print(file + " deleted : " + file.delete());
    Thanks,
    Jamin Rosina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    What your code is doing now, is deleting all filenames that are longer than 10 characters.
    Your problem lies in the line:
    if ((list).length()>=10)

  • I have two Apple ID, how can I delete one and use the email address associates to the main one?

    I have two Apple ID, how can I delete one and use the email address associates to the main one?

    If you abandon one of the Apple IDs you will also basically be abandoning any content that you have acquired with that Apple ID. Content can only be updated and re-downloaded with the Apple ID that was used to buy it. Apple will not combine the content of Apple IDs and Apple will not transfer the content from one Apple ID to another Apple ID.

Maybe you are looking for

  • Airport no longer operates after Leopard Upgrade in MacBook Pr0 17

    For my macBook pro 17" I purchased and loaded Leopard OS two months ago. Ever since my AIRPORT HAS NOT WORKED CORRECTLY, and with the last update installed I have been unable to use Airport at all. The connection is either completely GONE or fades ev

  • How to  disply value in full length

    Hi expert,       I have cost center field in the report, but its value has been truncated in the report, such as for value 'FO GM operation canada eastern region', it is truncated as 'FO GM operation ca' in the report. can you please tell how to disp

  • DJ 6940 prints garbage in mid-document

    I have a user with a DJ 6940 that suddenly will start printing garbage in the middle of a document. It used to do fine for the whole document. I've uninstalled and reinstalled the whole printer, but if anything it works worse. Any ideas aside from re

  • Create Materialized view is very slow

    Hi Please assist the pasted MV is taking more time(nearly 10hrs) to create, however the select query is executed fraction of seconds. CREATE MATERIALIZED VIEW ACOSQ2.CDVEDLCRD_MV PCTFREE 10 PCTUSED 40 INITRANS 2 MAXTRANS 255 STORAGE ( INITIAL 64 K MI

  • Suppress confirmation tone when sending text on 62...

    Hi Is there anyway to suppress the confirmation tone when a text message is sent without using a silent profile? This is on a 6233. I want to be able to send a text message silently, but still have my selected ring tone, etc active.