From crosenblum at gmail.com Fri Jun 1 00:51:35 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 00:51:35 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: Having problems lol. It keeps wanting me to specify a domain name, and i just want it to be just localhost:8082 For ease of folder permissions, i created a www folder inside my /home/username folder. NameVirtualHost *:8082 ServerName localhost DocumentRoot /home/craig/www/wbm # add the following two lines if you want vhost-specific logging ErrorLog /ver/log/apache2/example.com-error CustomLog /var/log/apache2/example.com-access combined apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no VirtualHosts [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no VirtualHosts [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts Action 'start' failed. The Apache error log may have more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: From nesius at gmail.com Fri Jun 1 00:58:38 2012 From: nesius at gmail.com (Robert Nesius) Date: Fri, 1 Jun 2012 00:58:38 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: I haven't tried this with localhost before. Try adding another alias to the machine in /etc/hosts and using that? Looks like apache is having a hard time working backwards from the loopback ip to a hostname to match against your rule. Hmm - come to think of it I think all of my VirtualHosts are in fact FQDNs, not singleton hostnames. -Rob On Fri, Jun 1, 2012 at 12:51 AM, Craig Rosenblum wrote: > Having problems lol. > > It keeps wanting me to specify a domain name, and i just want it to be > just localhost:8082 > > For ease of folder permissions, i created a www folder inside my > /home/username folder. > > NameVirtualHost *:8082 > > > ServerName localhost > DocumentRoot /home/craig/www/wbm > > # add the following two lines if you want vhost-specific logging > ErrorLog /ver/log/apache2/example.com-error > CustomLog /var/log/apache2/example.com-access combined > > > > apache2: Could not reliably determine the server's fully qualified domain > name, using 127.0.1.1 for ServerName > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no > VirtualHosts > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts > apache2: Could not reliably determine the server's fully qualified domain > name, using 127.0.1.1 for ServerName > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no > VirtualHosts > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts > Action 'start' failed. > The Apache error log may have more information. > > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From crosenblum at gmail.com Fri Jun 1 01:02:10 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 01:02:10 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: Hosts file already has localhost pointing to 127.0.0.1. What are FQDN's or singletons? On Fri, Jun 1, 2012 at 12:58 AM, Robert Nesius wrote: > I haven't tried this with localhost before. Try adding another alias to > the machine in /etc/hosts and using that? Looks like apache is having a > hard time working backwards from the loopback ip to a hostname to match > against your rule. Hmm - come to think of it I think all of my > VirtualHosts are in fact FQDNs, not singleton hostnames. > > -Rob > > > On Fri, Jun 1, 2012 at 12:51 AM, Craig Rosenblum wrote: > >> Having problems lol. >> >> It keeps wanting me to specify a domain name, and i just want it to be >> just localhost:8082 >> >> For ease of folder permissions, i created a www folder inside my >> /home/username folder. >> >> NameVirtualHost *:8082 >> >> >> ServerName localhost >> DocumentRoot /home/craig/www/wbm >> >> # add the following two lines if you want vhost-specific logging >> ErrorLog /ver/log/apache2/example.com-error >> CustomLog /var/log/apache2/example.com-access combined >> >> >> >> apache2: Could not reliably determine the server's fully qualified domain >> name, using 127.0.1.1 for ServerName >> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no >> VirtualHosts >> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts >> apache2: Could not reliably determine the server's fully qualified domain >> name, using 127.0.1.1 for ServerName >> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no >> VirtualHosts >> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts >> Action 'start' failed. >> The Apache error log may have more information. >> >> >> _______________________________________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/mailman/listinfo/tclug-list >> >> > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nesius at gmail.com Fri Jun 1 01:14:34 2012 From: nesius at gmail.com (Robert Nesius) Date: Fri, 1 Jun 2012 01:14:34 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: FQDN = fully qualified domain name: foo.example.com singleton hostname (or, perhaps more accurately, just "hostname") => foo -Rob On Fri, Jun 1, 2012 at 1:02 AM, Craig Rosenblum wrote: > Hosts file already has localhost pointing to 127.0.0.1. > > What are FQDN's or singletons? > > On Fri, Jun 1, 2012 at 12:58 AM, Robert Nesius wrote: > >> I haven't tried this with localhost before. Try adding another alias to >> the machine in /etc/hosts and using that? Looks like apache is having a >> hard time working backwards from the loopback ip to a hostname to match >> against your rule. Hmm - come to think of it I think all of my >> VirtualHosts are in fact FQDNs, not singleton hostnames. >> >> -Rob >> >> >> On Fri, Jun 1, 2012 at 12:51 AM, Craig Rosenblum wrote: >> >>> Having problems lol. >>> >>> It keeps wanting me to specify a domain name, and i just want it to be >>> just localhost:8082 >>> >>> For ease of folder permissions, i created a www folder inside my >>> /home/username folder. >>> >>> NameVirtualHost *:8082 >>> >>> >>> ServerName localhost >>> DocumentRoot /home/craig/www/wbm >>> >>> # add the following two lines if you want vhost-specific logging >>> ErrorLog /ver/log/apache2/example.com-error >>> CustomLog /var/log/apache2/example.com-access combined >>> >>> >>> >>> apache2: Could not reliably determine the server's fully qualified >>> domain name, using 127.0.1.1 for ServerName >>> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no >>> VirtualHosts >>> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no >>> VirtualHosts >>> apache2: Could not reliably determine the server's fully qualified >>> domain name, using 127.0.1.1 for ServerName >>> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no >>> VirtualHosts >>> [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no >>> VirtualHosts >>> Action 'start' failed. >>> The Apache error log may have more information. >>> >>> >>> _______________________________________________ >>> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >>> tclug-list at mn-linux.org >>> http://mailman.mn-linux.org/mailman/listinfo/tclug-list >>> >>> >> >> _______________________________________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/mailman/listinfo/tclug-list >> >> > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tclug at jfoo.org Fri Jun 1 08:19:55 2012 From: tclug at jfoo.org (John Gateley) Date: Fri, 1 Jun 2012 08:19:55 -0500 (CDT) Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Was the text copied and pasted in? Or typed? There's an interesting item in the error messages: > apache2: Could not reliably determine the server's fully qualified domain > name, using 127.0.1.1 for ServerName > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no > VirtualHosts The first error message says 127.0.1.1 the second says 127.0.0.1. If you copied and pasted, I'd check the hosts file for a typo. John From crosenblum at gmail.com Fri Jun 1 09:08:36 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 09:08:36 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: Hosts file must have been modified by webmin. I just don't get why I can't access http://localhost:8082 Here again are the directives: DocumentRoot /home/craig/www/wbm ServerAdmin webmaster at localhost Options FollowSymLinks AllowOverride None ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all ErrorLog /var/log/apache2/wbm_error.log LogLevel warn CustomLog /var/log/apache2/access.log "combined" Alias /doc/ "/usr/share/doc/" Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all On Fri, Jun 1, 2012 at 8:19 AM, John Gateley wrote: > Was the text copied and pasted in? Or typed? There's an interesting > item in the error messages: > > > > apache2: Could not reliably determine the server's fully qualified domain > > name, using 127.0.1.1 for ServerName > > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no > > VirtualHosts > > > The first error message says 127.0.1.1 the second says 127.0.0.1. > If you copied and pasted, I'd check the hosts file for a typo. > > John > > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jay at slushpupie.com Fri Jun 1 11:00:20 2012 From: jay at slushpupie.com (Jay Kline) Date: Fri, 1 Jun 2012 11:00:20 -0500 Subject: [tclug-list] [Off topic] Closet Cleaning Sale Message-ID: So Im cleaning out my closet, and Ive got a variety of computer related things to sell and give away. Please reply off-list if you are interested in any of these items- prices are negotiable: * Tritton See2Xtreme UV200 (USB Video adaptor) - $40 * Logitech Wireless Keyboard/Mouse combo - $15 (two of these) * Adaptec AHA2940U2W - $25 * Adaptec AHA2930CU - $20 * STB Brooktree TV Tuner Card - Free * CyberPro2000 PCI VGA Graphics card with RCA and S-VIDEO out - Free * Matrox Millennium G450 dual head VGA AGP 4x video card - $20 * DB25(M)-HD50(M) 6ft SCSI - $10 * DB25(M)-DB25(M) 3ft - $5 * CN50(M)-CN50(M) 6ft Cyntronics SCSI - $5 * DB25(M)-CN36(M) 25ft Cyntronics Parallel Printer Cable - $5 * CN50(M)-HD68(M) 6ft Cyntronics SCSI - $20 * PS/2 Keyboard/Mouse extension 6ft - Free (two of these) * PS/2 Keyboard/Mouse extension 6inch - Free (three of these) * DB9(F)-RJ45 4ft Cisco Serial Cable - Free * Nintendo Game Cube + 4 Controllers - $35 * Nintendo DS Lite (Red or Light Blue) + Charger,Case,Extra Stylus - $40 Im located in Coon Rapids, but willing to meet up somewhere reasonable. -- Jay Kline jay at slushpupie.com From nealzimm at cpinternet.com Fri Jun 1 12:22:04 2012 From: nealzimm at cpinternet.com (nealzimm at cpinternet.com) Date: Fri, 01 Jun 2012 12:22:04 -0500 Subject: [tclug-list] [Off topic] Closet Cleaning Sale Message-ID: <4fc8fa3c.1dd.26ce.1316651728@cpinternet.com> > So Im cleaning out my closet, and Ive got a variety of > computer related things to sell and give away. Please > reply off-list if you are interested in any of these > items- prices are negotiable: > > * Tritton See2Xtreme UV200 (USB Video adaptor) - $40 > * Logitech Wireless Keyboard/Mouse combo - $15 (two of > these) > * Adaptec AHA2940U2W - $25 > * Adaptec AHA2930CU - $20 > * STB Brooktree TV Tuner Card - Free > * CyberPro2000 PCI VGA Graphics card with RCA and S-VIDEO > out - Free > * Matrox Millennium G450 dual head VGA AGP 4x video card > - $20 > * DB25(M)-HD50(M) 6ft SCSI - $10 > * DB25(M)-DB25(M) 3ft - $5 > * CN50(M)-CN50(M) 6ft Cyntronics SCSI - $5 > * DB25(M)-CN36(M) 25ft Cyntronics Parallel Printer Cable > - $5 > * CN50(M)-HD68(M) 6ft Cyntronics SCSI - $20 > * PS/2 Keyboard/Mouse extension 6ft - Free (two of these) > * PS/2 Keyboard/Mouse extension 6inch - Free (three of > these) > * DB9(F)-RJ45 4ft Cisco Serial Cable - Free > * Nintendo Game Cube + 4 Controllers - $35 > * Nintendo DS Lite (Red or Light Blue) + Charger,Case > ,Extra Stylus - $40 > > Im located in Coon Rapids, but willing to meet up > somewhere reasonable. > > -- > Jay Kline > jay at slushpupie.com > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list If you have either of the Adaptec SCSII cards, I'll take one. Neal Zimmermann nealzimm+cpinternet+com -you know the drill- From mr.chew.baka at gmail.com Fri Jun 1 13:14:56 2012 From: mr.chew.baka at gmail.com (Mr. B-o-B) Date: Fri, 1 Jun 2012 13:14:56 -0500 (CDT) Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: Craig Rosenblum cried from the depths of the abyss... > NameVirtualHost *:8082 > > > ? ?ServerName localhost > ? ?DocumentRoot /home/craig/www/wbm > > ? ?# add the following two lines if you want vhost-specific logging > ? ?ErrorLog /ver/log/apache2/example.com-error > ? ?CustomLog /var/log/apache2/example.com-access combined > Stop using localhost. As other said, edit your HOSTS file. You need to add the host name of the site you are creating to point to 127.0.0.1 too. Let say your *:8082 is called website1, then added the following to your HOSTS file: 127.0.0.1 website1 leave the localhost, and just add the above line. Edit your to read ServerName website1 Also you should add the ServerAlias website1 on the line after ServerName. Add Quotes to the DocRoot Path Should look like: NameVirtualHost *:8082 ? ? ServerAdmin email at domain.com # this is optional ServerName website1 ServerAlias website1 ? ? DocumentRoot "/home/craig/www/wbm" ErrorLog "/var/log/apache2/example.com-error" # you had a # typeo /ver ? ? CustomLog "/var/log/apache2/example.com-access" combined > > > apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName Don't stress about this one. It's not uncommon for the server name not to match the site. Do you want all the apache site to run on port 8082? If so change the Listen (in httpd.conf) to read Listen 8082 Make sure you are loading the vhosts_alias_module in httpd.conf Make sure you changed the permission of /home/craig/www/wbm to match the User/Group in httpd.conf Not sure how apache installed on your distro, but if the vhost-config is separate from the httpd.conf make sure you are including the VirtHost conf file in httpd.conf Easiest thing to do if just send us your complete httpd.conf (or what ever they call it on your distro & any other related .conf files) It will be much easier to get this going for you if we can see it all. > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no VirtualHosts > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts > apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost 127.0.0.1:0 has no VirtualHosts > [Fri Jun 01 00:51:20 2012] [warn] NameVirtualHost *:80 has no VirtualHosts > Action 'start' failed. > The Apache error log may have more information. > > > From mr.chew.baka at gmail.com Fri Jun 1 13:22:14 2012 From: mr.chew.baka at gmail.com (Mr. B-o-B) Date: Fri, 1 Jun 2012 13:22:14 -0500 (CDT) Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: Craig Rosenblum cried from the depths of the abyss... > Hosts file must have been modified by webmin. > I just don't get why I can't access http://localhost:8082 > > Here again are the directives: > > DocumentRoot /home/craig/www/wbm > ServerAdmin webmaster at localhost > > Options FollowSymLinks > AllowOverride None > > ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ > > AllowOverride None > Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch > Order allow,deny > Allow from all > > ErrorLog /var/log/apache2/wbm_error.log > LogLevel warn > CustomLog /var/log/apache2/access.log "combined" > Alias /doc/ "/usr/share/doc/" > > Options Indexes MultiViews FollowSymLinks > AllowOverride None > Order deny,allow > Deny from all > Allow from 127.0.0.0/255.0.0.0 ::1/128 Until you get this working get rid of the Allow statement, and reverse the Order. ie: Order allow,deny Allow from all > This might be an issue too. Why declare this, and then again in the virthosts config? > > ?Options Indexes FollowSymLinks MultiViews > ?AllowOverride None > ?Order allow,deny > ?allow from all > > From crosenblum at gmail.com Fri Jun 1 14:09:06 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 14:09:06 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: Some of this code was created by webmin, I didn't put this in any particular order, webmin did. On Fri, Jun 1, 2012 at 1:22 PM, Mr. B-o-B wrote: > Craig Rosenblum cried from the depths of the abyss... > > Hosts file must have been modified by webmin. >> I just don't get why I can't access http://localhost:8082 >> >> Here again are the directives: >> >> DocumentRoot /home/craig/www/wbm >> ServerAdmin webmaster at localhost >> >> Options FollowSymLinks >> AllowOverride None >> >> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ >> >> AllowOverride None >> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch >> Order allow,deny >> Allow from all >> >> ErrorLog /var/log/apache2/wbm_error.log >> LogLevel warn >> CustomLog /var/log/apache2/access.log "combined" >> Alias /doc/ "/usr/share/doc/" >> >> Options Indexes MultiViews FollowSymLinks >> AllowOverride None >> Order deny,allow >> Deny from all >> Allow from 127.0.0.0/255.0.0.0 ::1/128 >> > > Until you get this working get rid of the Allow statement, and reverse the > Order. ie: > > > Order allow,deny > Allow from all > > > > >> > > This might be an issue too. Why declare this, and then again in the > virthosts config? > > > >> Options Indexes FollowSymLinks MultiViews >> AllowOverride None >> Order allow,deny >> allow from all >> >> >> > > > > > > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From erikerik at gmail.com Fri Jun 1 14:52:20 2012 From: erikerik at gmail.com (Erik Anderson) Date: Fri, 1 Jun 2012 14:52:20 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: On Fri, Jun 1, 2012 at 2:09 PM, Craig Rosenblum wrote: > Some of this code was created by webmin, I didn't put this in any particular > order, webmin did. And this is precisely why I recommended ditching webmin. :) -Erik From mr.chew.baka at gmail.com Fri Jun 1 14:47:26 2012 From: mr.chew.baka at gmail.com (B-o-B De Mars) Date: Fri, 01 Jun 2012 14:47:26 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: Message-ID: <4FC91C4E.80504@gmail.com> On 5/31/2012 3:56 AM, Craig Rosenblum cried from the depths of the abyss: > > Now All i want is to setup http://localhost:8082 or any other unused > port number to point to a new folder i have. > > I have 3 partitions on my main hard drive, and in one of those > partitions is a www folder, where i plan to keep all centralized > websites that i ever worked on, or plan to work on. I was thinking about this, and I think you are over complicating things. Forget about Virtual Hosts. If all you are trying to do is have a repository of different sites that you can look at locally try this: Start over - Remove apache (and I mean remove it - all traces). Reinstall Apache. You are forbidden from using webmin this time! manually edit httpd.conf (or apache2.conf - or whatever they are calling it). Change this: Listen 80 to Listen 8082 (or whatever port you want) Take note of the stock install Document root location ie: /srv/httpd/htdocs or /var/www/html or whatever This is going to be you homebase. Also, make sure the Doc root has Options Indexes. Fire-Up Apache. Make sure it is working on port 8082 (or whatever you picked) Feel free to put your sites in directories in your /home or where ever. This doesn't matter. Then just create symlink from your sites into your apaches doc root. ie: your site is in /home/craig/ebay create a link like (ln -s /path/to/src /pat/to/destination) ln -s /home/craig/ebay /var/www/htdocs/ebay This is easiest. Then when you goto localhost:8082 you will see directories for each site. Click the siteyou want & whalah. This is what I would do in your situation. Good Luck! Mr. B-o-B > > I even install webmin, but I am more than a bit rusty on virtualhost setup. > > I really prefer not to have to add folders to /var/www because I want to > keep my linux partition small. > > I am planning to work on a new way of doing my web-based media center > app, since I can't play local videos via file:/// > > Sorry for the long rant... > > Any tips to just get localhost working to point to a folder on one of my > partitions? > > Do i need to setup any special permissions for that www folder so that > it can be accessed? > > Thanks. > > Craig > > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list From mr.chew.baka at gmail.com Fri Jun 1 14:58:17 2012 From: mr.chew.baka at gmail.com (B-o-B De Mars) Date: Fri, 01 Jun 2012 14:58:17 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: <4FC91BF9.5090304@gmail.com> References: <4FC91BF9.5090304@gmail.com> Message-ID: <4FC91ED9.3010307@gmail.com> On 6/1/2012 2:46 PM, B-o-B De Mars cried from the depths of the abyss: Forgive the top posting, do the below but change the doc root to point to your new www area. > On 5/31/2012 3:56 AM, Craig Rosenblum cried from the depths of the abyss: > >> >> Now All i want is to setup http://localhost:8082 or any other unused >> port number to point to a new folder i have. >> >> I have 3 partitions on my main hard drive, and in one of those >> partitions is a www folder, where i plan to keep all centralized >> websites that i ever worked on, or plan to work on. > > I was thinking about this, and I think you are over complicating things. > > Forget about Virtual Hosts. If all you are trying to do is have a > repository of different sites that you can look at locally try this: > > Start over - Remove apache (and I mean remove it - all traces). > > Reinstall Apache. You are forbidden from using webmin this time! > > manually edit httpd.conf (or apache2.conf - or whatever they are calling > it). > > Change this: > > Listen 80 to Listen 8082 (or whatever port you want) > > Take note of the stock install Document root location ie: > /srv/httpd/htdocs or /var/www/html or whatever This is going to be you > homebase. > > Also, make sure the Doc root has Options Indexes. > > Fire-Up Apache. Make sure it is working on port 8082 (or whatever you > picked) > > Feel free to put your sites in directories in your /home or where ever. > This doesn't matter. > > Then just create symlink from your sites into your apaches doc root. > > ie: your site is in /home/craig/ebay > > create a link like > > ln -s /home/craig/ebay /var/www/htdocs/ebay > > This is easiest. Then when you goto localhost:8082 you will see > directories for each site. Click the siteyou want & whalah. > > This is what I would do in your situation. > > Good Luck! > > Mr. B-o-B > > > > >> >> I even install webmin, but I am more than a bit rusty on virtualhost >> setup. >> >> I really prefer not to have to add folders to /var/www because I want to >> keep my linux partition small. >> >> I am planning to work on a new way of doing my web-based media center >> app, since I can't play local videos via file:/// >> >> Sorry for the long rant... >> >> Any tips to just get localhost working to point to a folder on one of my >> partitions? >> >> Do i need to setup any special permissions for that www folder so that >> it can be accessed? >> >> Thanks. >> >> Craig >> >> >> _______________________________________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/mailman/listinfo/tclug-list > From crosenblum at gmail.com Fri Jun 1 17:01:16 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 17:01:16 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: <4FC91ED9.3010307@gmail.com> References: <4FC91BF9.5090304@gmail.com> <4FC91ED9.3010307@gmail.com> Message-ID: reinstalling apache, and removing webmin. Done.... All i want is just at first just one site. I wish this was easier like, when I installed sickbeard or couchpotato, they auto-installed found an available port and it was done lol. On Fri, Jun 1, 2012 at 2:58 PM, B-o-B De Mars wrote: > On 6/1/2012 2:46 PM, B-o-B De Mars cried from the depths of the abyss: > > Forgive the top posting, do the below but change the doc root to point to > your new www area. > > On 5/31/2012 3:56 AM, Craig Rosenblum cried from the depths of the abyss: >> >> >>> Now All i want is to setup http://localhost:8082 or any other unused >>> port number to point to a new folder i have. >>> >>> I have 3 partitions on my main hard drive, and in one of those >>> partitions is a www folder, where i plan to keep all centralized >>> websites that i ever worked on, or plan to work on. >>> >> >> I was thinking about this, and I think you are over complicating things. >> >> Forget about Virtual Hosts. If all you are trying to do is have a >> repository of different sites that you can look at locally try this: >> >> Start over - Remove apache (and I mean remove it - all traces). >> >> Reinstall Apache. You are forbidden from using webmin this time! >> >> manually edit httpd.conf (or apache2.conf - or whatever they are calling >> it). >> >> Change this: >> >> Listen 80 to Listen 8082 (or whatever port you want) >> >> Take note of the stock install Document root location ie: >> /srv/httpd/htdocs or /var/www/html or whatever This is going to be you >> homebase. >> >> Also, make sure the Doc root has Options Indexes. >> >> Fire-Up Apache. Make sure it is working on port 8082 (or whatever you >> picked) >> >> Feel free to put your sites in directories in your /home or where ever. >> This doesn't matter. >> >> Then just create symlink from your sites into your apaches doc root. >> >> ie: your site is in /home/craig/ebay >> >> create a link like >> >> ln -s /home/craig/ebay /var/www/htdocs/ebay >> >> This is easiest. Then when you goto localhost:8082 you will see >> directories for each site. Click the siteyou want & whalah. >> >> This is what I would do in your situation. >> >> Good Luck! >> >> Mr. B-o-B >> >> >> >> >> >>> I even install webmin, but I am more than a bit rusty on virtualhost >>> setup. >>> >>> I really prefer not to have to add folders to /var/www because I want to >>> keep my linux partition small. >>> >>> I am planning to work on a new way of doing my web-based media center >>> app, since I can't play local videos via file:/// >>> >>> Sorry for the long rant... >>> >>> Any tips to just get localhost working to point to a folder on one of my >>> partitions? >>> >>> Do i need to setup any special permissions for that www folder so that >>> it can be accessed? >>> >>> Thanks. >>> >>> Craig >>> >>> >>> ______________________________**_________________ >>> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >>> tclug-list at mn-linux.org >>> http://mailman.mn-linux.org/**mailman/listinfo/tclug-list >>> >> >> > ______________________________**_________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/**mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From crosenblum at gmail.com Fri Jun 1 17:13:12 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 17:13:12 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: Some of this code was created by webmin, I didn't put this in any particular order, webmin did. On Fri, Jun 1, 2012 at 1:22 PM, Mr. B-o-B wrote: > Craig Rosenblum cried from the depths of the abyss... > > Hosts file must have been modified by webmin. >> I just don't get why I can't access http://localhost:8082 >> >> Here again are the directives: >> >> DocumentRoot /home/craig/www/wbm >> ServerAdmin webmaster at localhost >> >> Options FollowSymLinks >> AllowOverride None >> >> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ >> >> AllowOverride None >> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch >> Order allow,deny >> Allow from all >> >> ErrorLog /var/log/apache2/wbm_error.log >> LogLevel warn >> CustomLog /var/log/apache2/access.log "combined" >> Alias /doc/ "/usr/share/doc/" >> >> Options Indexes MultiViews FollowSymLinks >> AllowOverride None >> Order deny,allow >> Deny from all >> Allow from 127.0.0.0/255.0.0.0 ::1/128 >> > > Until you get this working get rid of the Allow statement, and reverse the > Order. ie: > > > Order allow,deny > Allow from all > > > > >> > > This might be an issue too. Why declare this, and then again in the > virthosts config? > > > >> Options Indexes FollowSymLinks MultiViews >> AllowOverride None >> Order allow,deny >> allow from all >> >> >> > > > > > > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From crosenblum at gmail.com Fri Jun 1 17:24:26 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 17:24:26 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: When I try to edit 000-defaults, to make a change from /var/www to /home/craig/www/wbm it refuses to restart apache2, i undo my changes, and it still refuses to restart lol. * Starting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down Unable to open logs Action 'start' failed. The Apache error log may have more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Craig.A.Smith at honeywell.com Fri Jun 1 17:39:01 2012 From: Craig.A.Smith at honeywell.com (Smith, Craig A) Date: Fri, 1 Jun 2012 22:39:01 +0000 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> Message-ID: <994D9F23C50CD44BA7A8AED87EC114C7105FE6D2@de08ex3001.global.ds.honeywell.com> Craig R wrote: ? (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down Unable to open logs To open logs and bind a low numbered port like 80, Apache needs to start-up as a privileges process (it then demotes itself for better security). I thought you were running on port 8020 ? I?m guessing you left a Listen:80 directive somewhere. As suggested by others, we can help you more if you give us your full http.conf, Apache2.conf, or whatever else your distro uses, it as well as any associated config files. -Craig S. -------------- next part -------------- An HTML attachment was scrubbed... URL: From crosenblum at gmail.com Fri Jun 1 17:48:07 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Fri, 1 Jun 2012 17:48:07 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: <994D9F23C50CD44BA7A8AED87EC114C7105FE6D2@de08ex3001.global.ds.honeywell.com> References: <57797.167.206.189.6.1338556795.squirrel@mail.jfoo.org> <994D9F23C50CD44BA7A8AED87EC114C7105FE6D2@de08ex3001.global.ds.honeywell.com> Message-ID: This apache2 install is really confusing. The folders don't make sense to me. I have attached the 000-default file which is in the sites-enabled folder. On Fri, Jun 1, 2012 at 5:39 PM, Smith, Craig A wrote: > Craig R wrote:**** > > ** ** > > **? ** (13)Permission denied: make_sock: could not bind to address > 0.0.0.0:80**** > > no listening sockets available, shutting down**** > > Unable to open logs**** > > ** ** > > To open logs and bind a low numbered port like 80, Apache needs to > start-up as a privileges process (it then demotes itself for better > security).**** > > ** ** > > I thought you were running on port 8020 ?**** > > ** ** > > I?m guessing you left a Listen:80 directive somewhere. As suggested by > others, we can help you more if you give us your full http.conf, > Apache2.conf, or whatever else your distro uses, it as well as any > associated config files.**** > > ** ** > > -Craig S.**** > > ** ** > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 000-default Type: application/octet-stream Size: 949 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: apache2.conf Type: application/octet-stream Size: 7993 bytes Desc: not available URL: From mr.chew.baka at gmail.com Fri Jun 1 20:23:57 2012 From: mr.chew.baka at gmail.com (B-o-B De Mars) Date: Fri, 01 Jun 2012 20:23:57 -0500 Subject: [tclug-list] Getting apache to work...dumb question in here :) In-Reply-To: References: <4FC91BF9.5090304@gmail.com> <4FC91ED9.3010307@gmail.com> Message-ID: <4FC96B2D.8040701@gmail.com> On 6/1/2012 5:01 PM, Craig Rosenblum cried from the depths of the abyss: > reinstalling apache, and removing webmin. > > Done.... > > All i want is just at first just one site. > > I wish this was easier like, when I installed sickbeard or couchpotato, > they auto-installed found an available port and it was done lol. Did you check to make sure all the httpd/apache config files were removed before you reinstalled? If not removed the apache package again, and delete the /etc/httpd or /etc/apache2 or where ever the config were before reinstalling. I have never seen an apache package on any distro (even windows that didn't work out of the box). Turn off the program using port 80, install apache, and confirm it is working on 80 before you go any further. If it fires up on port 80 then take baby steps one config change at a time (restarting apache after each config change). From woodbrian77 at gmail.com Sat Jun 2 00:16:21 2012 From: woodbrian77 at gmail.com (Brian Wood) Date: Sat, 2 Jun 2012 00:16:21 -0500 Subject: [tclug-list] Getting apache to work... Message-ID: > When I try to edit 000-defaults, to make a change from /var/www > to /home/craig/www/wbm > it refuses to restart apache2, i undo my changes, and it still refuses to > restart lol. > * Starting web server apache2 > apache2: Could not reliably determine the server's fully qualified domain > name, using 127.0.0.1 for ServerName I ran into this problem recently and used this page http://aslamnajeebdeen.com/blog/how-to-fix-apache-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127011-for-servername-error-on-ubuntu to help me. I set ServerName in httpd.conf to localhost. The problem went away, but am still not sure I have that set right. -- Brian Wood Ebenezer Enterprises http://webEbenezer.net O n e B i g - A s s M i s t a k e , A m e r i c a -------------- next part -------------- An HTML attachment was scrubbed... URL: From crosenblum at gmail.com Sun Jun 3 01:47:34 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Sun, 3 Jun 2012 01:47:34 -0500 Subject: [tclug-list] Getting apache to work... In-Reply-To: References: Message-ID: Thank you to everyone for being patient with my dumbness lol. I finally got it to work. Thank you...now to design stage lol... -------------- next part -------------- An HTML attachment was scrubbed... URL: From james007wjs at gmail.com Sun Jun 3 17:02:04 2012 From: james007wjs at gmail.com (wes smith) Date: Sun, 3 Jun 2012 22:02:04 +0000 Subject: [tclug-list] Iptables REDIRECT not working Message-ID: # iptables -V iptables v1.4.13 # iptables -v -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080 REDIRECT tcp opt -- in * out * 0.0.0.0/0 -> 0.0.0.0/0 tcp dpt:80 redir ports 8080 iptables: No chain/target/match by that name. I would like to redirect all traffic on port 80 to port 8080 Manpages says everything is correct. There is no redirect option in the kernel(zen-3.3.7) config that I can find. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tclug1 at whitleymott.net Mon Jun 4 01:00:21 2012 From: tclug1 at whitleymott.net (gregrwm) Date: Mon, 4 Jun 2012 01:00:21 -0500 Subject: [tclug-list] Iptables REDIRECT not working In-Reply-To: References: Message-ID: i've used DNAT for that.. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gm5729 at gmail.com Mon Jun 4 14:16:35 2012 From: gm5729 at gmail.com (gk) Date: Mon, 4 Jun 2012 13:16:35 -0600 Subject: [tclug-list] Iptables REDIRECT not working Message-ID: Unless this box is a router why are you using IPTables and not your external router to port forward single ports or ranges to the appropriate boxen? Forwarding can bite you in the arse, and in fact is something you DON'T want to do and state it so in your /etc/sysctl.conf gk On Mon, Jun 4, 2012 at 11:00 AM, wrote: > Send tclug-list mailing list submissions to > ? ? ? ?tclug-list at mn-linux.org > > To subscribe or unsubscribe via the World Wide Web, visit > ? ? ? ?http://mailman.mn-linux.org/mailman/listinfo/tclug-list > or, via email, send a message with subject or body 'help' to > ? ? ? ?tclug-list-request at mn-linux.org > > You can reach the person managing the list at > ? 1. Iptables REDIRECT not working (wes smith) > ? 2. Re: Iptables REDIRECT not working (gregrwm) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 3 Jun 2012 22:02:04 +0000 > From: wes smith > To: tclug-list at mn-linux.org > Subject: [tclug-list] Iptables REDIRECT not working > Message-ID: > ? ? ? ? > Content-Type: text/plain; charset="iso-8859-1" > > ?# iptables -V > iptables v1.4.13 > > # iptables -v -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT > --to-port 8080 > REDIRECT ?tcp opt -- in * out * ?0.0.0.0/0 ?-> 0.0.0.0/0 ? tcp dpt:80 redir > ports 8080 > iptables: No chain/target/match by that name. > > I would like to redirect all traffic on port 80 to port 8080 > Manpages says everything is correct. ?There is no redirect option in the > kernel(zen-3.3.7) config that I can find. > -------------- next part -------------- From admin at lctn.org Wed Jun 6 09:04:46 2012 From: admin at lctn.org (Raymond Norton) Date: Wed, 06 Jun 2012 09:04:46 -0500 Subject: [tclug-list] voice recording to text solution Message-ID: <4FCF637E.5080802@lctn.org> I need to transcribe from voice files to text, with a variety of voices in the various recordings. Been googling around and not finding a solution I am happy with or suits my needs. Any recommendations? Raymond From mr.chew.baka at gmail.com Wed Jun 6 09:34:51 2012 From: mr.chew.baka at gmail.com (Mr. B-o-B) Date: Wed, 6 Jun 2012 09:34:51 -0500 (CDT) Subject: [tclug-list] voice recording to text solution In-Reply-To: <4FCF637E.5080802@lctn.org> References: <4FCF637E.5080802@lctn.org> Message-ID: Raymond Norton cried from the depths of the abyss... > I need to transcribe from voice files to text, with a variety of voices in > the various recordings. Been googling around and not finding a solution I am > happy with or suits my needs. Any recommendations? I have heard good things about CMU Sphinx, but have never used it myself. I am pretty sure it can do audio files to text. http://sourceforge.net/projects/cmusphinx/ Good Luck! Mr. B-o-B From marc at e-skinner.net Wed Jun 6 16:17:13 2012 From: marc at e-skinner.net (Marc Skinner) Date: Wed, 06 Jun 2012 16:17:13 -0500 Subject: [tclug-list] for sale - juniper netscreens Message-ID: <4FCFC8D9.4070604@e-skinner.net> Looking for $35 each. I have two - NS-5GT-001 (with 10 user license) with power supply http://www.nscreensales.com/NetScreen_5GT_10_User_with_Power_Supply_110V_p/ns-5gt-001.htm I have one - NS-5XT-001 (with 10 user license) with power supply http://www.nscreensales.com/NetScreen_5XT_Elite_unrestricted_user_p/ns-5xt-101.htm These are great SOHO firewalls - if your looking for a low-powered appliance device! From tlunde at gmail.com Thu Jun 7 08:45:16 2012 From: tlunde at gmail.com (T L) Date: Thu, 7 Jun 2012 08:45:16 -0500 Subject: [tclug-list] voice recording to text solution In-Reply-To: <4FCF637E.5080802@lctn.org> References: <4FCF637E.5080802@lctn.org> Message-ID: Sometimes the right tool for the job is a human. ;-) Toss this into google: transcription from recording outsource Here's the thing: speaker independent speech recognition is a hard problem. It gets harder with multiple voices. And, unless your speakers were talking directly and clearly into the mic, you're likely to have non-optimal sound quality. This, too, makes it harder for a computer. You'll spend a LOT of time doing clean-up after the fact, if you don't have a human do it in the first place. Just my $0.02. Thomas On Wed, Jun 6, 2012 at 9:04 AM, Raymond Norton wrote: > I need to transcribe from voice ?files to text, with a variety of voices in > the various recordings. Been googling around and not finding a solution I am > happy with or suits my needs. Any recommendations? > > > Raymond > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list From jmore at starmind.org Thu Jun 7 09:21:14 2012 From: jmore at starmind.org (Josh More) Date: Thu, 7 Jun 2012 09:21:14 -0500 Subject: [tclug-list] voice recording to text solution In-Reply-To: References: <4FCF637E.5080802@lctn.org> Message-ID: FWIW, I have a few friends who do medical transcription and could use a few bucks on the side. If you want to hire someone, I could get you folks in touch with one another. -Josh On Thu, Jun 7, 2012 at 8:45 AM, T L wrote: > Sometimes the right tool for the job is a human. > ;-) > > Toss this into google: ?transcription from recording outsource > > Here's the thing: ?speaker independent speech recognition is a hard > problem. ?It gets harder with multiple voices. ?And, unless your > speakers were talking directly and clearly into the mic, you're likely > to have non-optimal sound quality. ? This, too, makes it harder for a > computer. > > You'll spend a LOT of time doing clean-up after the fact, if you don't > have a human do it in the first place. > > Just my $0.02. > Thomas > > > On Wed, Jun 6, 2012 at 9:04 AM, Raymond Norton wrote: >> I need to transcribe from voice ?files to text, with a variety of voices in >> the various recordings. Been googling around and not finding a solution I am >> happy with or suits my needs. Any recommendations? >> >> >> Raymond >> _______________________________________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/mailman/listinfo/tclug-list > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list From mbmiller+l at gmail.com Thu Jun 7 11:49:34 2012 From: mbmiller+l at gmail.com (Mike Miller) Date: Thu, 7 Jun 2012 11:49:34 -0500 (CDT) Subject: [tclug-list] voice recording to text solution In-Reply-To: References: <4FCF637E.5080802@lctn.org> Message-ID: On Thu, 7 Jun 2012, T L wrote: > On Wed, Jun 6, 2012 at 9:04 AM, Raymond Norton wrote: > >> I need to transcribe from voice ?files to text, with a variety of >> voices in the various recordings. Been googling around and not finding >> a solution I am happy with or suits my needs. Any recommendations? > > > Sometimes the right tool for the job is a human. > ;-) > > Toss this into google: transcription from recording outsource > > Here's the thing: speaker independent speech recognition is a hard > problem. It gets harder with multiple voices. And, unless your > speakers were talking directly and clearly into the mic, you're likely > to have non-optimal sound quality. This, too, makes it harder for a > computer. > > You'll spend a LOT of time doing clean-up after the fact, if you don't > have a human do it in the first place. I use Google Voice for voicemail and forwarding phone calls. It's a pretty brilliant scheme and I recommend it. One thing it does is transcribe messages to text and forward them to me via email. It does a good enough job that I can almost always tell what the message is about, at least, but it usually has some errors, often laughable ones. It can also record calls and transcribe the conversations. There is no doubt that you would have a lot of work to do fixing up mistakes in Google Voice voicemail transcriptions, but I would find them very helpful if I were trying to transcribe recordings. If I were a very fast typist (typing as fast as someone can speak), then I'd prefer to do it by hand. I first used voice-recognition software back in about 1999. I think it was from IBM and it was supposed to learn my voice and improve over time. It wasn't too bad, even at first, but I didn't really have much use for it. I've been thinking that with improvements in software and massive improvement in computing power, today's voice recognition software should be great. Maybe that only applies to cases where the speaker is trying to be understood by the software. Casual speech is always going to be difficult to understand. Mike From admin at lctn.org Thu Jun 7 14:23:43 2012 From: admin at lctn.org (Raymond Norton) Date: Thu, 07 Jun 2012 14:23:43 -0500 Subject: [tclug-list] vm wrong kernel error Message-ID: <4FD0FFBF.6030902@lctn.org> I am following an upgrade path for an app and attempting to set up a vm using Ubuntu server 8.4 for the OS, via Virtualbox. The host is an Asus box, running Julius. I have a few other vms running on it just fine, but this new one does not want to boot, complaining about the wrong kernel. Tried a number of changes under "system/processor", but either get a kernel panic or unable to boot error. Anyone know what changes need to be made, so I can get things running? Raymond From erikerik at gmail.com Thu Jun 7 14:54:52 2012 From: erikerik at gmail.com (Erik Anderson) Date: Thu, 7 Jun 2012 14:54:52 -0500 Subject: [tclug-list] vm wrong kernel error In-Reply-To: <4FD0FFBF.6030902@lctn.org> References: <4FD0FFBF.6030902@lctn.org> Message-ID: On Thu, Jun 7, 2012 at 2:23 PM, Raymond Norton wrote: > I am following an upgrade path for an app and attempting to set up a vm > using Ubuntu server 8.4 for the OS, via Virtualbox. The host is an Asus box, > ?running Julius. I have a few other vms running on it just fine, but this > new one does not want to boot, complaining about the wrong kernel. Tried a > number of changes under "system/processor", but either get a kernel panic or > unable to boot error. > > Anyone know what changes need to be made, so I can get things running? Not that this is the root cause, but why use such an old version of Ubuntu? What did you change on the VM before this error started happening? -Erik From erikerik at gmail.com Thu Jun 7 15:04:05 2012 From: erikerik at gmail.com (Erik Anderson) Date: Thu, 7 Jun 2012 15:04:05 -0500 Subject: [tclug-list] vm wrong kernel error In-Reply-To: <4FD10851.5070908@lctn.org> References: <4FD0FFBF.6030902@lctn.org> <4FD10851.5070908@lctn.org> Message-ID: On Thu, Jun 7, 2012 at 3:00 PM, Raymond Norton wrote: > Its a path I need to follow to get where I need to be. The upgrade errs out > if it doesn't find the right version of dependencies, etc... > > Trying a new vm on a 32bit processor now to see if that is the issue. I'm 99.9% certain that's not the issue. 32-bit OSes will happily run on 64-bit hardware without issue. It's likely the problem is related to the fact that this server rev is so old, and the installer/upgrade script is unable to locate the package versions it needs in the default location on ubuntu's repositories. You may need to edit your /etc/apt/sources.list to point to the archive repositories. This blog post outlines what need to happen: http://www.warpconduit.net/2011/07/31/apt-repository-for-old-ubuntu-releases/ -Erik -- Erik Anderson http://andersonfam.org From tclug1 at whitleymott.net Thu Jun 7 21:50:42 2012 From: tclug1 at whitleymott.net (gregrwm) Date: Thu, 7 Jun 2012 21:50:42 -0500 Subject: [tclug-list] require password with key In-Reply-To: References: Message-ID: > actually i meant/hoped for a pam approach to just key + password > enforcement. ?in lieu of that, what i have seen so far is use > ForceCommand and a script to ask some question, it's not pam but > perhaps just as good. unfortunately sshd bypasses pam when doing cert auth. what (rhel6) utility is available that behaves quite like login, but may be called by an sshd ForceCommand script (ie not root)? From admin at lctn.org Fri Jun 8 14:43:36 2012 From: admin at lctn.org (Raymond Norton) Date: Fri, 08 Jun 2012 14:43:36 -0500 Subject: [tclug-list] vm wrong kernel error In-Reply-To: References: <4FD0FFBF.6030902@lctn.org> <4FD10851.5070908@lctn.org> Message-ID: <4FD255E8.4060803@lctn.org> > I'm 99.9% certain that's not the issue. 32-bit OSes will happily run > on 64-bit hardware without issue. > > It's likely the problem is related to the fact that this server rev is > so old, and the installer/upgrade script is unable to locate the > package versions it needs in the default location on ubuntu's > repositories. > > You may need to edit your /etc/apt/sources.list to point to the > archive repositories. This blog post outlines what need to happen: > http://www.warpconduit.net/2011/07/31/apt-repository-for-old-ubuntu-releases/ > > -Erik > > Sorry if this is a duplicate. The vm installed just fine on a Windows 2003 Dell Poweredge server. From jus at krytosvirus.com Fri Jun 8 15:31:39 2012 From: jus at krytosvirus.com (Justin Krejci) Date: Fri, 08 Jun 2012 15:31:39 -0500 Subject: [tclug-list] Torvalds take on the whole Gnome2 => Gnome3 transition Message-ID: <1339187499.7042.29.camel@sysadmin3a> https://plus.google.com/u/0/102150693225130002912/posts/UkoAaLDpF4i I find his candor amusing. Remind's me of Wes's song, "Every OS sucks" -------------- next part -------------- An HTML attachment was scrubbed... URL: From chrome at real-time.com Fri Jun 8 15:53:35 2012 From: chrome at real-time.com (Carl Wilhelm Soderstrom) Date: Fri, 8 Jun 2012 16:53:35 -0400 Subject: [tclug-list] Torvalds take on the whole Gnome2 => Gnome3 transition In-Reply-To: <1339187499.7042.29.camel@sysadmin3a> References: <1339187499.7042.29.camel@sysadmin3a> Message-ID: <20120608205335.GS62072@real-time.com> On 06/08 03:31 , Justin Krejci wrote: > https://plus.google.com/u/0/102150693225130002912/posts/UkoAaLDpF4i > I find his candor amusing. > > Remind's me of Wes's song, "Every OS sucks" I met Torvalds back in 1999 when he was still using FVWM2 (which I was using up until about a year and a half ago for my work computer). The reason he's having these problems was because he has strayed from the One True Path of FVWM2. I'm tempted to go back to FVWM2 on my personal Linux desktop machine. I'm still using Enlightenment 16 there, completely out of habit. Generally the bugs don't bother me enough to make me want to change. Yes, I do know about more modern window managers. I used to run a different one on my laptop every day of the week (literally) so I could show them off to people. Like OSes, they all suck one way or another. Desktop environments just add more layers of pain and hindrance for the most part. -- Carl Soderstrom Systems Administrator Real-Time Enterprises www.real-time.com From xpoverby at comcast.net Fri Jun 8 16:01:59 2012 From: xpoverby at comcast.net (xpoverby at comcast.net) Date: Fri, 8 Jun 2012 21:01:59 +0000 (UTC) Subject: [tclug-list] Torvalds take on the whole Gnome2 => Gnome3 transition In-Reply-To: <1339187499.7042.29.camel@sysadmin3a> Message-ID: <1768977360.530364.1339189319871.JavaMail.root@sz0005a.emeryville.ca.mail.comcast.net> you guys are getting way too deep.? It isn't the OS that sucks Its the basic delusion that computers have some meaninful purpose. "Computers? will be the death of Civiliaztion"? ~Paula Mirare ~ ----- Original Message ----- From: "Justin Krejci" To: "TCLUG Mailing List" Sent: Friday, June 8, 2012 3:31:39 PM Subject: [tclug-list] Torvalds take on the whole Gnome2 => Gnome3 transition https://plus.google.com/u/0/102150693225130002912/posts/UkoAaLDpF4i I find his candor amusing. Remind's me of Wes's song, "Every OS sucks" _______________________________________________ TCLUG Mailing List - Minneapolis/St. Paul, Minnesota tclug-list at mn-linux.org http://mailman.mn-linux.org/mailman/listinfo/tclug-list -------------- next part -------------- An HTML attachment was scrubbed... URL: From mbmiller+l at gmail.com Fri Jun 8 17:05:23 2012 From: mbmiller+l at gmail.com (Mike Miller) Date: Fri, 8 Jun 2012 17:05:23 -0500 (CDT) Subject: [tclug-list] Torvalds take on the whole Gnome2 => Gnome3 transition In-Reply-To: <1768977360.530364.1339189319871.JavaMail.root@sz0005a.emeryville.ca.mail.comcast.net> References: <1768977360.530364.1339189319871.JavaMail.root@sz0005a.emeryville.ca.mail.comcast.net> Message-ID: On Fri, 8 Jun 2012, xpoverby at comcast.net wrote: > you guys are getting way too deep.? It isn't the OS that sucks > > Its the basic delusion that computers have some meaninful purpose. > > "Computers? will be the death of Civiliaztion"? ~Paula Mirare ~ "Computers are useless. They can only give you answers." --Pablo Picasso From jeremy.mountainjohnson at gmail.com Sat Jun 9 14:33:47 2012 From: jeremy.mountainjohnson at gmail.com (Jeremy MountainJohnson) Date: Sat, 9 Jun 2012 14:33:47 -0500 Subject: [tclug-list] In search of Canon ink jet printers: IP3600 MP540 MP620 MX860 MX870 Message-ID: Hey Lugers, I blew out my printer head on my Canon MX860. Anyone have any of the printers referenced in the subject line? I just need the print head, which goes for about $90 replaced. I would like to acquire for a low price or free any of these printers in used or broken condition to strip a working head part and then properly dispose of the printer. I'm in South Minneapolis but could pickup anywhere near the Metro area. Thanks in advance for any help! A side note: minus the ink chugging and an operator error that caused the head to go after warranty, the MX860 printer works 100% in Linux for those looking for a decent multifunction. -- Jeremy MountainJohnson jeremy.mountainjohnson at gmail.com From crosenblum at gmail.com Wed Jun 13 07:48:48 2012 From: crosenblum at gmail.com (Craig Rosenblum) Date: Wed, 13 Jun 2012 07:48:48 -0500 Subject: [tclug-list] Just switched to ArchBang... Message-ID: Has anyone else worked with that yet? It's very lightweight and minimal. How is everyone doing otherwise? -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremy.mountainjohnson at gmail.com Wed Jun 13 10:36:11 2012 From: jeremy.mountainjohnson at gmail.com (Jeremy MountainJohnson) Date: Wed, 13 Jun 2012 10:36:11 -0500 Subject: [tclug-list] Just switched to ArchBang... In-Reply-To: References: Message-ID: I've been using it's parent, Arch Linux, since 2003 and have not switched distros since that time. I hope you enjoy ArchBang :-) -- Jeremy MountainJohnson Jeremy.MountainJohnson at gmail.com On Wed, Jun 13, 2012 at 7:48 AM, Craig Rosenblum wrote: > Has anyone else worked with that yet? > > It's very lightweight and minimal. > > How is everyone doing otherwise? > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From djsteinhafel at gmail.com Wed Jun 13 11:51:03 2012 From: djsteinhafel at gmail.com (David) Date: Wed, 13 Jun 2012 11:51:03 -0500 Subject: [tclug-list] Just switched to ArchBang... In-Reply-To: References: Message-ID: Hello, I use Parabola GNU/Linux[1] on my home desktop. Parabola is an entirely Free Software (libre) derivative of Arch Linux[2]. Arch uses the Linux kernel (with binary blobs) and includes non-Free software in its repos. Parabola uses the linux-libre kernel and maintains a blacklist[3] of non-Free applications in the Arch repo. I found that I was learning more about GNU/Linux computers, and having more fun, after I started using Arch instead of Ubuntu (or Trisquel). I found Parabola GNU/Linux a few months after using Arch and have been very satisfied with its design and performance. [1] https://en.wikipedia.org/wiki/Parabola_GNU/Linux [2] http://www.fsf.org/blogs/licensing/parabola-gnu-linux-joins-the-fsf-list-of-free-distributions [3] https://projects.parabolagnulinux.org/blacklist.git/tree/blacklist.txt From, djs (fnord.) On Wed, Jun 13, 2012 at 10:36 AM, Jeremy MountainJohnson < jeremy.mountainjohnson at gmail.com> wrote: > I've been using it's parent, Arch Linux, since 2003 and have not switched > distros since that time. I hope you enjoy ArchBang :-) > > -- > Jeremy MountainJohnson > Jeremy.MountainJohnson at gmail.com > > > On Wed, Jun 13, 2012 at 7:48 AM, Craig Rosenblum wrote: > >> Has anyone else worked with that yet? >> >> It's very lightweight and minimal. >> >> How is everyone doing otherwise? >> >> _______________________________________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/mailman/listinfo/tclug-list >> >> > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mbmiller+l at gmail.com Wed Jun 13 13:49:50 2012 From: mbmiller+l at gmail.com (Mike Miller) Date: Wed, 13 Jun 2012 13:49:50 -0500 (CDT) Subject: [tclug-list] screwed up my account Message-ID: I had somehow accidentally created two copies of the group "staff", one with gid 50 and another with gid 1000. So I wanted to get rid of the one with gid 1000 and change everyone over to the group with gid 50. When I edited /etc/passwd, I changed every :1000: to :50: because when I looked at the file I thought they were all groups, but it turns out that exactly one was not -- it was my uid. So I changed my record in the passwd file such that my uid is now 50 instead of 1000, but I am logged in as 1000, which no longer exists. So when I try to sudo, it won't let me, always saying: sudo: unknown uid: 1000 I suppose I can boot to Live CD and change the /etc/passwd file appropriately. Is there any easier way to do it? If the LiveCD is the only way to go ... I'm using a RAID1 on this system. Is it possible to properly edit files on the RAID from the LiveCD? Is the best way to mount both devices and make identical changes to both? Mike From jake.vath at gmail.com Wed Jun 13 13:54:32 2012 From: jake.vath at gmail.com (Jake Vath) Date: Wed, 13 Jun 2012 13:54:32 -0500 Subject: [tclug-list] screwed up my account In-Reply-To: References: Message-ID: Couldn't you use *groupmod *to change your *gid*? On Wed, Jun 13, 2012 at 1:49 PM, Mike Miller wrote: > I had somehow accidentally created two copies of the group "staff", one > with gid 50 and another with gid 1000. So I wanted to get rid of the one > with gid 1000 and change everyone over to the group with gid 50. > > When I edited /etc/passwd, I changed every :1000: to :50: because when I > looked at the file I thought they were all groups, but it turns out that > exactly one was not -- it was my uid. So I changed my record in the passwd > file such that my uid is now 50 instead of 1000, but I am logged in as > 1000, which no longer exists. So when I try to sudo, it won't let me, > always saying: > > sudo: unknown uid: 1000 > > I suppose I can boot to Live CD and change the /etc/passwd file > appropriately. Is there any easier way to do it? > > > If the LiveCD is the only way to go ... I'm using a RAID1 on this system. > Is it possible to properly edit files on the RAID from the LiveCD? Is the > best way to mount both devices and make identical changes to both? > > Mike > ______________________________**_________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/**mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jake.vath at gmail.com Wed Jun 13 13:58:36 2012 From: jake.vath at gmail.com (Jake Vath) Date: Wed, 13 Jun 2012 13:58:36 -0500 Subject: [tclug-list] screwed up my account In-Reply-To: References: Message-ID: I mean, can you get *root* on your box or log in with another user? If you can, I'd try and use *groupmod*? If you can't I bet you could mount the RAID filesystem and do this with a LiveCD -> Jake On Wed, Jun 13, 2012 at 1:54 PM, Jake Vath wrote: > Couldn't you use *groupmod *to change your *gid*? > > > On Wed, Jun 13, 2012 at 1:49 PM, Mike Miller wrote: > >> I had somehow accidentally created two copies of the group "staff", one >> with gid 50 and another with gid 1000. So I wanted to get rid of the one >> with gid 1000 and change everyone over to the group with gid 50. >> >> When I edited /etc/passwd, I changed every :1000: to :50: because when I >> looked at the file I thought they were all groups, but it turns out that >> exactly one was not -- it was my uid. So I changed my record in the passwd >> file such that my uid is now 50 instead of 1000, but I am logged in as >> 1000, which no longer exists. So when I try to sudo, it won't let me, >> always saying: >> >> sudo: unknown uid: 1000 >> >> I suppose I can boot to Live CD and change the /etc/passwd file >> appropriately. Is there any easier way to do it? >> >> >> If the LiveCD is the only way to go ... I'm using a RAID1 on this system. >> Is it possible to properly edit files on the RAID from the LiveCD? Is the >> best way to mount both devices and make identical changes to both? >> >> Mike >> ______________________________**_________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/**mailman/listinfo/tclug-list >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mbmiller+l at gmail.com Wed Jun 13 14:14:20 2012 From: mbmiller+l at gmail.com (Mike Miller) Date: Wed, 13 Jun 2012 14:14:20 -0500 (CDT) Subject: [tclug-list] screwed up my account In-Reply-To: References: Message-ID: On Wed, 13 Jun 2012, Mike Miller wrote: > I had somehow accidentally created two copies of the group "staff", one > with gid 50 and another with gid 1000. So I wanted to get rid of the > one with gid 1000 and change everyone over to the group with gid 50. > > When I edited /etc/passwd, I changed every :1000: to :50: because when I > looked at the file I thought they were all groups, but it turns out that > exactly one was not -- it was my uid. So I changed my record in the > passwd file such that my uid is now 50 instead of 1000, but I am logged > in as 1000, which no longer exists. So when I try to sudo, it won't let > me, always saying: > > sudo: unknown uid: 1000 > > I suppose I can boot to Live CD and change the /etc/passwd file > appropriately. Is there any easier way to do it? Yes - figured it out. I logged in remotely via ssh via my username. It then assigned me to the new uid I had created. I guess /etc/sudoers has my name rather than uid listed, so I was in, made changes, golden. Sorry to bug you with this! Mike From jake.vath at gmail.com Wed Jun 13 14:20:24 2012 From: jake.vath at gmail.com (Jake Vath) Date: Wed, 13 Jun 2012 14:20:24 -0500 Subject: [tclug-list] screwed up my account In-Reply-To: References: Message-ID: This what TCLUG is for! I'm glad you got everything figured out too. I guess /etc/sudoers has my name rather than uid listed, so I was in, made > changes, golden. > As far as I understand, */etc/sudoers* assigns privileges bases on user name and group name. So, yes. You don't have to worry about your *uid* or your *gid* in that regard. -> Jake On Wed, Jun 13, 2012 at 2:14 PM, Mike Miller wrote: > On Wed, 13 Jun 2012, Mike Miller wrote: > > I had somehow accidentally created two copies of the group "staff", one >> with gid 50 and another with gid 1000. So I wanted to get rid of the one >> with gid 1000 and change everyone over to the group with gid 50. >> >> When I edited /etc/passwd, I changed every :1000: to :50: because when I >> looked at the file I thought they were all groups, but it turns out that >> exactly one was not -- it was my uid. So I changed my record in the passwd >> file such that my uid is now 50 instead of 1000, but I am logged in as >> 1000, which no longer exists. So when I try to sudo, it won't let me, >> always saying: >> >> sudo: unknown uid: 1000 >> >> I suppose I can boot to Live CD and change the /etc/passwd file >> appropriately. Is there any easier way to do it? >> > > > Yes - figured it out. I logged in remotely via ssh via my username. It > then assigned me to the new uid I had created. I guess /etc/sudoers has my > name rather than uid listed, so I was in, made changes, golden. > > Sorry to bug you with this! > > > Mike > ______________________________**_________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/**mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mbmiller+l at gmail.com Wed Jun 13 14:36:15 2012 From: mbmiller+l at gmail.com (Mike Miller) Date: Wed, 13 Jun 2012 14:36:15 -0500 (CDT) Subject: [tclug-list] screwed up my account In-Reply-To: References: Message-ID: On Wed, 13 Jun 2012, Jake Vath wrote: > This what TCLUG is for! > I'm glad you got everything figured out too. > >> I guess /etc/sudoers has my name rather than uid listed, so I was in, >> made changes, golden. > > As far as I understand, */etc/sudoers* assigns privileges bases on user > name and group name. > So, yes. You don't have to worry about your *uid* or your *gid* in that > regard. Thanks for helping out, Jake. I didn't realize it until now, but because my account was messed up, fetchmail wasn't giving me incoming mail in the usual way and it was piling up in /var/mail with a name beginning with "BOGUS". I was at the time a bogus user, I guess. Mike From jake.vath at gmail.com Wed Jun 13 14:43:01 2012 From: jake.vath at gmail.com (Jake Vath) Date: Wed, 13 Jun 2012 14:43:01 -0500 Subject: [tclug-list] screwed up my account In-Reply-To: References: Message-ID: Haha, I did something similar to this once; I had screwed up what group I was in as well. After a while, about a four days, I realized that I had not received an email in a while. It was a simple fix, but I had a ton of mail to read through... -> Jake On Wed, Jun 13, 2012 at 2:36 PM, Mike Miller wrote: > On Wed, 13 Jun 2012, Jake Vath wrote: > > This what TCLUG is for! >> I'm glad you got everything figured out too. >> >> I guess /etc/sudoers has my name rather than uid listed, so I was in, >>> made changes, golden. >>> >> >> As far as I understand, */etc/sudoers* assigns privileges bases on user >> name and group name. >> So, yes. You don't have to worry about your *uid* or your *gid* in that >> regard. >> > > > Thanks for helping out, Jake. I didn't realize it until now, but because > my account was messed up, fetchmail wasn't giving me incoming mail in the > usual way and it was piling up in /var/mail with a name beginning with > "BOGUS". I was at the time a bogus user, I guess. > > > Mike > ______________________________**_________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/**mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sapiensantiquus at gmail.com Thu Jun 14 10:25:19 2012 From: sapiensantiquus at gmail.com (Andrew Johnson) Date: Thu, 14 Jun 2012 10:25:19 -0500 Subject: [tclug-list] Just switched to ArchBang... In-Reply-To: References: Message-ID: I've heard of Parabola before, but didn't realize it was an Arch derivative. I'm a big fan of Arch... I may have to try it out. :) Andrew On Wed, Jun 13, 2012 at 11:51 AM, David wrote: > Hello, > > I use Parabola GNU/Linux[1] on my home desktop. Parabola is an entirely > Free Software (libre) derivative of Arch Linux[2]. Arch uses the Linux > kernel (with binary blobs) and includes non-Free software in its repos. > Parabola uses the linux-libre kernel and maintains a blacklist[3] of > non-Free applications in the Arch repo. > > I found that I was learning more about GNU/Linux computers, and having > more fun, after I started using Arch instead of Ubuntu (or Trisquel). I > found Parabola GNU/Linux a few months after using Arch and have been very > satisfied with its design and performance. > > [1] https://en.wikipedia.org/wiki/Parabola_GNU/Linux > [2] > http://www.fsf.org/blogs/licensing/parabola-gnu-linux-joins-the-fsf-list-of-free-distributions > [3] https://projects.parabolagnulinux.org/blacklist.git/tree/blacklist.txt > > From, > djs (fnord.) > > > On Wed, Jun 13, 2012 at 10:36 AM, Jeremy MountainJohnson < > jeremy.mountainjohnson at gmail.com> wrote: > >> I've been using it's parent, Arch Linux, since 2003 and have not switched >> distros since that time. I hope you enjoy ArchBang :-) >> >> -- >> Jeremy MountainJohnson >> Jeremy.MountainJohnson at gmail.com >> >> >> On Wed, Jun 13, 2012 at 7:48 AM, Craig Rosenblum wrote: >> >>> Has anyone else worked with that yet? >>> >>> It's very lightweight and minimal. >>> >>> How is everyone doing otherwise? >>> >>> _______________________________________________ >>> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >>> tclug-list at mn-linux.org >>> http://mailman.mn-linux.org/mailman/listinfo/tclug-list >>> >>> >> >> _______________________________________________ >> TCLUG Mailing List - Minneapolis/St. Paul, Minnesota >> tclug-list at mn-linux.org >> http://mailman.mn-linux.org/mailman/listinfo/tclug-list >> >> > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tclug1 at whitleymott.net Sat Jun 16 12:00:12 2012 From: tclug1 at whitleymott.net (gregrwm) Date: Sat, 16 Jun 2012 12:00:12 -0500 Subject: [tclug-list] funky corruption Message-ID: does this happen to anyone else? my main box has 1g ram, it seems generally adequate, tho thrashwaits of several seconds can happen with heavy use. after just such times my desktop background may sometimes seem suddenly to have numerous adjacent rectangles swapped, sometimes a whole array of same, quite funky to look at. then sometimes also/instead the fonts rendering firefox and/or libreoffice may be partly replaced with funky hieroglyphics. sometimes relaunching the app is sufficient, sometimes i need to relaunch X. this has happened 2-3 times/month for quite awhile, hasn't gotten worse or better, i always keep natty uptodate, i remember the same happening with maverick, perhaps even earlier. could be hardware, could be software, tho if software you'd think we'd be hearing about it..? surprisingly i've not seen a single instance of data corruption tho. From mbmiller+l at gmail.com Sat Jun 16 16:26:02 2012 From: mbmiller+l at gmail.com (Mike Miller) Date: Sat, 16 Jun 2012 16:26:02 -0500 (CDT) Subject: [tclug-list] funky corruption In-Reply-To: References: Message-ID: I haven't had that happen, but I did have a problem with a laptop where fonts would degrade and I think it was because of bad RAM. I recommend a RAM test. Maybe some of the memory that is rarely used -- only when you really need it -- is bad and causing the problem. This seems like a good test: http://lifehacker.com/5531900/use-an-ubuntu-live-cd-to-test-your-pcs-memory Mike On Sat, 16 Jun 2012, gregrwm wrote: > does this happen to anyone else? my main box has 1g ram, it seems > generally adequate, tho thrashwaits of several seconds can happen with > heavy use. after just such times my desktop background may sometimes > seem suddenly to have numerous adjacent rectangles swapped, sometimes a > whole array of same, quite funky to look at. then sometimes > also/instead the fonts rendering firefox and/or libreoffice may be > partly replaced with funky hieroglyphics. sometimes relaunching the app > is sufficient, sometimes i need to relaunch X. this has happened 2-3 > times/month for quite awhile, hasn't gotten worse or better, i always > keep natty uptodate, i remember the same happening with maverick, > perhaps even earlier. could be hardware, could be software, tho if > software you'd think we'd be hearing about it..? surprisingly i've not > seen a single instance of data corruption tho. From xcorvis at gmail.com Sat Jun 16 17:39:41 2012 From: xcorvis at gmail.com (Adam Nave) Date: Sat, 16 Jun 2012 17:39:41 -0500 Subject: [tclug-list] funky corruption In-Reply-To: References: Message-ID: Does your video card use shared system memory? If you don't have a separate card, I would recommend it (or just get more RAM). Also, how much swap space do you have? --Adam On Sat, Jun 16, 2012 at 12:00 PM, gregrwm wrote: > does this happen to anyone else? my main box has 1g ram, it seems > generally adequate, tho thrashwaits of several seconds can happen with > heavy use. after just such times my desktop background may sometimes > seem suddenly to have numerous adjacent rectangles swapped, sometimes > a whole array of same, quite funky to look at. then sometimes > also/instead the fonts rendering firefox and/or libreoffice may be > partly replaced with funky hieroglyphics. sometimes relaunching the > app is sufficient, sometimes i need to relaunch X. this has happened > 2-3 times/month for quite awhile, hasn't gotten worse or better, i > always keep natty uptodate, i remember the same happening with > maverick, perhaps even earlier. could be hardware, could be software, > tho if software you'd think we'd be hearing about it..? surprisingly > i've not seen a single instance of data corruption tho. > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jjensen at apache.org Sun Jun 17 10:18:41 2012 From: jjensen at apache.org (Jeff Jensen) Date: Sun, 17 Jun 2012 10:18:41 -0500 Subject: [tclug-list] Configure Sendmail for CenturyLink DSL? Message-ID: Anyone configured Sendmail on their server to point to CenturyLink's SMTP relay server? I'm on Fedora if that matters: Linux version 2.6.30.10-105.2.23.fc11.i586 ( mockbuild at x86-05.phx2.fedoraproject.org) (gcc version 4.4.1 20090725 (Red Hat 4.4.1-2) (GCC) ) #1 SMP Thu Feb 11 06:51:26 UTC 2010 This is what I'm trying to do [0]. I'm a n00b at Sendmail, so any advice is appreciated. I found this page when looking for the CL smtp server info [1], but not sure if that's correct to use. I've been searching the CL forums and general googling. I've found a couple of recipes, e.g. [2], [3], and [4]. I'm a bit confused because they differ a little, the permutations I've tried don't work, and I'm not sure if it would work even if I had the correct config because I wonder what the user id & pw is - do I need to contact them for a special one, or is it the same as my DSL one? So initial questions are: 1. Any general advice? 2. The user id & pw - are they different or same per above? I noticed CL has an email facility which I don't use/don't have u&pw for; my guess is I need to call (gasp) them to get that. 3. Anyone have a simpler recipe to share (or sample configs they've done that works)?! [0] http://support.google.com/mail/bin/answer.py?hl=en&answer=10336 [1] http://www.qwest.net/help/roaming.html#config [2] http://www.ozzu.com/unix-linux-forum/how-setup-relay-host-sendmail-t29690.html [3] http://cri.ch/linux/docs/sk0009.html [4] http://serverfault.com/questions/265021/make-gmail-auth-smtp-smart-relay-by-tweaking-sendmail-cf-not-mc -------------- next part -------------- An HTML attachment was scrubbed... URL: From tclug at freakzilla.com Sun Jun 17 12:25:14 2012 From: tclug at freakzilla.com (Yaron) Date: Sun, 17 Jun 2012 12:25:14 -0500 (CDT) Subject: [tclug-list] Configure Sendmail for CenturyLink DSL? In-Reply-To: References: Message-ID: On Sun, 17 Jun 2012, Jeff Jensen wrote: > This is what I'm trying to do [0]. ?I'm a n00b at Sendmail, so any advice is > appreciated. OK, here's some. Uninstall Sendmail as fast as possible and replace it with Postfix. -Yaron -- From jjensen at apache.org Sun Jun 17 16:53:22 2012 From: jjensen at apache.org (Jeff Jensen) Date: Sun, 17 Jun 2012 16:53:22 -0500 Subject: [tclug-list] Configure Sendmail for CenturyLink DSL? In-Reply-To: References: Message-ID: I've had a couple of private replies, so answering this on the thread. "Why am I doing this"? Because I have 2 Fedora servers and a few services occasionally send email. Those forwards are going to my gmail address. gmail is not allowing them through most of the time as it looks like relay attempts (a la spam approach). I am not running my own email processing with it. Why sendmail vs [other product]? Only because sendmail was already configured and running with default distro, and running flawlessly for about 15 years. This problem only occurred because of recent switch of ISPs (for speed). Previous awesome ISP must have configured this behind the scenes. Is it really worth the effort to change to something else (2 people's "any advice appreciated" is "switch to postfix") that is not installed and working? And if so, is the recipe to accomplish what my real goal is readily available? That's what really matters... not which product I use. On Sun, Jun 17, 2012 at 10:18 AM, Jeff Jensen wrote: > Anyone configured Sendmail on their server to point to CenturyLink's SMTP > relay server? I'm on Fedora if that matters: > Linux version 2.6.30.10-105.2.23.fc11.i586 ( > mockbuild at x86-05.phx2.fedoraproject.org) (gcc version 4.4.1 20090725 (Red > Hat 4.4.1-2) (GCC) ) #1 SMP Thu Feb 11 06:51:26 UTC 2010 > > This is what I'm trying to do [0]. I'm a n00b at Sendmail, so any advice > is appreciated. > > I found this page when looking for the CL smtp server info [1], but not > sure if that's correct to use. > > I've been searching the CL forums and general googling. I've found a > couple of recipes, e.g. [2], [3], and [4]. > I'm a bit confused because they differ a little, the permutations I've > tried don't work, and I'm not sure if it would work even if I had the > correct config because I wonder what the user id & pw is - do I need to > contact them for a special one, or is it the same as my DSL one? > > So initial questions are: > 1. Any general advice? > 2. The user id & pw - are they different or same per above? I noticed CL > has an email facility which I don't use/don't have u&pw for; my guess is I > need to call (gasp) them to get that. > 3. Anyone have a simpler recipe to share (or sample configs they've done > that works)?! > > [0] http://support.google.com/mail/bin/answer.py?hl=en&answer=10336 > > [1] http://www.qwest.net/help/roaming.html#config > > [2] > http://www.ozzu.com/unix-linux-forum/how-setup-relay-host-sendmail-t29690.html > [3] http://cri.ch/linux/docs/sk0009.html > [4] > http://serverfault.com/questions/265021/make-gmail-auth-smtp-smart-relay-by-tweaking-sendmail-cf-not-mc > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kelly.black at penguinpackets.com Sun Jun 17 20:15:50 2012 From: kelly.black at penguinpackets.com (kelly) Date: Sun, 17 Jun 2012 20:15:50 -0500 Subject: [tclug-list] Configure Sendmail for CenturyLink DSL? References: Message-ID: <4FDE8146-00044168@penguinpackets.com> This looks interesting: http://cthayer.wordpress.com/2008/10/03/sendmail-smart-host-authenication-by-s ender/ Probably best to check Sendmail docs and touch the cf file and use m4 though after understanding what is possible.? http://www.sendmail.org/~ca/email/auth.html Section: Using sendmail as a client with AUTH ? Kelly > Sun Jun 17 2012 04:53:22 PM CDT from "Jeff Jensen" >Subject: Re: [tclug-list] Configure Sendmail for CenturyLink DSL? > > I've had a couple of private replies, so answering this on the thread. ? > > "Why am I doing this"? ?Because I have 2 Fedora servers and a few >services occasionally send email. ?Those forwards are going to my gmail >address. ?gmail is not allowing them through most of the time as it looks >like relay attempts (a la spam approach). ?I am not running my own email >processing with it. ? > > Why sendmail vs [other product]? ?Only because sendmail was already >configured and running with default distro, and running flawlessly for about >15 years. ?This problem only occurred because of recent switch of ISPs (for >speed). ?Previous awesome ISP must have configured this behind the scenes. > > Is it really worth the effort to change to something else (2 people's "any >advice appreciated" is "switch to postfix") that is not installed and >working? ?And if so, is the recipe to accomplish what my real goal is >readily available? ?That's what really matters.... not which product I use. > ? > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tclug1 at whitleymott.net Mon Jun 18 06:37:44 2012 From: tclug1 at whitleymott.net (gregrwm) Date: Mon, 18 Jun 2012 06:37:44 -0500 Subject: [tclug-list] Configure Sendmail for CenturyLink DSL? In-Reply-To: References: Message-ID: i switched to postfix years ago. to be sure it has its fanboys. i found it to be just as cryptic in its own way. i came back to sendmail. far lighter weight if that matters to you. my config does outgoing auth for delivery via isp. here's my setup: dnsinternal=(intra.mydomainname.com) smmasquhide=intra.mydomainname.com smmasqushow=mydomainname.com sendmailocal=mydomainname.com sendmailoutvia=smtpauth.myisp.net dnsexternal=() dnsmeext=("${dnsexternal[@]}" "${dnsinternal[@]}" "${sendmailocal[@]}") AUTH_OPTIONS='A p' cf=/etc/mail/sendmail.cf mc=/etc/mail/sendmail.mc (sed -e "s/+AUTH_OPTIONS+/$AUTH_OPTIONS/"\ -e "s/+smmasquhide+/$smmasquhide/"\ -e "s/+smmasqushow+/$smmasqushow/"\ -e "s/+sendmailoutvia+/$sendmailoutvia/"\ -e "s/+sendlocalmailto+/$sendlocalmailto/" $mc echo "Cw${dnsmeext[@]}")|m4>$cf */etc/mail/sendmail.cf*: include(`/usr/share/sendmail-cf/m4/cf.m4')dnl OSTYPE(`linux')dnl define(`confSMTP_LOGIN_MSG',`')dnl Delete all the program and version information out of the SMTP header define(`HELP_FILE',`')dnl Enhance security by not offering version numbers in the HELP output define(`LOCAL_RELAY',`+sendlocalmailto+') define(`confDEF_USER_ID', ``8:12'')dnl define(`confERROR_MODE',`m') define(`confDIAL_DELAY',`60s') define(`confDONT_PROBE_INTERFACES', `True')dnl define(`PROCMAIL_MAILER_PATH', `/usr/bin/procmail')dnl define(`ALIAS_FILE', `/etc/aliases')dnl define(`STATUS_FILE', `/var/log/mail/statistics')dnl define(`confDEAD_LETTER_DROP',`/var/mail/DEAD_LETTER_DROP') dnl ne(`confLOG_LEVEL', `20')dnl verbose undefine(`BITNET_RELAY') undefine(`UUCP_RELAY') FEATURE(nouucp,reject) define(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun,restrictmailq,restrictexpand,needmailhelo,noreceipts') # AUTH_OPTIONS A allows relaying if the user authenticates # AUTH_OPTIONS p disallows plaintext authentication (PLAIN/LOGIN) on non-TLS links define(`confAUTH_OPTIONS',`+AUTH_OPTIONS+')dnl TRUST_AUTH_MECH( `EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN')dnl define(`confAUTH_MECHANISMS',`EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN')dnl define(`SMART_HOST',`+sendmailoutvia+') define(`ESMTP_MAILER_ARGS', `TCP $h 587')dnl define(`RELAY_MAILER_ARGS', `TCP $h 587')dnl define(`confCACERT_PATH', `/etc/pki/tls/certs')dnl define(`confCACERT', `/etc/pki/tls/certs/ca-bundle.crt')dnl define(`confCLIENT_CERT', `/etc/pki/tls/certs/localhost.crt')dnl define(`confSERVER_CERT', `/etc/pki/tls/certs/localhost.crt')dnl define(`confCLIENT_KEY', `/etc/pki/tls/private/localhost.key')dnl define(`confSERVER_KEY', `/etc/pki/tls/private/localhost.key')dnl dnl # dnl # This allows sendmail to use a keyfile that is shared with OpenLDAP's dnl # slapd, which requires the file to be readble by group ldap dnl define(`confDONT_BLAME_SENDMAIL', `groupreadablekeyfile')dnl dnl # FEATURE(`smrsh', `/usr/sbin/smrsh')dnl FEATURE(`mailertable', `hash -o /etc/mail/mailertable.db')dnl FEATURE(`virtusertable', `hash -o /etc/mail/virtusertable.db')dnl FEATURE(`virtuser_entire_domain') FEATURE(redirect)dnl FEATURE(use_ct_file)dnl define(`confMAX_DAEMON_CHILDREN',`25')dnl maximum child processes that can be spawned by the server define(`confCONNECTION_RATE_THROTTLE',`5')dnl connections the server can receive per second define(`confMIN_FREE_BLOCKS',`19200')dnl 75mb dnl # The -t option was retrying delivery if e.g. the user runs over his quota. caused problems with fetchmail. dnl URE(local_procmail,`',`procmail -t -Y -a $h -d $u')dnl FEATURE(local_procmail,`',`procmail -Y -a $h -d $u')dnl FEATURE(`access_db')dnl FEATURE(`authinfo')dnl /etc/mail/authinfo FEATURE(`blacklist_recipients')dnl FEATURE(`dnsbl', `list.dsbl.org',`Message from $&{client_addr} rejected - see http://dsbl.org') FEATURE(`dnsbl', `relays.ordb.org',`"550 Email rejected due to sending server misconfiguration - see http://www.ordb.org/faq"') FEATURE(`dnsbl', `dnsbl.njabl.org',`Message from $&{client_addr} rejected - see http://njabl.org') FEATURE(`dnsbl',`blackholes.brainerd.net',`Message from $&{client_addr} rejected - see http://blackholes.brainerd.net') dnl the following rejected a message from sherry's surfbest.net, likely they unwittingly hosted a spammer, nevertheless i removed it dnl URE(`dnsbl', `sbl.spamhaus.org',`Message from $&{client_addr} rejected - see http://www.spamhaus.org/SBL') dnl the following 2 were causing long wait before "220 ESMTP", hence receive timeouts on pomcoweb from earthlink and verizon, though other senders were more patient dnl URE(`dnsbl', `dialups.visi.com',`Message from $&{client_addr} rejected - see http://dialups.visi.com') dnl URE(`dnsbl', `dialups.mail-abuse.org',`Message from $&{client_addr} rejected - see http://mail-abuse.org/dul/enduser.htm') dnl # dnl # For using Cyrus-IMAPd as POP3/IMAP server through LMTP delivery uncomment dnl # the following 2 definitions and activate below in the MAILER section the dnl # cyrusv2 mailer. dnl define(`confLOCAL_MAILER', `cyrusv2')dnl dnl define(`CYRUSV2_MAILER_ARGS', `FILE /var/lib/imap/socket/lmtp')dnl dnl # FEATURE(`no_default_msa') DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl accept port 25 unencrypted smtp from localhost only DAEMON_OPTIONS(`Port=submission, Name=MSA, M=Ea')dnl accept port 587 authenticated esmtp dnl # dnl # The following causes sendmail to additionally listen to port 465, but dnl # starting immediately in TLS mode upon connecting. Port 25 or 587 followed dnl # by STARTTLS is preferred, but roaming clients using Outlook Express can't dnl # do STARTTLS on ports other than 25. Mozilla Mail can ONLY use STARTTLS dnl # and doesn't support the deprecated smtps; Evolution <1.1.1 uses smtps dnl # when SSL is enabled-- STARTTLS support is available in version 1.1.1. dnl # For this to work your OpenSSL certificates must be configured. dnl DAEMON_OPTIONS(`Port=smtps, Name=TLSMTA, M=s')dnl dnl # dnl accept unresolvable domains else fetchmail keeps retrying, bogging and breaking named FEATURE(`accept_unresolvable_domains')dnl dnl URE(`nocanonify') dnl URE(`limited_masquerade') FEATURE(`allmasquerade')dnl masq recipient addresses, doesn't appear to work for g at georgia.nvpf.org FEATURE(`masquerade_envelope') MASQUERADE_DOMAIN(`+smmasquhide+') MASQUERADE_AS(+smmasqushow+)dnl MAILER(smtp)dnl MAILER(procmail)dnl dnl MAILER(cyrusv2)dnl -------------- next part -------------- An HTML attachment was scrubbed... URL: From sraun at fireopal.org Tue Jun 19 11:59:10 2012 From: sraun at fireopal.org (Scott Raun) Date: Tue, 19 Jun 2012 11:59:10 -0500 Subject: [tclug-list] OT: Android hardware recommendations? Message-ID: <20120619165910.GB17335@fireopal.org> The _plan_ was to wait until late summer / fall before acquiring a second cell phone - which will be an Android device - for the two of us. Reality has stepped in and significantly altered the plan - I need a second cell _soon_. So, I've got two options - go for less of a phone than I was originally planning on, or get a really cheap phone-only, and upgrade to the Android as originally planned. I wanted to get either a Samsung Conquer (Gingerbread, 1024 ROM, 512 RAM, 1GHz processor) or a Samsung Transform Ultra (same basic hardware). Those currently have a 2-3 week backlog from my carrier of choice. My alternative is an LG Optimus (Froyo, with a Gingerbread upgrade scheduled, 512 ROM, 512 RAM, 600 MHz processor). All have 320x480 resolution, the LG is 3.2" LCD, the Samsungs are 3.5" TFT. I'm unlikely to be playing games. I'm probably going to look for a contact handler separate from GMail. I'll certain use it for reading e-books. Hmm, interesting - the Conquer just (as in, in the last 30 minutes) became unavailable. Anyone have input into how much I'd regret getting the older / slower device? -- Scott Raun sraun at fireopal.org From jake.vath at gmail.com Tue Jun 19 12:34:09 2012 From: jake.vath at gmail.com (Jake Vath) Date: Tue, 19 Jun 2012 12:34:09 -0500 Subject: [tclug-list] OT: Android hardware recommendations? In-Reply-To: <20120619165910.GB17335@fireopal.org> References: <20120619165910.GB17335@fireopal.org> Message-ID: I'm of the opinion, "buy once cry once"; Get what you want. There will always be something better around the corner. However, you still make sure that you are staying within your means. That is don't overextend your budget because, "I need it now (read I *want*it now)". I hand an older MyTouch 3G with was okay when I bought it, but now I have a Galaxy SII. I didn't know what I was missing, In the long run it may cost you to get a nice(r) phone now, but you will probably save time using a faster phone. -> Jake On Tue, Jun 19, 2012 at 11:59 AM, Scott Raun wrote: > The _plan_ was to wait until late summer / fall before acquiring a > second cell phone - which will be an Android device - for the two of > us. > > Reality has stepped in and significantly altered the plan - I need a > second cell _soon_. So, I've got two options - go for less of a phone > than I was originally planning on, or get a really cheap phone-only, > and upgrade to the Android as originally planned. > > I wanted to get either a Samsung Conquer (Gingerbread, 1024 ROM, 512 > RAM, 1GHz processor) or a Samsung Transform Ultra (same basic > hardware). Those currently have a 2-3 week backlog from my carrier of > choice. My alternative is an LG Optimus (Froyo, with a Gingerbread > upgrade scheduled, 512 ROM, 512 RAM, 600 MHz processor). All have > 320x480 resolution, the LG is 3.2" LCD, the Samsungs are 3.5" TFT. > > I'm unlikely to be playing games. I'm probably going to look for a > contact handler separate from GMail. I'll certain use it for reading > e-books. > > Hmm, interesting - the Conquer just (as in, in the last 30 minutes) > became unavailable. > > Anyone have input into how much I'd regret getting the older / slower > device? > > -- > Scott Raun > sraun at fireopal.org > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tclug1 at whitleymott.net Wed Jun 20 05:27:16 2012 From: tclug1 at whitleymott.net (gregrwm) Date: Wed, 20 Jun 2012 05:27:16 -0500 Subject: [tclug-list] OT: Android hardware recommendations? In-Reply-To: References: <20120619165910.GB17335@fireopal.org> Message-ID: On Jun 19, 2012 12:34 PM, "Jake Vath" wrote: > but now I have a Galaxy SII. > I didn't know what I was missing, In the long run it may cost you to get a nice(r) phone now, but > you will probably save time using a faster phone. my tmo galaxy s ii (sgh-t989) is now available, still excellent condition, b.o. i'm switching to credo, same galaxy, different radio. credo buys out my tmo contract, you get to go for tmo no contract plans. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cncole at earthlink.net Wed Jun 20 07:32:34 2012 From: cncole at earthlink.net (Chuck Cole) Date: Wed, 20 Jun 2012 07:32:34 -0500 Subject: [tclug-list] OT: Android hardware recommendations? In-Reply-To: <20120619165910.GB17335@fireopal.org> Message-ID: <02922FE7B9054E2D8E393CC55666AE12@d830a> > -----Original Message----- > From: tclug-list-bounces at mn-linux.org > [mailto:tclug-list-bounces at mn-linux.org] On Behalf Of Scott Raun > > I wanted to get either a Samsung Conquer (Gingerbread, 1024 > ROM, 512 RAM, 1GHz processor) or a Samsung Transform Ultra > (same basic hardware). Those currently have a 2-3 week > backlog from my carrier of choice. The Transform cannot do 4G, but has a slot for a MicroSD card. The Conquer does 4G but has no slot. The free app FoxFi that permits use as a "hotspot" without carrier fees works on both. 4G gets about 6mb/sec but 3G barely gets 1mb/sec. As of a few weeks ago, these were free choices on Sprint and they gave a GREAT assortment of discounts as well. They are being dropped and not restocked, but Sprint had many in inventory. I upgraded to a Galaxy SII last Feb, and am very happy with it. I got more discounts and incentives even tho a long-term customer. Chuck From andyschmid at gmail.com Sat Jun 23 00:05:54 2012 From: andyschmid at gmail.com (Andy Schmid) Date: Sat, 23 Jun 2012 00:05:54 -0500 Subject: [tclug-list] For Sale: Various computer items - Cleaning house Message-ID: It's that time of year again, I?m cleaning out my closet and have some computer stuff for sale. Please let me know at andyschmid at gmail.com if you are interested in any of the following: * Sprint Evo4g Android phone, bootloader unlocked & rooted. Comes with docking charger - $100 * 4U rack mount server (great for a media server, lots of HDD slots). Comes with motherboard w/ onboard NVIDIA gfx, AMD dual core processor, 2gig ram, 500 watt PSU. This is a pretty decent PC, just needs a boot drive - $150 * NVIDIA Geforce 9600GT FANLESS dual DVI PCIe gfx card - $25 * M-Audio Firewire Solo audio recording interface (works with jack in linux!) - $65 * iMo Touch 7? USB Sub-Monitor with touchscreen - Add an external display via USB with touch input capability (also works in linux) - $50 * Antec 430W True Power PSU - $15 * D-Link DI-524 wireless G router - $5 * IOGear GPSU21 Print Server - $5 * CSCI TextBooks (make an offer, they are all old editions): Statistics for Engineers and Scientists - 1st ed Discrete Mathematics - 6th ed Differential Equations & Linear Algebra - 1st ed Numerical Mathematics and Computing - 5th ed Data Structures and Abstractions with Java - 1st ed Linux For Dummies Programming Languages Concepts & Constructs - 2nd ed Modern Operating Systems - 2nd ed Computer Systems A Programmers Perspective - 1st ed * Free Bin: 2 10/100 PCI ethernet cards NVIDIA 7900 GS gfx card (not sure if its good or not) Firewire PCI adapter card 160GB and 320GB WD IDE harddrives Programmable LED display DVD-RW IDE drive I can provide pictures and/or more information if desired. Thanks! From ryanjcole at me.com Sat Jun 23 00:31:23 2012 From: ryanjcole at me.com (Ryan Coleman) Date: Sat, 23 Jun 2012 00:31:23 -0500 Subject: [tclug-list] For Sale: Various computer items - Cleaning house In-Reply-To: References: Message-ID: Andy, I might be interested in the EVO... I don't know much about it so if you could give me a few specification bullet points I'd love to know them. Thanks! And maybe the 4U server. But funds are tight at the moent. On Jun 23, 2012, at 12:05 AM, Andy Schmid wrote: > It's that time of year again, I?m cleaning out my closet and have some > computer stuff for sale. Please let me know at andyschmid at gmail.com > if you are interested in any of the following: > > * Sprint Evo4g Android phone, bootloader unlocked & rooted. Comes > with docking charger - $100 > > * 4U rack mount server (great for a media server, lots of HDD slots). > Comes with motherboard w/ onboard NVIDIA gfx, AMD dual core processor, > 2gig ram, 500 watt PSU. This is a pretty decent PC, just needs a boot > drive - $150 > > * NVIDIA Geforce 9600GT FANLESS dual DVI PCIe gfx card - $25 > > * M-Audio Firewire Solo audio recording interface (works with jack in > linux!) - $65 > > * iMo Touch 7? USB Sub-Monitor with touchscreen - Add an external > display via USB with touch input capability (also works in linux) - > $50 > > * Antec 430W True Power PSU - $15 > > * D-Link DI-524 wireless G router - $5 > > * IOGear GPSU21 Print Server - $5 > > * CSCI TextBooks (make an offer, they are all old editions): > Statistics for Engineers and Scientists - 1st ed > Discrete Mathematics - 6th ed > Differential Equations & Linear Algebra - 1st ed > Numerical Mathematics and Computing - 5th ed > Data Structures and Abstractions with Java - 1st ed > Linux For Dummies > Programming Languages Concepts & Constructs - 2nd ed > Modern Operating Systems - 2nd ed > Computer Systems A Programmers Perspective - 1st ed > > * Free Bin: > 2 10/100 PCI ethernet cards > NVIDIA 7900 GS gfx card (not sure if its good or not) > Firewire PCI adapter card > 160GB and 320GB WD IDE harddrives > Programmable LED display > DVD-RW IDE drive > > I can provide pictures and/or more information if desired. Thanks! > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list From scottbb1973 at gmail.com Sun Jun 24 17:57:39 2012 From: scottbb1973 at gmail.com (Scott Berry) Date: Sun, 24 Jun 2012 17:57:39 -0500 Subject: [tclug-list] having some issues getting freepbx set up in apache2 correctly Message-ID: <4FE79B63.5090708@gmail.com> hello there, When I run: service apache2 start I get an error on line 38 that something is wrong however I thought I fixed line 38. Could someone please look at the apache.conf file I am sending and please help me to correct it as I am blind and may have overlooke it possible as I use nano rather than vim or vi. I apologize that I can't cut the conf file down but I am remoting from a windows box and use sftp through Filezilla to bring down my .conf files to send out. Thanks for your understanding. d -- Have a beautiful day Scott Berry Msn: electronicman1960 Skype me at: scottbb1973 E-mail: scottbb1973 at gmail.com -------------- next part -------------- # # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See http://httpd.apache.org/docs/2.2/ for detailed information about # the directives. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so "foo.log" # with ServerRoot set to "/etc/apache2" will be interpreted by the # server as "/etc/apache2/foo.log". # ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # NOTE! If you intend to place this on an NFS (or otherwise network) # mounted filesystem then please read the LockFile documentation (available # at ); # you will save yourself a lot of trouble. # # Do NOT add a slash at the end of the directory path. # #ServerRoot "/etc/apache2" # # The accept serialization lock file MUST BE STORED ON A LOCAL DISK. # LockFile ${APACHE_LOCK_DIR}/accept.lock # # PidFile: The file in which the server should record its process # identification number when it starts. # This needs to be set in /etc/apache2/envvars # PidFile ${APACHE_PID_FILE} # # Timeout: The number of seconds before receives and sends time out. # Timeout 300 # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to "Off" to deactivate. # KeepAlive On # # MaxKeepAliveRequests: The maximum number of requests to allow # during a persistent connection. Set to 0 to allow an unlimited amount. # We recommend you leave this number high, for maximum performance. # MaxKeepAliveRequests 100 # # KeepAliveTimeout: Number of seconds to wait for the next request from the # same client on the same connection. # KeepAliveTimeout 5 ## ## Server-Pool Size Regulation (MPM specific) ## # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 # worker MPM # StartServers: initial number of server processes to start # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadLimit: ThreadsPerChild can be changed to this maximum value during a # graceful restart. ThreadLimit can only be changed by stopping # and starting Apache. # ThreadsPerChild: constant number of worker threads in each server process # MaxClients: maximum number of simultaneous client connections # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 2 MinSpareThreads 25 MaxSpareThreads 75 ThreadLimit 64 ThreadsPerChild 25 MaxClients 150 MaxRequestsPerChild 0 # event MPM # StartServers: initial number of server processes to start # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxClients: maximum number of simultaneous client connections # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 2 MinSpareThreads 25 MaxSpareThreads 75 ThreadLimit 64 ThreadsPerChild 25 MaxClients 150 MaxRequestsPerChild 0 # These need to be set in /etc/apache2/envvars User ${APACHE_RUN_USER} Group ${APACHE_RUN_GROUP} # # AccessFileName: The name of the file to look for in each directory # for additional configuration directives. See also the AllowOverride # directive. # AccessFileName .htaccess # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # Order allow,deny Deny from all Satisfy all # # DefaultType is the default MIME type the server will use for a document # if it cannot otherwise determine one, such as from filename extensions. # If your server contains mostly text or HTML documents, "text/plain" is # a good value. If most of your content is binary, such as applications # or images, you may want to use "application/octet-stream" instead to # keep browsers from trying to display binary files as though they are # text. # # It is also possible to omit any default MIME type and let the # client's browser guess an appropriate action instead. Typically the # browser will decide based on the file's extension then. In cases # where no good assumption can be made, letting the default MIME type # unset is suggested instead of forcing the browser to accept # incorrect metadata. # DefaultType None # # HostnameLookups: Log the names of clients or just their IP addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # The default is off because it'd be overall better for the net if people # had to knowingly turn this feature on, since enabling it means that # each client request will result in AT LEAST one lookup request to the # nameserver. # HostnameLookups Off # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a # container, that host's errors will be logged there and not here. # ErrorLog ${APACHE_LOG_DIR}/error.log # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel warn # Include module configuration: Include mods-enabled/*.load Include mods-enabled/*.conf # Include all the user configurations: Include httpd.conf # Include ports listing Include ports.conf # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i # LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %O" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent # Include of directories ignores editors' and dpkg's backup files, # see README.Debian for details. # Include generic snippets of statements Include conf.d/ # Include the virtual host configurations: Include sites-enabled/ From jhawley at hissingdragon.net Sun Jun 24 19:17:59 2012 From: jhawley at hissingdragon.net (John Hawley) Date: Sun, 24 Jun 2012 19:17:59 -0500 Subject: [tclug-list] having some issues getting freepbx set up in apache2 correctly In-Reply-To: <4FE79B63.5090708@gmail.com> References: <4FE79B63.5090708@gmail.com> Message-ID: <4FE7AE37.6090803@hissingdragon.net> line 38 is blank. post your error log? On 06/24/2012 05:57 PM, Scott Berry wrote: > hello there, > > When I run: > service apache2 start > I get an error on line 38 that something is wrong however I thought I > fixed line 38. Could someone please look at the apache.conf file I am > sending and please help me to correct it as I am blind and may have > overlooke it possible as I use nano rather than vim or vi. I > apologize that I can't cut the conf file down but I am remoting from a > windows box and use sftp through Filezilla to bring down my .conf > files to send out. Thanks for your understanding. > > > > d > > > > _______________________________________________ > TCLUG Mailing List - Minneapolis/St. Paul, Minnesota > tclug-list at mn-linux.org > http://mailman.mn-linux.org/mailman/listinfo/tclug-list -------------- next part -------------- An HTML attachment was scrubbed... URL: From jhawley at hissingdragon.net Mon Jun 25 10:57:41 2012 From: jhawley at hissingdragon.net (John Hawley) Date: Mon, 25 Jun 2012 10:57:41 -0500 Subject: [tclug-list] Fwd: Re: having some issues getting freepbx set up in apache2 correctly In-Reply-To: <4FE86468.6010708@gmail.com> References: <4FE86468.6010708@gmail.com> Message-ID: <4FE88A75.1020105@hissingdragon.net> Scott, You need to keep this on the LUG list. I'll CC: it back on... That error log doesn't tell us anything. It's only 2 lines showing the start up and the shutdown 10 hours later. What makes you think apache is not running? ps is your friend. $ ps aux | grep apache root 27352 0.0 0.9 24784 7108 ? Ss Jun24 0:00 /usr/sbin/apache2 -k start asterisk 27358 0.0 0.5 24784 4132 ? S Jun24 0:00 /usr/sbin/apache2 -k start asterisk 27359 0.0 0.5 25248 4444 ? S Jun24 0:00 /usr/sbin/apache2 -k start asterisk 27360 0.0 0.5 24784 4128 ? S Jun24 0:00 /usr/sbin/apache2 -k start asterisk 27361 0.0 0.5 24784 4128 ? S Jun24 0:00 /usr/sbin/apache2 -k start asterisk 27362 0.0 0.5 24784 4128 ? S Jun24 0:00 /usr/sbin/apache2 -k start asterisk 24866 0.0 0.4 24784 3608 ? S 10:53 0:00 /usr/sbin/apache2 -k start root 24942 0.0 0.0 3004 700 pts/0 S+ 10:54 0:00 grep apache Yeah, check your vhosts file or whereever freepbx is setting up its host. I may be redefining its own log file location. ~jh -------- Original Message -------- Subject: Re: [tclug-list] having some issues getting freepbx set up in apache2 correctly Date: Mon, 25 Jun 2012 08:15:20 -0500 From: Scott Berry Reply-To: scottbb1973 at gmail.com To: John Hawley John, I did get the error.log file down please see attached file. Anyone who looks at it will need the 24th logs. Also I am doing this under a virtual host so please let me know if you nejed to see "vhost.conf" I can provide if needed. Thanks much for the help. On 6/24/2012 10:02 PM, John Hawley wrote: > could check "/etc/apache2/envvars" for where APACHE_LOG_DIR > environment variable is defined to point to. > Otherwise that could be overridden by any vhosts config. > > Run "apache2ctl configtest" to check for errors in the config file. > > On 06/24/2012 07:23 PM, Scott Berry wrote: >> >> >> Right that's what I had thought. I don't see an error log posted in: >> "/var/log/apache2" at all. >> >> -- Scott Berry Msn: electronicman1960 at gmail.com Skype me at: scottbb1973 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: error.log URL: From scottbb1973 at gmail.com Mon Jun 25 11:55:12 2012 From: scottbb1973 at gmail.com (Scott Berry) Date: Mon, 25 Jun 2012 11:55:12 -0500 Subject: [tclug-list] Fwd: Re: having some issues getting freepbx set up in apache2 correctly In-Reply-To: <4FE88A75.1020105@hissingdragon.net> References: <4FE86468.6010708@gmail.com> <4FE88A75.1020105@hissingdragon.net> Message-ID: <4FE897F0.2060200@gmail.com> It's failing when I do the following: "service apache2 start" On 6/25/2012 10:57, John Hawley wrote: > Scott, > > You need to keep this on the LUG list. I'll CC: it back on... > > That error log doesn't tell us anything. It's only 2 lines showing > the start up and the shutdown 10 hours later. What makes you think > apache is not running? ps is your friend. > > $ ps aux | grep apache > root 27352 0.0 0.9 24784 7108 ? Ss Jun24 0:00 > /usr/sbin/apache2 -k start > asterisk 27358 0.0 0.5 24784 4132 ? S Jun24 0:00 > /usr/sbin/apache2 -k start > asterisk 27359 0.0 0.5 25248 4444 ? S Jun24 0:00 > /usr/sbin/apache2 -k start > asterisk 27360 0.0 0.5 24784 4128 ? S Jun24 0:00 > /usr/sbin/apache2 -k start > asterisk 27361 0.0 0.5 24784 4128 ? S Jun24 0:00 > /usr/sbin/apache2 -k start > asterisk 27362 0.0 0.5 24784 4128 ? S Jun24 0:00 > /usr/sbin/apache2 -k start > asterisk 24866 0.0 0.4 24784 3608 ? S 10:53 0:00 > /usr/sbin/apache2 -k start > root 24942 0.0 0.0 3004 700 pts/0 S+ 10:54 0:00 grep > apache > > > Yeah, check your vhosts file or whereever freepbx is setting up its > host. I may be redefining its own log file location. > > ~jh > > > -------- Original Message -------- > Subject: Re: [tclug-list] having some issues getting freepbx set up > in apache2 correctly > Date: Mon, 25 Jun 2012 08:15:20 -0500 > From: Scott Berry > Reply-To: scottbb1973 at gmail.com > To: John Hawley > > > > John, > > I did get the error.log file down please see attached file. Anyone who > looks at it will need the 24th logs. Also I am doing this under a > virtual host so please let me know if you nejed to see "vhost.conf" I > can provide if needed. Thanks much for the help. > > On 6/24/2012 10:02 PM, John Hawley wrote: > > could check "/etc/apache2/envvars" for where APACHE_LOG_DIR > > environment variable is defined to point to. > > Otherwise that could be overridden by any vhosts config. > > > > Run "apache2ctl configtest" to check for errors in the config file. > > > > On 06/24/2012 07:23 PM, Scott Berry wrote: > >> > >> > >> Right that's what I had thought. I don't see an error log posted in: > >> "/var/log/apache2" at all. > >> > >> > > > -- > Scott Berry > Msn:electronicman1960 at gmail.com > Skype me at: scottbb1973 > > -- Have a beautiful day Scott Berry Msn: electronicman1960 Skype me at: scottbb1973 E-mail: scottbb1973 at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From austad at signal15.com Tue Jun 26 16:10:20 2012 From: austad at signal15.com (Jay Austad) Date: Tue, 26 Jun 2012 16:10:20 -0500 Subject: [tclug-list] Security consultants Message-ID: <3E4A9648-F569-457A-BFED-3724A708A859@signal15.com> I know it's been awhile since I've posted here. We're looking for security consultants, I have 13 positions open. I know a lot of you guys have experience with some of the products we deal with, and as a bonus you've all got some unix experience. If you, or someone you know is interested, shoot me your resume. I copied the job posting below. We have an office in St. Paul, but we'll consider anyone who has the right skill and is within reasonable distance from an airport. -- ~jay Overview: This is a consulting position requiring project oriented experience and a technical background in security and networking fundamentals. This position provides the opportunity to participate in multiple areas of the consulting role such as pre-sales, requirements collection, scope design and execution of implementation services as well as creation of project specific documents. Travel out of the local area will vary and is expected. Responsibilities: ? Provide on-site implementation and consulting services for the security products / services that FNS represents, including, but not limited to Check Point, Juniper, Secure Computing, F5, McAfee, Blue Coat, and others as listed in required experience ? Provide leadership by aiding in product research, following up on open issues and acting as an escalation of contact. ? Assist Team Leader with day to day issues as they relate to Engineering engagements. ? Communicate critical client issues to management and/or escalation engineering staff. ? Provide weekly reports of Engineering activity as defined by management. ? Assist other Engineering or Support Center staff with lab systems configurations to replicate client issues. ? Assist in the creation of client systems profiles and Statements of Work (SoW) using Microsoft desktop applications. (Visio, Word, Excel, Access, etc?) ? May be required to be on-call after hours and weekends on a rotating basis. ? Will act as front-line point of escalation on assigned client engagements. ? Maintain technical knowledge and troubleshooting skills on the FNS supported products and services. ? Will be dispatched to customer sites to assist and/or facilitate repair or installation of supported products. Qualifications: REQUIRED EXPERIENCE/EDUCATION Applicant should have 3-5 years of deployment, support, and consulting experience in two or more of the following products: ? F5: ASM, LTM, GTM ? Palo Alto: Any products ? SourceFire: Any products ? Checkpoint: Any Products Applicant will also have excellent verbal and communication skills and be able to work in a highly motivated and quick moving work environment. PREFERRED SKILLS/KNOWLEDGE ? Candidates must be proficient with FNS supported products, have extensive desktop/networking experience, application software experience and be proficient with Microsoft and UNIX/Linux based operating systems. ? Candidates must also be willing to work with minimal supervision to accomplish the assigned tasks. ? Working knowledge of Internetworking, knowledge of I/P routing and configurations, experience with networking, network design, along with previous security systems experience is required for success. ? Extensive knowledge of security products such as Authentication, Firewalls, Intrusion Detection and Prevention Systems, and a variety of other related security technologies. ? Additional technology experience that is preferred: ? Aruba: Any products ? Blue Coat: Any Products ? Juniper: Any Products Excellent written and verbal communications skills Other duties as assigned by management MINIMUM REQUIREMENTS Applicant should have 3-5 years of deployment, support, and consulting experience in two or more of the following products: ? F5: ASM, LTM, GTM ? Palo Alto: Any products ? SourceFire: Any products ? Checkpoint: Any Products Applicant will also have excellent verbal and communication skills and be able to work in a highly motivated and quick moving work environment. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4789 bytes Desc: not available URL: From goeko at Goecke-Dolan.com Mon Jun 25 19:06:09 2012 From: goeko at Goecke-Dolan.com (Brian) Date: Mon, 25 Jun 2012 19:06:09 -0500 Subject: [tclug-list] Eucalyptus (Cloud Computing) @Penguins Unbound June 30th Message-ID: <4FE8FCF1.4010303@Goecke-Dolan.com> This months PenguinsUnbound.com meeting will be Saturday June 30th at TIES, 1667 Snelling Ave. N., St. Paul, MN 55108 from 10:00am to 12:00pm (See the web site http://www.penguinsunbound.com for directions and more info.) At this months Penguins Unbound Linux meeting: Eucalyptus (Cloud Computing) David Federlein is a Technical Support Engineer/Technical Account Manager for Eucalyptus Systems which provides IT organizations and technology businesses with the most widely deployed cloud software platform for on-premise Infrastructure as a Service (IaaS). David will talk in general about Cloud technologies and concepts, as well as Eucalyptus functionality and design, such as industry-standard Amazon Web Services (AWS) cloud APIs, and all major virtualization platforms. Time allowed, David will also discuss practical concepts for development for and deployment of this type of IaaS design in modern data centers. I hope to see you there! ==>brian. *** STREAMING *** If you can't make it you can use this url to stream the meeting. mms://rss2000.video.ties2.net:1800 You should be able to connect with either: mplayer mms://rss2000.video.ties2.net:1800 or vlc http://rss2000.video.ties2.net:1800 From andyschmid at gmail.com Thu Jun 28 19:08:58 2012 From: andyschmid at gmail.com (Andy Schmid) Date: Thu, 28 Jun 2012 19:08:58 -0500 Subject: [tclug-list] For Sale: Various computer items - Cleaning house In-Reply-To: References: Message-ID: Hi, Sorry for the spam, but I just wanted to update some things I'm dropping the price of the 4U rackmount server/chassis to $100 for the system. The case was $80 new, has 500watt psu and the mobo/proc/ram is a couple years old. I can provide a more detailed parts list if interested. > * 4U rack mount server (great for a media server, lots of HDD slots). > Comes with motherboard w/ onboard NVIDIA gfx, AMD dual core processor, > 2gig ram, 500 watt PSU. ?This is a pretty decent PC, just needs a boot > drive - ?$150 Also, I'm willing to let the text books go for free to a good home. They should interest any computer science student/enthusiast. -Andy On Sat, Jun 23, 2012 at 12:05 AM, Andy Schmid wrote: > It's that time of year again, I?m cleaning out my closet and have some > computer stuff for sale. ?Please let me know at andyschmid at gmail.com > if you are interested in any of the following: > > * Sprint Evo4g Android phone, bootloader unlocked & rooted. ?Comes > with docking charger - $100 > > > * NVIDIA Geforce 9600GT FANLESS dual DVI PCIe gfx card - $25 > > * M-Audio Firewire Solo audio recording interface (works with jack in > linux!) - $65 > > * iMo Touch 7? USB Sub-Monitor with touchscreen - Add an external > display via USB with touch input capability (also works in linux) - > $50 > > * Antec 430W True Power PSU - $15 > > * D-Link DI-524 wireless G router - $5 > > * IOGear GPSU21 Print Server - $5 > > * CSCI TextBooks (make an offer, they are all old editions): > Statistics for Engineers and Scientists - 1st ed > Discrete Mathematics - 6th ed > Differential Equations & Linear Algebra - 1st ed > Numerical Mathematics and Computing - 5th ed > Data Structures and Abstractions with Java - 1st ed > Linux For Dummies > Programming Languages Concepts & Constructs - 2nd ed > Modern Operating Systems - 2nd ed > Computer Systems A Programmers Perspective - 1st ed > > * Free Bin: > 2 10/100 PCI ethernet cards > NVIDIA 7900 GS gfx card (not sure if its good or not) > Firewire PCI adapter card > 160GB and 320GB WD IDE harddrives > Programmable LED display > DVD-RW IDE drive > > I can provide pictures and/or more information if desired. ?Thanks! From goeko at Goecke-Dolan.com Fri Jun 29 09:05:23 2012 From: goeko at Goecke-Dolan.com (Brian Dolan-Goecke) Date: Fri, 29 Jun 2012 09:05:23 -0500 Subject: [tclug-list] *Tomorrow* Eucalyptus (Cloud Computing) @Penguins Unbound June 30th Message-ID: <4FEDB623.4060602@Goecke-Dolan.com> This months PenguinsUnbound.com meeting will be Saturday June 30th at TIES, 1667 Snelling Ave. N., St. Paul, MN 55108 from 10:00am to 12:00pm (See the web site http://www.penguinsunbound.com for directions and more info.) At this months Penguins Unbound Linux meeting: Eucalyptus (Cloud Computing) David Federlein is a Technical Support Engineer/Technical Account Manager for Eucalyptus Systems which provides IT organizations and technology businesses with the most widely deployed cloud software platform for on-premise Infrastructure as a Service (IaaS). David will talk in general about Cloud technologies and concepts, as well as Eucalyptus functionality and design, such as industry-standard Amazon Web Services (AWS) cloud APIs, and all major virtualization platforms. Time allowed, David will also discuss practical concepts for development for and deployment of this type of IaaS design in modern data centers. I hope to see you there! ==>brian. *** STREAMING *** If you can't make it you can use this url to stream the meeting. mms://rss2000.video.ties2.net:1800 You should be able to connect with either: mplayer mms://rss2000.video.ties2.net:1800 or vlc http://rss2000.video.ties2.net:1800 From jhsu802701 at jasonhsu.com Fri Jun 29 15:44:28 2012 From: jhsu802701 at jasonhsu.com (Jason Hsu) Date: Fri, 29 Jun 2012 15:44:28 -0500 Subject: [tclug-list] Android app: Upgrade Your Cereal Message-ID: <20120629154428.6488c00909e65508b13b6bfe@jasonhsu.com> I recently published my first Android app Upgrade Your Cereal. If you're trying to lose weight, lower your blood cholesterol, eat healthier, or get your kids to eat healthier, then this fun little app is for you. Just select one of the listed cereals and then hit the Submit button to see a superior alternative and a funny slogan for it. You'll never be able to look at Tony the Tiger, the Trix rabbit, or other cereal mascots the same way again. For example, one of the possible responses if you pick Lucky Charms is "Shredded Wheat with fruit is magically delicious!" Upgrade Your Cereal is available for free on Google Play at https://play.google.com/store/apps/details?id=com.jasonhsu.upgradeyourcereal . -- Jason Hsu From woodbrian77 at gmail.com Sat Jun 30 12:23:26 2012 From: woodbrian77 at gmail.com (Brian Wood) Date: Sat, 30 Jun 2012 12:23:26 -0500 Subject: [tclug-list] Android app: Upgrade Your Cereal Message-ID: Jason Hsu > Upgrade Your Cereal is available for free on Google Play at https://play.google.com/store/apps/details?id=com.jasonhsu.upgradeyourcereal. How does Special K rate? Upgrade your drink could be next. Mountain Dew and a lot of the energy drinks are bad for people. Sometimes people think juice is a safe alternative. Juice is probably better than Mountain Dew, but a tall glass of orange juice has tons of calories. -- Brian Wood Ebenezer Enterprises http://webEbenezer.net -------------- next part -------------- An HTML attachment was scrubbed... URL: