General :: Delete 3.3GB File In Thumbdrive?
Nov 21, 2010when i try to delete, it says can not move to trash,so, how do I delete it permanently?In windows is shift+del
View 2 Replieswhen i try to delete, it says can not move to trash,so, how do I delete it permanently?In windows is shift+del
View 2 RepliesI've tried to do the installs using Unetbootin, LiveUSBcreator, and Startup Disk creator and the Install program from within the distros themselves, regardless of installation method the same problem returns. So I do not think the problem is related to method of installation.
Maybe it's hardware? I've tried a total of four different motherboards, (an MSI, 2 Gigabyte and an Asus) all with updated BIOS, all 4 of which work perfectly fine with normal Linux installations to the HD. I have no troubles running any of the above distros when installed to a hard drive.
The problem comes when I install to a thumb drive. Which thumb drive? Take your pick. I've used Sony, SanDisk, Kingston and a handful of cheaper brands in sizes from 2G up to 16G. The problem always returns regardless of the hardware involved. Therefore I do not think the problem is related to hardware.
I want a fully functioning installation of Linux on a thumbdrive. (I do not simply want a Live CD copied to a thumbdrive.) This will allow me to make changes to the software/settings and have those changes remain after rebooting. I'm able to do this just fine, and everything works perfectly until the third, fourth, or fifth reboot. At this point I enter my password and my password is no longer accepted. Sometimes the screen flickers a little, sometimes it just reloads the prompt. But it doesn't let me in. At this point it's Game Over. All the hard work installing and tailoring the install is down the drain. Yes, I've searched and found threads of this similar problem. Many of them go back to 2005 or 2006. The vast majority of them are people begging for help, receiving a few suggestions, finding no resolution and then the thread just dies. Honestly I've spent many, many hours following outdated advice that has, on occasion, worked, but only temporarily. The problem always returns. Something is seriously screwed up and I can't be alone.
So here I sit with a brand new 4Gb Sandisk that up until last night had a beautifully running Ubuntu 10.10 installation. And yet, voila, my password is now no longer good enough. It simply will not let me log on. I enter it, hit enter, and the log-in screen simply reloads itself.
Many folders within a subdirectory some of which have lots of data in and some of which have only one specific file called produkt.fil inside.I need a command to find and delete those folders that contain ONLY the file produkt.fil - if other files exist (doesnt matter what they are) then they should be left alone. Note: produkt.fil exists in all of the folders always.
View 5 Replies View RelatedWhen I ls -l /etc/passwd, -rw-r--r-- 1 root root /etc/passwd When I login as myself, and rm /etc/passwd, it asks: rm: remove write-protected file '/etc/passwd'? If I say yes, will it actually delete the passwd file?
View 1 Replies View RelatedHow do I delete a file if it happens like this.
-????????? ? ? ? ? ? temp.cgi
Why is there no Delete when I right click like there is with Windows in ubuntu? Pretty much everything else is there like new folder and so on Is there some way to add it? Also why when i delete something does it not ask me if I am sure that i want to delete that file?
View 6 Replies View Relatedwe assume that we have 2 folders with the name 1 and 2 . The folder 2 is inside 1 . Also, in folder 2 we have file with name "file.txt". And we are in folder 1 . How can we delete the file.txt in one command line ? I mean without using the code below:
Code:
cd 2
rm -f file.txt
cd ..
after so many times deleting staff for mistake.I am unable to get it back from my external hard drive.I use Ubuntu 8.04 LTS and I have all my staff on external hardrive.
Quote:
Z:----> Media -----> FreeAgent Drive
After delete I knew was her
Quote:
/acousticmetal[1]/
, I did all the search I can possible think of.and i dint have any good look can any one please help me out on this issue?.
i wanna ask on how to delete a file or a certain file in linux by using php or in other word by using web browser. example i want to delete the file inside /var/www/cgi-bin/ with browser.
View 14 Replies View Relatedlooking to delete the last 6 lines of a file with sed. figured out how to delete the last line..but i want the last six.
View 6 Replies View RelatedI was creating a few scripts, I am trying to create a restore script to restore files that have previously been moved to a folder I selected. When moved I stored the original path for these files all in one text file.
I want to know if anyone can tell me how to delete the line from the file after using it restore the file. I have used the grep command to search through the file "pathName" to find where the file was stored but now want to delete that same line.
I am facing a basic problem in RHEL 5.2. Some of files in a mounted showing ? in place of owner and group owner.
root# find /data/abc -nouser
listing those files.
How to delete those files because
root# find /data/abc -nouser -exec rm -rf {} ;
showing error access is denied.
how to delete unreadable file? As you can see at attached picture, there is two unreadble files at root directory.
Code:
[code]....
I am trying to find and delete a file using this Code: find . -type f -name ph2964781400100954291.jpg -exec rm -f {} ; It does not work, I think because by default on my distro rm is iterative.
View 2 Replies View RelatedI have external USB HD 500 GB, by mistake folder with 13 GB deleted, using some windows recovery tools, i got it back, but the deleted folder still take and fill space on the HD!!
any idea how to remove or edit it under linux ?
I have a file that contains 100 ligns, i need to write a script that read 70 lignes and redirect those 70 ligns to another files and these 70ligns have to be erased in the first file
when i write this command
head -70 somefile.txt>test.txt
or
sed -n 70p somefile.txt>test.txt
i have these 70 lines in the text.txt files
but these 70 lines have to be deleted inthe first file somefile.txt
seems like i got a hacker on my server who placed a "western union fishing" site on it.i am not able to delete the directory with the root user.
Code:
root@laforge:/var/www/html/mailadmin.somewhat.com> ll
total 12
[code]....
i've got a file with sorted words - one on each line.How could it be possible to delete thouse lines that have words of length 1 or 2 (1-2 letters). I guess a good way it will be with AWK, n its fuction length(), but getting it, i dont know how to delete those very lines.
View 14 Replies View RelatedI have a log file which is continously being accessed. Now I want to delete the first line without disturbing the file.Is it possible? The Issue is the log file is being provisioned with ^@^@^@ characters in the first line occupying huge space.So I need to get rid of that. I dont have time to work with root cause but just a script to reduce this space.
View 3 Replies View RelatedI'm confused about "hard link" feature. I've been learning from my UNIX Academy DVDs training that hard links to a file can be many and each of them is an effective filename for the associated data. So let assume that we have some very sensitive data in a file and we want it to be deleted and file has 20 links. I "delete" a file, but in fact I deleted only one "name" of it. My understanding from the training that data is still there until we delete the last associated hard link. But how can I find the names of all of them? If we have the names, they can be removed one by one. Or may be there's command that can trace all the "names" and remove them at once?
View 14 Replies View RelatedWhat's a Unix/Linux one-liner that will let me delete all but the most recent N revisions of each file?
I've got a bunch of files with revision numbers as part of a legacy asset-management system:
bar.r7.js
bar.r8.js
bar.r9.js
bar.r10.js
bar.r11.js
[Code]....
I want to keep the last three of each, so in the above list the command would delete bar.r7.js, bar.r8.js and foo.r1.js.
When trying to delete :
I must say that the tar file contain only soft links...not real files...
i am having following lines in a file called test.
subscribe parser for dinesh
extend size for dinesh
subscribe parser for anish
unsubscribe parser for dinesh
extend size for arvind
I want to delete all lines which contains the string "dinesh". Is it possible.
When I plug in a usb thumbdrive, it doesn't show up under "Places" (FC#14). The thumbdrive has a light on it showing activity, it looks like it flashes when I plug it in as if it's being read, then a steady light as if it's ready to do whatever I want to with it. lsusb shoes it, it just
View 3 Replies View RelatedI have made a startup USB from an Ubuntu LiveCD already, but I was wondering how I might take a high-capacity thumb drive and install a number of different boot disks on it, from an Ubuntu LiveCD to a bootable floppy, and choose one at startup of the disk, kind of like Grub?
View 2 Replies View RelatedCode:
[serv@local subsys]$ rm -rf nagios
rm: cannot remove `nagios': Permission denied
[code]....
I have ubuntu 10.10 installed I have 5 more NTFS partitions in my disk other then Home & root My problem is, when I try to delete a file or folder it says "Cannot move file to the Rubbish Bin, do you want to delete permanently? The file "Nisarg" cannot be moved to the Rubbish Bin." I have more 2 NTFS partition on portable hard drive. On It trash is working fine.My home and Root folder also haven't this problem.
View 14 Replies View Relatedi use ncftp for some bash script action. how to delete oldest directory and oldest file using ncftp commands?
View 3 Replies View Relateddelete a file on a remote server using shell scripting.
View 14 Replies View Relatedis there any way so that we can restrict root to delete a file/directories and What is extended file attributes.
View 12 Replies View Related