Posts tagged tricks
Midori, Flash, and Unity Linux 2010
I just took a look at how Unity Linux 2010.1 shapes up and found that the flashplayer plugin doesn’t work with the default browser which is Midori. Here’s a quick fix for getting flash to work with Midori on Unity 2010. First, install the flash-player-plugin (as root in terminal or use the gui):
smart install flash-player-plugin [...]
Find Files & Directories Not Vis...
I wanted a quick way to be able to find out what files weren’t visible to others (and therefore, not visible to website visitors). Messing with arguments and the file command, you can do the following:
find -type f ! -perm -444
This locates all files not visible to ‘others’ in the current directory. You can apply this to d [...]