Smoothly cruising with Linux for some time now, the data corruption notwithstanding, a few things to note :
1. When using larger screens, anything larger than 15", I find the KDE mouse pointer acceleration controller far superior than XP's, The ability to fine tune the acceleration values makes moving all over the screen quite easy, presently I have set it to 5 (threshold is always 1) on a 1280 X 1024 resolution screen. In XP a lot of lifting of the mouse is needed to get to the corners.
2. The last data corruption left me with a lot of files without proper names or extensions. In XP these show up as unidentified files, where as in Linux, even without the extensions, konqueror is able to identify the file types from the file headers. Impressive.
3. One area where XP scores is in the file transfer process. For some absurd reason, Linux creates empty folders in the target destination much before shifting the files within them. This can create a lot of problems if the transfer is interrupted for some reason, as the folders all exist at the destination giving the impression that the transfer has been completed. Then the user has to go to the target destination and check each folders properties to see if they are merely shells. I am sure there would be some script to automate this shell checking process.
4. Bulk renaming is a cinch in XP, strangely this is a novel concept in Linux. There is no way to convert all files with one extension into another. In XP something like ren *.jpg *.xyz works, but in Linux you need a script, like this one which I use to rename the youtube videos files from the browser's cache where it is stored without extension:
for file in *; do echo $file; new=$file.flv; echo $new; mv $file $new;
(the whole thing can be typed out at the prompt)
5. The difficulties faced in getting a video editor seem unsurmountable. Virtual dub and Wine do not tango. From the net, the many alternatives exist as source files requiring considerable patience in modifying them into usable form. Something I have been unable to accomplish so far. This is the only reason why I still need to have an XP installation.
6. Virtual box, the OS emulator fails to install properly, inspite installing from the DVD while installing the OS. No solution is forthcoming from the OPensuse forums in this regard, besides trying out the latest version.
Blogged with Flock