HackRF

2012-10-22 Thread Lisa Kachold
Anyone running anything like HackRF? https://github.com/mossmann/hackrf If so, what hardware? Reference: http://threatpost.com/en_us/blogs/hackrf-jawbreaker-could-bring-low-cost-wireless-hacking-masses-102212?utm_source=Newsletter_102212utm_medium=Email+Marketingutm_campaign=NewsletterCID=CID=

Re: 4kbyte sectors on new disks

2012-10-22 Thread Lisa Kachold
Hi Michael, On Fri, Oct 19, 2012 at 5:07 PM, Michael Butash mich...@butash.net wrote: I was curious if anyone else is using the new 4096 byte drives vs. the old/standard-for-ever disks effectively under linux? I've bought almost exclusively hitachi drives for years, but as far as smart

cut for compromised boxen?

2012-10-22 Thread der.hans
moin moin, Should Cisco get part of the rental fee? http://arstechnica.com/security/2012/10/cisco-machine-gets-listed-by-blackhat-org-that-rents-out-hacked-pcs/ ciao, der.hans -- # http://www.LuftHans.com/http://www.LuftHans.com/Classes/ # If I want my children to work hard, I

Re: cut for compromised boxen?

2012-10-22 Thread Lisa Kachold
Hans, This type of insecurity is rampant in all arenas of Internet accessible mismanaged networks or mis-implemented systems. It's not just Micro$not; it's not just the startups or the non-technical; interestingly it is historically this bad, and simply continues despite our forward race down

Re: usage tracking

2012-10-22 Thread Derek Trotter
On 10/20/2012 9:50 AM, Lisa Kachold wrote: Hi Derek, On Sat, Oct 20, 2012 at 8:38 AM, Derek Trotter expat.arizo...@gmail.com mailto:expat.arizo...@gmail.com wrote: My ISP imposes a monthly quota. If the total amount of data I download and upload exceeds that quota I get billed

diff question

2012-10-22 Thread Eric Cope
Hi all, I am trying to diff between two sets of files. I want to ignore comments (lines that start with //). I've tried - diff -I // file1 file2 - diff -I \/\/ file1 file2 - diff -I //.* file1 file2 among others. Has anyone successfully used diff and its ignore option? Thanks, Eric

Re: diff question

2012-10-22 Thread Brian Cluff
If you want to kill lines that start with // then you need to anchor it to the beginning of the line with ^. If you want to also get comments that start with spaces or tabs you can also add \s to match white space followed by a * to match 0 or more occur aces of white space. So the line you

Re: Chase access w/ linux

2012-10-22 Thread JD Austin
I do have where it wants me to get an email and put in a code but otherwise no issues. I think I use the latest Firefox; if not the latest chrome. On Mon, Oct 22, 2012 at 2:35 PM, Robert Holtzman hol...@cox.net wrote: Anyone in the group have an account with Chase? If so, are you having any

Re: diff question

2012-10-22 Thread Eric Cope
I was reading some docs and it mentioned that this only works if the comment is in both files. can you confirm? On Mon, Oct 22, 2012 at 2:36 PM, Brian Cluff br...@snaptek.com wrote: If you want to kill lines that start with // then you need to anchor it to the beginning of the line with ^. If

Re: Chase access w/ linux

2012-10-22 Thread joe
Anyone in the group have an account with Chase? If so, are you having any problems logging in while running Linux? I have several Chase accounts and no problem logging in from my Linux systems. --- PLUG-discuss mailing list -

Re: diff question

2012-10-22 Thread Joseph Sinclair
I assume what you really want is to ignore all comment lines completely (not just changes to comment lines). Diff won't do this directly, but that's what [named] pipes are for :) try this: diff (grep -v '^//' file1) (grep -v '^//' file2) On 10/22/2012 01:59 PM, Eric Cope wrote: Hi all, I am

Chase access w/ linux

2012-10-22 Thread R P Herrold
On Mon, 22 Oct 2012, Robert Holtzman wrote: Anyone in the group have an account with Chase? If so, are you having any problems logging in while running Linux? They've moved the password box since the last time I logged in (previously it was stacked, now it is side by side) but no problems

Re: diff question

2012-10-22 Thread Eric Cope
yes, thats exactly what I was looking for!!! Thanks! Eric On Mon, Oct 22, 2012 at 4:24 PM, Joseph Sinclair plug-discuss...@stcaz.netwrote: I assume what you really want is to ignore all comment lines completely (not just changes to comment lines). Diff won't do this directly, but that's what

Re: diff question -- Thanks!

2012-10-22 Thread joe
Thanks Joseph. I *really* appreciate tips like this. Tremendously helpful! - Joseph Sinclair wrote: I assume what you really want is to ignore all comment lines completely (not just changes to comment lines). Diff won't do this directly, but that's what [named] pipes are

Re: Chase access w/ linux

2012-10-22 Thread Robert Holtzman
On Mon, Oct 22, 2012 at 02:42:59PM -0700, JD Austin wrote: I do have where it wants me to get an email and put in a code but otherwise no issues. I think I use the latest Firefox; if not the latest chrome. Thanks to JD, joe, and R P. That blows my theory. 3 computers, 2 operating systems, 2

Re: Chase access w/ linux

2012-10-22 Thread Matt Graham
From: Robert Holtzman 3 computers, 2 operating systems, 2 versions of Firefox, 1 of iceweasel and 1 of Chrome all give me the same problem after trying to log into my account, a blank white screen with a rotating throbber and the message along the bottom Read mfasa.chase.com. Any extensions

Re: Question about linux and AMD based chipsets/onboard raid

2012-10-22 Thread James Crawford
Question, Is the video one of the older/non supported AMD chipsets (HD 4000 and older)? Are you using Catalyst driver? If yes to both then see http://www.unixmen.com/ubuntu-12-10-and-amd-catalyst-problem-solved/ It sounds like this may be what you are running into. James C.

Re: Question about linux and AMD based chipsets/onboard raid

2012-10-22 Thread Stephen
No onboard/AMD video. Just the 550ti nvidia gpu On Oct 22, 2012 7:32 PM, James Crawford jre...@gmail.com wrote: Question, Is the video one of the older/non supported AMD chipsets (HD 4000 and older)? Are you using Catalyst driver? If yes to both then see

Re: diff question -- Thanks!

2012-10-22 Thread Lisa Kachold
Yes, I have to second that! Having Joseph's great command line fu, etc. is one of the best things about this LIST! On Mon, Oct 22, 2012 at 4:50 PM, j...@actionline.com wrote: Thanks Joseph. I *really* appreciate tips like this. Tremendously helpful! - Joseph Sinclair

Re: usage tracking

2012-10-22 Thread Derek Trotter
I managed to solve my problem. Today someone told me about an app called Darkstat http://unix4lyfe.org/darkstat/ It's in the ubuntu repository and it monitors eth0 right out of the box. It gives you stats for the last minute, hour, day and 30 days. On 10/20/2012 10:16 AM, Joseph Sinclair