[00:39] Takyoji: Are you looking for something like this: [00:39] for file in *.VOB ; do ffmpeg -i "$file" "`echo "$file" | sed "s|\.VOB$|\.flv|"`" ; done [00:40] (That's a little more verbose than is necessary in this particular case, but it illustrates several concepts well. [00:41] I was suggested the following: for file in *.vob; do ffmpeg -i $file $file.flv; done [00:42] That will give you output of FOO.vob.flv [00:43] And since you're not quoting $file, it'll blow up if any of the .vob files have spaces. That may not be relevant in this case, but it's good to form good habits. :) [00:45] And actually, I always forget them, but this is a good use case for the built-in string manipulation features of sh: for file in *.VOB ; do ffmpeg -i "$file" "${file%%.vob}.flv" ; done [00:47] Or, to use a different syntax: for file in *.VOB ; do ffmpeg -i "$file" "${file/%.vob/.flv}" ; done [02:27] How are most web applications packaged for Ubuntu? [02:28] The files in a /usr/lib or /usr/bin folder, and then a soft link from the httpd root folder? [05:10] Takyoji: There's no such thing as "the httpd root folder". [05:11] Then what would be the more correct way of phrasing it? [05:13] You create a VirtualHost with a DocumentRoot pointing to the location it's installed in. [05:14] Generally a web application is in an interpreted language such as PHP, Python, or Perl, and as such the code is not actually the executable, but should not be changed, and thus belongs in and is packaged to be installed under /usr/share. [05:15] Then you just need an entry in /etc/apache2/conf.d/ or /etc/apache2/sites-available/ listing it. [05:23] Some drop things in conf.d to enable themselves at /APP_NAME/. I'm not sure how I feel about that. [05:28] It's a sane default. [05:29] I'd much prefer they actually support being installed on multiple virtual hosts. [05:30] What makes you think they don't? [05:31] I've used them. [05:31] ALL of them? ;) [05:31] (Drupal does. This is my most important data point.) [05:31] heh, no, just the ones I care about [05:31] Examples: PHPMyAdmin, Wordpress [05:31] I believe zenphoto does as well. [05:31] pssh, stop using child's toys. [05:31] :P [05:32] * tonyyarusso trolls [05:32] also, WordPress totally has a multisite capability - it's just not as elegant as Drupal's. [05:33] Supposedly it's better now. http://codex.wordpress.org/Create_A_Network [05:33] I'm talking about the packages anyway. [05:33] Oh, this isn't right anyway. [05:35] That assumes they're all under the same administrative control. [05:37] err, you're not root? [05:39] I'm root, running a shared hosting webserver for customers. [05:39] Maybe I'm misunderstanding what they're saying about wildcard hostnames. [05:43] hey anyone know if there is a way to control a web browser on one box from another one say via ssh? [05:46] Alpha_Cluster: ssh -X [05:47] lol yeah but i want to say show a window on the main screen and then control the web browser from ssh [05:47] VNC? [05:47] yeah i was thinking maybe that [05:47] i guess i should try and see if it works or if it messes up the flash [06:41] Anyone favor a specific e-commerce solution? [06:41] as in, setting up a web site to sell things? [06:41] I'd probably use Drupal and ubercart I think [06:46] Yus [18:48] so i was playing with terminal trying to open a file on a partition other than the main one ( /home or whatever) and it doesn't see it in terminal until I open it in gnome [18:48] whats that all about [19:32] Define "see"? [19:40] as in i use the command : ls [19:40] nothing comes up [19:41] but then after clicking on that partition and looking through it in the gui, and return to the terminal and try the same , ls cd pwd etc. commands it is visible [19:42] maybe it has to do with , the linux partition and the other partition's different file systems? [19:44] Sounds like the partition isn't being mounted on boot, and instead mounted on-demand when you first access it. [20:03] hmm interesting, I'll look into that, thanks