From michael at jamhome.us Mon Jul 1 15:28:45 2013 From: michael at jamhome.us (Michael Rasmussen) Date: Mon, 1 Jul 2013 08:28:45 -0700 Subject: [PLUG-JOBS] Know SNMP? Want Job? Message-ID: <353b81c7a445556a9e85cee3f301492c.squirrel@jamhome.us> My ex-boss asked if "any of your Unixy friends are looking for a job?" First project would be getting fully up to speed on Tivoli Network Manager, formerly known as Netcool Omnibus. You'd be the primary backup for the lead on this project. Once that was complete the role would expand to lead or backup for other network and enterprise management platforms. The job would be at U.S. Bank's Columbia Center location. Please reply off list for more information. Yes, I'll get a referral bonus if things work out. I've been at U.S. Bank for several years and can attest to it being a good employer. -- Michael Rasmussen Be Appropriate && Follow Your Curiosity From mconnors1 at gmail.com Tue Jul 2 22:59:53 2013 From: mconnors1 at gmail.com (Mike C.) Date: Tue, 2 Jul 2013 15:59:53 -0700 Subject: [PLUG-JOBS] File system space troubles Message-ID: In an attempt to install hp printer software on my friend's Debian box I ran into an unexpected problem that I don't know how to solve. I'm seeing this messages when I try to use tab complete: "cat /etbash: cannot create temp file for here-document: No space left on device bash: cannot create temp file for here-document: No space left on device" and when I try to login as root to a directory in thunar file manager I get an error about not enough space to copy the user's xauthorization file. It's fairly obvious what the problem is: bikejunkie at penguin:/$ df -h Filesystem Size Used Avail Use% Mounted on rootfs 9.2G 9.2G 0 100% / udev 10M 0 10M 0% /dev tmpfs 803M 724K 803M 1% /run /dev/disk/by-uuid/edf54f42-ce8d-4a9d-be11-44e71f338f46 9.2G 9.2G 0 100% / tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 4.8G 1.4M 4.8G 1% /run/shm /dev/sda6 434G 208G 205G 51% /home pr However, the obstacle to solving this problem is that I can't seem to get a useful listing of current file space utilization from either Thunar nor command line so that I can determine what to move or delete. I found a few files in the /tmp directory that were a few hundred MBs. Is there a better gui tool or command that will provide a better break-out of files and their space usage? Thanks in advance for any advice/recommendations. Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From scfrd1 at gmail.com Tue Jul 2 23:11:16 2013 From: scfrd1 at gmail.com (Steve Cayford) Date: Tue, 2 Jul 2013 16:11:16 -0700 Subject: [PLUG-JOBS] File system space troubles In-Reply-To: References: Message-ID: I usually start with "du -cks /* | sort -n" and then into directories as needed. 2013/7/2 Mike C. : > In an attempt to install hp printer software on my friend's Debian box I ran > into an unexpected problem that I don't know how to solve. > > I'm seeing this messages when I try to use tab complete: > > "cat /etbash: cannot create temp file for here-document: No space left on > device > bash: cannot create temp file for here-document: No space left on device" > > and when I try to login as root to a directory in thunar file manager I get > an error about not enough space to copy the user's xauthorization file. > > It's fairly obvious what the problem is: > > bikejunkie at penguin:/$ df -h > Filesystem Size Used Avail > Use% Mounted on > rootfs 9.2G 9.2G 0 > 100% / > udev 10M 0 10M > 0% /dev > tmpfs 803M 724K 803M > 1% /run > /dev/disk/by-uuid/edf54f42-ce8d-4a9d-be11-44e71f338f46 9.2G 9.2G 0 > 100% / > tmpfs 5.0M 0 5.0M > 0% /run/lock > tmpfs 4.8G 1.4M 4.8G > 1% /run/shm > /dev/sda6 434G 208G 205G > 51% /home > pr > > However, the obstacle to solving this problem is that I can't seem to get a > useful listing of current file space utilization from either Thunar nor > command line so that I can determine what to move or delete. > > I found a few files in the /tmp directory that were a few hundred MBs. > > Is there a better gui tool or command that will provide a better break-out > of files and their space usage? > > Thanks in advance for any advice/recommendations. > > Mike > > > > _______________________________________________ > PLUG-jobs mailing list > PLUG-jobs at lists.pdxlinux.org > http://lists.pdxlinux.org/mailman/listinfo/plug-jobs > From steven at too1337.com Tue Jul 2 23:14:25 2013 From: steven at too1337.com (Steven Susbauer) Date: Tue, 2 Jul 2013 16:14:25 -0700 Subject: [PLUG-JOBS] File system space troubles In-Reply-To: References: Message-ID: On Tue, Jul 2, 2013 at 3:59 PM, Mike C. wrote: > > Is there a better gui tool or command that will provide a better break-out > of files and their space usage? > > Thanks in advance for any advice/recommendations. > The command you're looking for is du, something like du -hs /. You could also use something like k4dirstat or Baobab (from gnome-utils). From austindschutz at gmail.com Tue Jul 2 23:31:07 2013 From: austindschutz at gmail.com (Austin Schutz) Date: Tue, 2 Jul 2013 16:31:07 -0700 Subject: [PLUG-JOBS] File system space troubles In-Reply-To: References: Message-ID: # du -mx / | sort -n -k +1 | tail -20 -m: show in megs. -x: only show the root filesystem. sort by the numeric size of the first column, show the last 20 (20 largest items on the filesystem). Austin On Tue, Jul 2, 2013 at 3:59 PM, Mike C. wrote: > In an attempt to install hp printer software on my friend's Debian box I > ran into an unexpected problem that I don't know how to solve. > > I'm seeing this messages when I try to use tab complete: > > "cat /etbash: cannot create temp file for here-document: No space left on > device > bash: cannot create temp file for here-document: No space left on device" > > and when I try to login as root to a directory in thunar file manager I > get an error about not enough space to copy the user's xauthorization file. > > It's fairly obvious what the problem is: > > bikejunkie at penguin:/$ df -h > Filesystem Size Used Avail > Use% Mounted on > rootfs 9.2G 9.2G 0 > 100% / > udev 10M 0 10M > 0% /dev > tmpfs 803M 724K 803M > 1% /run > /dev/disk/by-uuid/edf54f42-ce8d-4a9d-be11-44e71f338f46 9.2G 9.2G 0 > 100% / > tmpfs 5.0M 0 5.0M > 0% /run/lock > tmpfs 4.8G 1.4M 4.8G > 1% /run/shm > /dev/sda6 434G 208G 205G > 51% /home > pr > > However, the obstacle to solving this problem is that I can't seem to get > a useful listing of current file space utilization from either Thunar nor > command line so that I can determine what to move or delete. > > I found a few files in the /tmp directory that were a few hundred MBs. > > Is there a better gui tool or command that will provide a better break-out > of files and their space usage? > > Thanks in advance for any advice/recommendations. > > Mike > > > > _______________________________________________ > PLUG-jobs mailing list > PLUG-jobs at lists.pdxlinux.org > http://lists.pdxlinux.org/mailman/listinfo/plug-jobs > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From carlos at clanhanson.com Wed Jul 3 05:26:17 2013 From: carlos at clanhanson.com (Carlos Hanson) Date: Tue, 2 Jul 2013 23:26:17 -0600 Subject: [PLUG-JOBS] File system space troubles In-Reply-To: References: Message-ID: <8B1375E5-9132-49A3-B0BE-AA49A16C3151@clanhanson.com> You could also use a linux distro that runs from CD and mount file systems from that to deal with them. Carlos Hanson On Jul 2, 2013, at 5:31 PM, Austin Schutz wrote: > # du -mx / | sort -n -k +1 | tail -20 > > -m: show in megs. > -x: only show the root filesystem. > sort by the numeric size of the first column, > show the last 20 (20 largest items on the filesystem). > > Austin > > > On Tue, Jul 2, 2013 at 3:59 PM, Mike C. wrote: > In an attempt to install hp printer software on my friend's Debian box I ran into an unexpected problem that I don't know how to solve. > > I'm seeing this messages when I try to use tab complete: > > "cat /etbash: cannot create temp file for here-document: No space left on device > bash: cannot create temp file for here-document: No space left on device" > > and when I try to login as root to a directory in thunar file manager I get an error about not enough space to copy the user's xauthorization file. > > It's fairly obvious what the problem is: > > bikejunkie at penguin:/$ df -h > Filesystem Size Used Avail Use% Mounted on > rootfs 9.2G 9.2G 0 100% / > udev 10M 0 10M 0% /dev > tmpfs 803M 724K 803M 1% /run > /dev/disk/by-uuid/edf54f42-ce8d-4a9d-be11-44e71f338f46 9.2G 9.2G 0 100% / > tmpfs 5.0M 0 5.0M 0% /run/lock > tmpfs 4.8G 1.4M 4.8G 1% /run/shm > /dev/sda6 434G 208G 205G 51% /home > pr > > However, the obstacle to solving this problem is that I can't seem to get a useful listing of current file space utilization from either Thunar nor command line so that I can determine what to move or delete. > > I found a few files in the /tmp directory that were a few hundred MBs. > > Is there a better gui tool or command that will provide a better break-out of files and their space usage? > > Thanks in advance for any advice/recommendations. > > Mike > > > > _______________________________________________ > PLUG-jobs mailing list > PLUG-jobs at lists.pdxlinux.org > http://lists.pdxlinux.org/mailman/listinfo/plug-jobs > > > _______________________________________________ > PLUG-jobs mailing list > PLUG-jobs at lists.pdxlinux.org > http://lists.pdxlinux.org/mailman/listinfo/plug-jobs -------------- next part -------------- An HTML attachment was scrubbed... URL: From recruiter at monsooncommerce.com Fri Jul 5 01:52:28 2013 From: recruiter at monsooncommerce.com (Aimee Fahey) Date: Fri, 5 Jul 2013 01:52:28 +0000 Subject: [PLUG-JOBS] Software Engineer - Monsoon Commerce Message-ID: Hi everyone! Hi everyone, I'm hiring a Software Engineer with Javascript skills and *nix platform experience to join the growing engineering team at Monsoon Commerce here in Portland. I've included a summary of the job below and you can click HERE to access the full job posting. If you have questions, please feel free to email me. Thanks!! Monsoon Commerce is committed to building awesome cloud and server based solutions for use with the largest online marketplaces in the world, including Amazon and eBay. More than 20,000 online merchants use us - and more than 90% of them have grown sales as a result! We?re rapidly growing, privately held and hiring great people who love to learn, contribute and help our customers thrive. Click HERE to learn more about our products! Monsoon?s development team is passionate about solving complex problems and designing great applications and scalable services, and in this role, you?ll leverage your deep experience with platforms and Agile methodologies to lead the design and implementation to build and extend Monsoon?s ecommerce solutions. As our Software Engineer, you'll be working cross-functionally with Product, UX and QA utilizing your broad software development experience to help drive the collaborative development of SaaS solutions for our ecommerce customers. In this position, you will be working on a wide range of problems and environments including rich client side web applications, RESTful web services that scale, and integrating with third party services and online marketplaces. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wcooley at nakedape.cc Mon Jul 8 17:47:23 2013 From: wcooley at nakedape.cc (Wil Cooley) Date: Mon, 8 Jul 2013 10:47:23 -0700 Subject: [PLUG-JOBS] Need a job? I need help! Linux/Unix SA3 at PSU Message-ID: After one of my team was promoted, I now have an opening for a Linux/Unix sys admin 3 here at PSU. http://lnkd.in/RCYKNY To get a better sense of the technical environment, read the more complete description on our HR site: http://jobs.hrc.pdx.edu/applicants/Central?quickFind=52598 Also, one of the teams that we work closely with is hiring a JEE/middleware/WebLogic admin: http://lnkd.in/ch9TBW Thanks! Wil From plugng3 at martinconsulting.com Thu Jul 11 17:41:00 2013 From: plugng3 at martinconsulting.com (Brian Martin) Date: Thu, 11 Jul 2013 10:41:00 -0700 Subject: [PLUG-JOBS] Unix/Linux/Windows System Administrator available In-Reply-To: References: Message-ID: <51DEEE2C.4080904@martinconsulting.com> Greetings, fellow Pluggers. For those of you that don't know me, I'm a contract system administrator providing part-time or occasional-need services. My real focus is on client satisfaction. I've worked with some of my clients for over 15 years, and that wouldn't happen if they didn't like my work. I commonly set up mail servers, web servers, firewalls, Samba, database servers, Windows Servers, Windows desktop machines, and various flavors of Unix systems. I write a lot of Perl and SQL, too. I've given numerous presentations at the PLUG general and Advanced Topics meetings on topics such as VMWare, Linux Containers, and professional-grade scripting. I've also spoken at OSCON, PDXDevOps, BusNix, etc. More details can be found at http://www.martinconsulting.com, and my Linked-In profile is at http://www.linkedin.com/in/brianmartinpdx. I currently have hours available that I'd like to book. If you're looking for system administration services, I'd love to talk to you. You can reach me at brian{at}martinconsulting{dot}com or 503-617-4500. -Brian Martin From will.desiervo at modis.com Tue Jul 16 21:38:44 2013 From: will.desiervo at modis.com (DeSiervo, Will) Date: Tue, 16 Jul 2013 17:38:44 -0400 Subject: [PLUG-JOBS] Unix/Linux Administrator in NE Portland Message-ID: <1CC294BE69278A49ACB26AC7C5F63ED816006A1FDA@MEUSITINFEVS01.am.adecco.net> Good afternoon PLUG, I wanted to reach out as I have a major client in NE Portland that is looking to bring aboard a Unix/Linux Administrator to manage Linux and Unix servers in an enterprise environment. This will be working heavily in a Solaris/HP-UX space in which this client is currently upgrading infrastructure and adding to their team in a large effort to improve their technology department and its efforts in supporting their business. This is a great opportunity to further one's experience with new technologies and work in an environment with room for growth and visibility. The client would prefer contract to hire but they are definitely open to a full time direct hire situation. If this is something you may be interested in please reply to this email or feel free to give me a call, 503-946-2717. Thank you, Will DeSiervo Resource Development Manager MODIS 601 SW 2nd Ave, Suite 1620 | Portland, OR 97204 Office : 503.946.2717 Email: Will.DeSiervo at Modis.com www.modis.com/itrecruitment -------------- next part -------------- An HTML attachment was scrubbed... URL: From kyle.gagliardi at jivesoftware.com Tue Jul 30 18:59:45 2013 From: kyle.gagliardi at jivesoftware.com (Kyle Gagliardi) Date: Tue, 30 Jul 2013 18:59:45 +0000 Subject: [PLUG-JOBS] NOC Linux Systems Administrator Position - Jive Software Message-ID: <79647DD495D7724D97C209131B82C7FD9A4BFA@mbx3.jiveland.com> Hey Everybody, I'm the Portland based recruiter for Jive Software and wanted to let you guys know about a position that's come up in our NOC. There's some very exciting things going on at Jive at the moment.. we've been growing very quickly (500 employees added since 2009) and are currently building out a world wide data center infrastructure to support our upcoming SaaS cloud platform. Most of Jive's hosted operations and NOC team is based right here in Portland and we're looking for someone who will fit in well with the team. Jive is not like most companies. We are serious about changing the world. Making a difference. And having a lot of fun in the process. If you just want a job, Jive is not for you. But if you want your next career move to be a life-defining experience, then Jive will feel like home. We're looking for people who are wicked smart, passionate, fun, innovative, collaborative, courageous, social results producers and rainmakers. Here's a link to the job description: http://hire.jobvite.com/j/?cj=o3wGXfwW&s=plug I'll be at the event on Thursday! See you there! Kyle Gagliardi, PHR Jive Software | Talent Partner 915 SW Stark, Suite 400 | Portland, OR 97205 o 503-575-4417 | f 503-296-2312 http://www.jivesoftware.com -------------- next part -------------- An HTML attachment was scrubbed... URL: