General :: Dualshock 3 With Ubuntu - Can't Find A Delete Button
Jun 4, 2010My bad it was the game not the controller I figured it out. I can't find a delete button though..........
View 1 RepliesMy bad it was the game not the controller I figured it out. I can't find a delete button though..........
View 1 RepliesInstead of moving to trash, how can i make the delete button delete? Delete is already enabled on the right click menu.
View 7 Replies View RelatedI an running Ubuntu 10.04 and for some very strange reason, everything works just fine except for the delete button. Usually I wouldn't be concerned about this, but lately, I've taken to programming in vi so the delete button is pretty useful.
View 3 Replies View RelatedI 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 a directory containing a ton of photos, some of which are duplicates but just with different names. Is there any way in linux to find all the duplicates and remove all of them except the most recent version? I know on Windows there are utilities that will do this through a GUI, but I'm using Linux through the CLI only.
View 6 Replies View RelatedI know how to make another button act as the middle button but how can I map several mouse buttons to the middle button? xmodmap complains if I repeat button numbers in the pointer option.
View 2 Replies View Relatedi removed the shutdown button from panel and i cant find it and dont know what to do i already went to the add to panel option but there is no shutdown button there i cant even shutdown using ctrl+alt+delete
View 6 Replies View RelatedMany 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 RelatedMousepad in xfce seems to have a problem when compiled with the latest libraries. In Slackware Current (13.1 RC1?) the "Find" button stays disabled the SECOND time you try to do a "find". Because of this, you can only do one "find" without closing Mousepad and opening it again.I found a bug report for this problem in a forumr a different distribution:[URL]I have applied this patch to the current xfce source code on my local machine and it seemed to solve the problem.It would be nice if this patch could make its way into the 13.1 release.
View 4 Replies View RelatedI want to use the shell to find .zip files in my music directory and all sub directories and then delete only these files. The following will find the files I want to delete
Code:find /home/me/Music/ -name *.zip -lsWhat is the next step to delete *only* these files.Would it be a good idea to move them to another directory before doing the final rm - how would I do this
I have a bunch of text files, all of them have a .txt extension. They are all located in subfolders of the /MyTextFiles folder (but could be anywhere, no idea what depth). If any line in any of the text files has the word "hello" I want to delete that entire line. I know sed and awk are made for this problem but I can't seem to get the syntax correct.
View 1 Replies View RelatedI want find a bunch of log files and delete ones that are older than say 5 days. Ideally I would then like to add this my crontab to run once a day.
The log files are in /var/log and are owned by root. They have a standard naming convention which is [date]RootCronRsync-backupHOME.log An example file is 20100621RootCronRsync-backupHOME.log Trying to put together a bash script to do this I think I need something like
Code: find /var/log/ -name *RootCronRsync-backupHOME.log -mtime +5 -exec rm {} ; However if I try this without the -exec rm (ie to see if I can find the right files first) I get the following error find: paths must precede expression: 20090405RootCronRsync-backupHOME.log Usage: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
I've got this line find . -type d -name 'elements' -exec rm -rf {} ; put together to find and delete all directories named elements and their contents.
It does work but whenever I run it I get the error/warning
Code: find: `./dir3/elements': No such file or directory
find: `./dir6/elements': No such file or directory
[code]....
I recently moved to a new machine, and I copied my entire home folder across. This included lots of hidden (starting with '.') folders, and in many cases they are config folders for packages which I have not installed on the new machine. They are taking up space, so I would like to delete them, but to go through manually and figure out which ones I need would be very laborious. Is there a way to find, and perhaps delete, config folders for packages that are not installed?
View 2 Replies View Relatedlinux kernel 2.6, GNU, slackware 12.0
KDE 3.5.7
When I click it, a window opens but I loose the menu bar. I click on a post in this window, and the same happens. So, if I want to save the page, I have no way to do it.
Where can I find add/delete software in Yast. When I use Gnome I see this entry and on KDE 4.4 that entry seems to be gone.
View 3 Replies View RelatedI have about 1TB of data to sort out and need a good GUI package to find and safely delete the duplicate files. I am running Ubuntu 10.04 amd_64. Would appriciate any thoughts on how to get it done.
View 8 Replies View RelatedI am trying to edit a print file.
For every occurence of the ^L form feed character I need to remove 5 blank lines after it but still keep the ^L.
I am a rare user of sed and am ok with the basics but am struggling with this.
I have a series of file names in a text file that I generated by running
Code:
bash-4.1# ls -alt *.txz | awk '{print $8}'
and then copy pasting the output. All of these file names have the version number
Quote:
-4.4.1-x86_64-1alien.txz
I just want a method to remove that version number from all the filenames so that I can then add all the packages without version numbers to a blacklist file.
I've tried kwrite and mousepad and both have a search feature and a replace feature but I haven't been able to just have the text removed successfully.
I need to find a string in a file ... then delete the line it is on, as well as the next 6 lines. Or, delete the line the string is on and all subsequent lines until the search finds the character "["
example:
filename = test.txt
contents:
[foo]
test>test
test>test
test>test
[Code]....
so, in this example. I'd like to search the file for string 'foo' and delete all lines from that line until [bar] (not deleting the line with [bar])
I have a file with a number of strings like the ones below
string1#m1asdfe23easdf23wefas
string2#mfaaeb2vr1rhserh
anotherstring#ji89ensrsegr
anotherone#m1ynmdt324nsdt
I'm trying to delete everything after #** so that
string1#maasdfeaveasdfawefas
string2#mfaaebvrserhserh
becomes
string1#ma
string2#mf
tried sed 's/#..*//g' but as you all will know it returns string1, string2 etc.
I have a program that creates and uses a shared memory segment. I am trying to find out how to detach and delete this shared memory segment when I hit crtl-C, and I still need the process to terminate.shmdt() and shmctl() have variables that are local to the main passed to them(shared and shmid)
Code:
//Prototype
void leave(int sig);
//part of code trying to use signal handling
if(signal(SIGINT, leave))
[Code]...
I installed ubuntu today by installing Wubi and after downloading i rebooted computer and selected ubuntu but i got an error saying 'Try (hd0,0): FAT16: NO WUBILDR' and there was few more but i forgot and at the end it says 'Cannot find GRLDR in all device Press CTRL+ALT+DELETE to restart'. it used to work when i had vista...
View 3 Replies View RelatedSo I have a intel wifi link 5100 , the drivers should work BUT iwconfig doesn't show my card ..
However doing a ' sudo lshw -C network ' command , it DOES show my wireless card is recognised but not enabled and here is where the problems start ..
I have a touch button on my laptop to enable/dissable it And when I touch it in Ubuntu it doesn't light up like in W7
How can I enable it :s? I really want to use ubuntu !
i m using ubuntu 10 .10.for 2 weeks it was working fine yesterday onwards it changed.tried all themes but still i cant drag the window to make it small in sizethere is no close button minimize and maximize button in all the application and files[URL]
View 1 Replies View RelatedWhile searching the net I found how to complete disable the functionality of the middle mouse button but I need this button for many other uses.I want to disable only it's paste action.
View 2 Replies View Relatedi was so happy using the window buttons applet in gnome panel. it was working fine in maximize window , now suddenly i find the close button has vanished i tried to remove and re install, changed theme and all the jugglery within my limits... have absolutely no idea what went wrong, any clue ? to get back the "CLOSE" button ? its funny with just the minimize and restore button visible in maximised mode... its the close button i use most in maximise mode
View 1 Replies View RelatedSO after using Testdisk to recover some images, the folders recup_dir.1 & 2 have saved in my FIle System area, when ever I try to press delete noting happens. I have also tried rm -f -rrm -f -fIt still dont delete, I have also deleted my user account and made a new one, but the files are still there.
View 4 Replies View RelatedI am trying to use an old box as backup server. I have tried a couple of possibilities along the lines of:
Quote:
rsync -a --delete --progress --log-file=/home/$USER/info.txt -e ssh /home /etc root@192.168.0.106:/mnt/back
The problem is it does not delete files that has been removed from my local system?
I run the command as root on the local system.
(I realize I should properly not ssh into the server as the server's root but I'm having trouble with the permissions and I want to make sure everything else works before messing around with it)
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 Related