![]() |
|
Spaces home Kok-Yan's blogProfileFriendsBlogMore ![]() | ![]() |
|
Kok-Yan's blogA reminder to myselfThis is a message written for myself, may the wise advise and rebuke my words. I have loved, but yet my heart is still broken. I have worked, but yet achieved nothing. I have slept, but yet I'm still restless. I have been fed, but yet I'm still hungry. Life is full of disappointments, but... Treasure every moment you have, for happiness never last. Seek wisdom before the night is upon you, for the ensuing pain will disable you; Trust and have faith, for many questions will bring sorrow, Be careful and concise with words, for fools of fools speak quickly and verbosely, Choose honorable actions over words, for a picture is worth a thousand words, Be honest and earnest, for deceptions will not go unpunished, Learn from disappointments, for you will gain invaluable experiences. Without guidance from the wise, you will be condemned for eternity. 8/9/2008 Boston Typewriter Orchestra7/29/2008 A must-see lecture on how you should live your lifeI must admit, the past week had been very difficult and I was deeply upset by a chain of events that I cannot comprehend at the time. The following lecture allowed me to see the reasons behind those events and have changed my view on the situation entirely, and also life in general, for the better. The lecture was given by professor Randy Pausch in September 2007 (after he had been diagnosed with terminal cancer) and is titled "Really Achieving Your Childhood Dreams.". In the lecture, he talks about his own life and his life philosophies, and is deeply meaningful and very positive. Please spend some time watching the video and looking at the slides - I'm sure you'll find something really positive from it. 7/23/2008 Unsure messagesI don't usually write about personal stuff on here but recent events has taught me to never forget a very important rule - if you are not sure about saying something, don't say it - no exceptions. The last 2 words "no exceptions" are very important; the last time this happened, I managed to refrain from pressing the "send" button and I was glad I did that. This time round, I let one such message slip through and it made a simple situation really complicated, and may have far-reaching and tremendous consequences because of this. So please, for everyone who is reading this, if you can't refrain from writing that email, at least save whatever you're planning to send until the next morning. Think about it, think some more, and delete / archive it - but never send it. 7/17/2008 BSG Toaster
Lol, this just cracked me up when I saw it. It is actually availiable for sale at the NBC Universial store! 7/1/2008 Returning an array from a Bash functionFor those of you who are still learning Bash (including me...), I'm sure one of the things you would have asked yourself is "How on earth do I return an array from a bash function?". Well I've written a small script that will explain this: #!/bin/bash
IFS=$'\n\t'
function fnGo () {
array=(
a s d f
"gh ij" "kl mn"
)
echo "${array[*]}"
}
# -------- out - String variable --------
out=$(fnGo)
echo "\"out\" isn't an array: ${out[1]} - nothing"
echo $'\n'"\"out\" Works with iteration:"
for item in $out; do
echo "item:"$'\t'"$item"
done
# -------- out2 - An array --------
out2=($(fnGo))
echo $'\n'"\"out2\" now an array:"
for ((i=0; i<${#out2[*]}; i++)); do
echo "item $i:"$'\t'"${out2[i]}"
done
echo $'\n'"Though \"out2\" cannot be iterated anymore...:"
for item in $out2; do
echo "item:"$'\t'"$item"
done
Basically, it's exactly as you'd do for returning a single value from a function (use echo) - but, you need to make sure you surround the variable with quotes (in the function - Note you can only either choose to use an iterator method (out1), or an addressing method (out2), but not both - run the script and you'll see what I mean. Oh, one more thing (just as a tip for those who don't already know) - pay attention to your IFS variable (which determines how parameters are separated)! This is especially important if you're taking in quoted (escaped) command-line parameters that may have a space in them (such as file names) - in that case, I normally use "\n". MPlayer resume script (v2-alpha)
A while back I attempted to write a wrapper script for mplayer to resume a file. Unfortunately, that script was rather limiting where:
Now I have a new script that resolves the above issues! Unfortunately, there are some new issues with the new script:
Sounds cryptic? It'll be clearer after I've shown you some examples.
As with the previous script, an example usage (we'll assume we're trying to resume a file called "mediaFile.avi" at timecode 300, and the script is named "mp"): echo 300 > mediaFile.avi.txt mp mediaFile.avi Also as with the previous script, you'll probably want to enable the "statusline" display by adding "msglevel=statusline=9" into your mplayer config file (at "~/.mplayer/config" | "/etc/mplayer/config"), and ensure "quiet=0".
Now, to use a profile for all files (at the moment, it doesn't matter where you place "-profile" and "-ss" - they just get applied to every file...): mp -profile hd file1.avi "file 2.avi"
However, the real magic of the v2 script comes into play when you have multiple files, matching multiple profile switching definitions, with different resume files! For example: $ ls -d *.avi*
file1.mts
file1.mts.txt
2x03 SomeEpisode.mkv
2x03 SomeEpisode.mkv.txt
file2.avi
$ less mp
...
profiles=(
# [PF name] [RegExp]
"hd" "(/|^)[0-9]{,2}x[0-9]{,2} .*\.mkv$"
# ---- Generic profiles ----
".mts" "\.mts$"
)
...
$ mp file1.mts "2x03 SomeEpisode.mkv" file2.avi
The script will now use the ".mts" profile for the mts file, the "hd" profile for the .mkv file, the "global" profile for the .avi file, whilst picking the values out of the resume files and resume at the point specified in the .txt files! Anyway, you can get the script here. Of course, if anyone's interested in improving it, they're more than welcome to do so! Just don't forget to email me a copy! 6/27/2008 Restoring SMB sharing on XPA couple months ago, my brother's PC suddenly stopped sharing files via SMB (port 445). Since my brother told me he hasn't done anything, I was a bit mystified as to what exactly is going on. Initially I though it was a firewall problem - so I checked the firewall config and tried to access the share from localhost (on his PC), which failed as if nothing is shared (i.e. "net view \\127.0.0.1" just times out). I then tried "netstat -an" to see if the SMB server is actually listening for a connection, and it turns out nothing is listening on port 445! A restart of lanmanserver and lanmanworkstation (services) and a reboot didn't help, so in a last ditch attempt to get something shared I enabled NetBIOS over TCP/IP, which seems to have done the trick (i.e. I can now access the shares). However, port 445 is still no where to be seen in "netstat -an"... After a lot of searching on Google, I found this article which more less describes the problem I've been having. After turning off NetBT, applying the registry fix (adding HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters:SmbDeviceEnabled = 1) and rebooting (I had also re-installed "File and Printer sharing" at the time), the shares were now accessible again via port 445. Unfortunately, I never got to the bottom of what caused this problem - seeing it wasn't simply a missing registry value, as all my other systems don't have the SmbDeviceEnabled value. But I guess I can consider this one being resolved via a work-around as sharing is back to normal... 5/19/2008 Re-partitioning XubuntuNote: if you prefer the bare-essential steps and code, please jump straight to the "The re-partition process" section. Having used Xubuntu for a while now on my transition test rig, I've decided to re-partition the HDD to better suit my needs. Here's why I'm doing this:
However, the main drawback (and my original reason for not having a separate data partition) is that your HDD's capacity is effectively reduced (Data = HDD - OS - Swap), and not to mention when your OS partition runs out of your space, you're boned (alright, I know what you're thinking, but let's not get carried away with hacks like creating symbolic links to the data partition...). First thing first, let's figure out what the setup should look like and how much space we need, then we can explore different options when we encounter them. Partition, swap and hibernation configAs much I want to make a complete transition over to Linux, there are some situations where Windows is required (like certain applications and firmware updates), so we need a Windows partition. The best way to judge how much space is required is to look at the existing space usage of "%SystemRoot%" and "%ProgramFiles%" - you can use a tool like "diruse" (from the Windows XP support tools) or folder properties in explorer.exe... Windows: In a clean(ish) install of XP SP3, %SystemRoot% + %ProgramFiles% comes to about 2.7 GiB (say, 3GiB), and allowing 1 GiB each (yeah, I know it's rather generous) for MS Office, IDEs, .NET, JDK/JRE and AutoRoute the minimum size so far comes to about 8 GiB. Adding a 15% defrag free space requirement, overhead for old (un)installation files, system restore files, pagefile.sys, hiberfil.sys, and some free space, the minimum size for the Windows partition comes to 12 GiB (which also fits nicely onto 3 DVDs when imaged). It is worth point out that if you have a lot of RAM and want to hibernate your Windows session, you'd obviously want more space to accommodate hiberfil.sys. A safe suggestion would be the next multiple of 4, say, 16 GiB (if you have 3 GiB of RAM) (to fit onto 4 DVDs). As for page file, it's up to your judgement / Windows's to determine how much is needed - and if you have a second HDD, put the page file there instead. Linux: As for the Linux partition, it's a little bit more difficult to estimate (seeing I haven't really used it for that long) - but base install rounds up to about 3 GiB. For now, I've assigned 16 GiB to it as I plan on installing some of the software above using WINE (like MS Office), OpenOffice, IDEs. Though I'd probably use a 12 GiB partition when I partition my main system - but I'll just have to wait and see how it goes. As per the Xubuntu default setup, the OS(es) should reside on a primary partition of its own, with the rest being on extended, logical partitions - you can only have up to 4 primary partitions on a volume. As for swap and hibernation (suspend to disk), I've opted for a 512 MiB swap file and a 512 MiB swap partition dedicated for hibernation, for the 512 MiB of RAM (though there are usage problems with this setup - I'll talk about that next). The reason behind using a swap file is because it is more flexible (can be resized dynamically) with no reported performance difference under the 2.6 kernel comparing to a swap partition. As for the swap partition, it is used because there doesn't seem to be a way to configure Xubuntu's in-kernel hibernation implementation to use a hibernation file. The main problem with this setup is that hibernation would fail if the entire swap file had been filled and overflowed onto the hibernation swap partition. Unfortunately, swapoff-ing the swap partition will result in a hibernation failure.
Update: 2008-05-27 @ 03:09 Hacks aside, there are actually solutions to enable proper hibernation to a file - such as TuxOnIce, but it requires patching and re-compilation of the kernel - which is something I don't plan on doing in this project. While we're (kinda) still on the subject on partitions, there is something that can resolve the issues with partition sizes - LVM (Logical Volume Manager). In theory, pretty much everything (except "/boot") can be setup to use LVM, but I've decided against it because:
For now, I'll leave LVM alone until I need a heavy-duty file server with RAID (or equivalent) that runs only on Linux. File systemSo far, we've decided on the partition configuration and now, it's time to choose the file systems. Since the aim of this project was to re-partition the drive, I've decided to stick with Ext3 in Linux as I don't see any benefits in using another FS for my needs. As for Windows (XP), it's a no-brainer - NTFS (linux can mount that as ntfs-3g type). I have chosen Ext3 as the file system for the data partition as I will be using Linux primarily, and Windows XP can use the "Ext2 Installable File System for Windows" to access that partition. Pre-requisites and toolsWe're now almost at the point where we can start re-partitioning the drive - now that we know what the disk setup is going to be. We obviously need a re-partitioning tool, but we'd also need something to backup and restore the drive (in case anything horrible were to happen), and somewhere to store the HDD images. Not long ago, I came across the SystemRescueCd (possibly on Hak5 or this article on linux-mag.com (free subscription required) - can't remember exactly which...) which demoed the imaging and bare-metal restore capability of the live CD. As well as the partimage tool on the live CD, it also contains GParted (for re-partitioning) and samba (for smb-based network backups). But there are so many more tools on this CD it is definitely worth keeping in your toolbox. The re-partition processHere's the target partition configurations (for a single HDD setup): 12GiB NTFS (primary):
(Windows) C:\
16GiB ext3 (primary):
(Xubuntu) /
* (extended):
[*]GiB ext3 (logical):
/home/[user]/ # Replace [user] with the users
[RAM]GiB swap (logical):
hibernation "swap" partition == RAM size
The essential steps of this project are:
That's it! Simple eh? lol. Some links to the interesting articles:
|
||||||||||||
|
|