I was under the impression this had been out for quite some time. Regardless, get yours at http://labs.adobe.com/downloads/flashplayer10_64bit.html.
Slashdot Linux Story | 64-Bit Flash Player For Linux Finally In Alpha
Luchio writes “Finally, a little bit of respect from Adobe with this alpha release of the Adobe Flash Player 10 that was made available for all Linux 64-bit enthusiasts! As noted, ‘this is a prerelease version,’ so handle with care. Just remove any existing Flash player and extract the new .so file in /usr/lib/mozilla/plugins (or /usr/lib/opera/plugins).”
Posted in: Linux.
Tagged: Flash player
Now here’s a handy website:
Alternatives to Windows, Mac, Linux and online software – AlternativeTo.net
Tired of crappy software?
AlternativeTo is a new approach to finding good software. Tell us what application you want to replace and we give you great alternatives, based on user recommendations.
Posted in: Software, Tech.
I don’t know how I got along without using WebDAV for so long. Like the author of the page cited below, I work on multiple computers daily, two at work and two at home. For years I’ve been using FTP and hosted web space to access the current version of any file. Using WebDAV makes all that unnecessary and simplifies many tasks. And, it makes using note apps like Tomboy practical. I like Tomboy, but what’s the point if my notes are left on a computer that I can’t access later in the day?
So I was very happy to learn that I could set up WebDAV synchronizing with Tomboy. The excerpt below got me started, but in the end I had to do things slightly differently to get everything up and running.
Here’s how I synchronized Tomboy on FC11 and FC12:
- I set up a WebDAV directory for Tomboy on my Dreamhost account, with .htaccess password. Very easy.
- wdfs was not installed by default, so first I installed it using yum: sudo yum install wdfs.
- Next, I created a directory to use for the purpose of mounting the remote WebDAV share: mkdir newdirectory.
- When I tried to add myself to FUSE group as directed below, I got an error message that no such group existed. I threw some salt over my left shoulder and continued.
- I ran modprobe as directed below: sudo modprobe fuse.
- I found that a reboot was required after the modprobe.
- I ran the command as directed below, using my own information of course: wdfs http://mywebdavserver.biz/foo ~/thelocalmountpoint -o username=nate -o password=natessecretpassword, BUT, I found that I had to add a trailing slash to the remote directory, so it had to be wdfs http://mywebdavserver.biz/foo/ ~/thelocalmountpoint -o username=nate -o password=natessecretpassword. I can’t remember if I had to use a trailing slash for the local mount point…
- I went into Tomboy preferences and set up synchronization. On FC11, it wasn’t apparent how to get into the Tomboy preferences dialogue. Do so by right clicking the icon on the tray.
- And everything works great! The main snags were syntax errors and the need to reboot after modprobe.
Linux.com :: Sharing files with wdfs and FUSE
To start using wdfs, you must first install FUSE. FUSE is widely supported these days, so an official package from your Linux distribution is probably available. If you have not used FUSE before, though, you will need to ensure that it is properly configured.
FUSE uses the fuse group to determine which users are allowed to mount and unmount FUSE filesystems, so add yourself to the fuse group with sudo usermod -a -G fuse yourname. Load the FUSE kernel module with sudo modprobe fuse.
If your Linux distribution does not provide a wdfs package, you can grab the latest tarball from the project’s Web site. In addition to FUSE itself, the only special dependency is neon, a WebDAV client library. wdfs should compile and install with a basic ./configure; make; sudo make install.
With wdfs compiled and installed and the FUSE module loaded, make a local directory in which to mount the remote WebDAV share. The basic mount command is wdfs http://mywebdavserver.biz/foo ~/thelocalmountpoint -o username=nate -o password=natessecretpassword. As is the case in Web browsers, you can use https:// URLs if the remote share uses HTTPS, and you can append a port number after a colon if the server is not running on the standard HTTP or HTTPS port.
Posted in: Linux, Tech.
If yum gives you the error message database disk image malformed, try:
yum clean all
Posted in: Linux.
Tagged: yum
Why did I never know that you can input Chinese using pinyin on the Chewing input method? I always thought it was purely a zhuyin input method, but there is an option to use pinyin with Chewing. This makes Chewing the choice input method for traditional Chinese on Linux input systems such as IBus and SCIM.
I was made aware of this by an excellent page on the subject that you can find at http://www.pinyinjoe.com/linux/ubuntu-910-openoffice-chinese-setup.htm. Well done Pinyin Joe!
Posted in: Chinese.
Posting from Zoho writer
I’m test posting from within Zoho writer. I’ve been playing around with Zoho (http://zoho.com) for a day or so and so far really like it. Let’ see how easy this is to post.
(If this were a movie, you would now see a clock with the big hand fast forwarding a minute.)
Well, that was quite easy.
Posted in: Apps.
Articles such as the one linked below appear regularly, and I hope they continue to given that new services are appearing all the time. After reading the article linked below, I tried Zoho (http://www.zoho.com) and it looks very promising.
Six office alternatives
Six office alternatives
Microsoft will release Office 2010 in June but until then there are some great alternatives.
In June Microsoft will release a final version of its Office 2010 productivity suite. Naturally many users will upgrade, at substantial cost, to the latest version of the popular Office suite, but for those not so eager to hand over their money to Microsoft there are still many great alternatives. And they are free.
OpenOffice.org (http://www.openoffice.org)
ABIWord (http://www.abisource.com)
Google Docs and spreadsheet (http://docs.google.com)
ThinkFree Office Online (http://www.thinkfree.com)
Zoho (http://www.zoho.com)
NeoOffice (http://www.neooffice.org)
Find complete article at http://mybroadband.co.za/news/Software/10918.html.
Posted in: Apps.
Fedora just gets better and better, but it’s still having problems with Skype video out of the box. The following command gets everything working on FC12 x86-32:
env LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype
I have two FC12 computers running 64-bit FC 12. Skype video on the Asus laptop works right out of the box, while I can’t get it to work at all on my home-made AMD64 box, although video does work in Cheese across the board.
Posted in: Linux.
The following from Dreamhost spells out the .htaccess option. Another option would be to create a blank index file and place it in the directory for which you do not want indexing enabled.
Modifying directory indexes – DreamHost
Turning off directory indexes
Place the following in an .htaccess file in your main domain name folder to disable directory indexes throughout your entire site:
Options -Indexes
That’s it! Now, if someone tries to browse the contents of any directory of your site, they’ll get a big nasty 403 (Forbidden) error.
Turning on directory indexes
But suppose there’s a particular directory in your site that you *do* want people to be able to browse (a folder containing photos of your escapades at the last Pink Floyd concert, perhaps).
Simply create a new .htaccess file inside the folder you want to be browsable, containing:
Options +Indexes
This will now override the “global” setting and allow users to view all your of embarr… I mean of course *wholesome*… photos in that single directory.
Posted in: Apache, Linux.
To convert flv to avi using ffmpeg, use:
ffmpeg -i myvideo.mpeg myvideo.avi
This should work to convert to other formats as well, such as mpg.
Then if you want to burn a DVD, you can use DVDStyler.
Posted in: Linux, Video.