LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Blogs
User Name
Password

Notices


Old

Devil in the details.

Posted 03-29-2015 at 12:03 PM by peonuser

Was trying to get a list of systems up on the network. Pingall.sh would not work at all. It was driving me nuts. So I went to another system and it worked.

$ cat pingall.sh
a=""
for i in {1..254}
do
ping 192.168.1.$i -c1 -w1 -v | grep "icmp_seq=1"
done

$ ./pingall.sh
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.623 ms
64 bytes from 192.168.1.32: icmp_seq=1 ttl=64 time=0.113 ms
64 bytes...
Member
Posted in Uncategorized
Views 1426 Comments 0 peonuser is offline
Old

Network ports.

Posted 02-12-2015 at 08:38 PM by peonuser

Our goal here to see what is live on the network and how possibly vunerable those machines are. Might be interesting to use with a wifi network.

First lets get the live systems at the moment. You will need to change your code depending on your network,

alive.sh
Code:
 #!/bin/bash
rm goodips
is_alive_ping()
{
  ping -c 1 $1 > /dev/null
  [ $? -eq 0 ] && echo $i >> goodips
}

for i in 192.168.1.{1..255}
...
Member
Posted in Uncategorized
Views 1363 Comments 0 peonuser is offline
Old

Pogoplug does linux.

Posted 12-26-2014 at 05:04 PM by peonuser
Updated 12-29-2014 at 03:15 PM by peonuser

A 486 laptop running floppy based Pitux linux connected via rs232 to a Pogoplug v2 running Arch linux. Knew I would find a use for that old laptop yet.

http://4.bp.blogspot.com/-85itCuMmfs...0/SUNP0039.JPG
Member
Posted in Uncategorized
Views 1562 Comments 0 peonuser is offline
Old

Microsoft below the surface.

Posted 12-24-2014 at 03:17 PM by peonuser

Microsoft Surface is just another touchpad. Why not get a generic touch pad for a fraction of the cost that will virtually do the same thing.

Member
Posted in Uncategorized
Views 1434 Comments 0 peonuser is offline
Old

C conversion.

Posted 12-22-2014 at 01:44 AM by peonuser

The main thing we did was to add a substitution for get(ch) and clrscr();

Original code:
#include<stdio.h>
void main()
{
int n,d=0,j,a[9];
clrscr();
printf("Enter the Integer which u want to Convert Decimal to Binary : ");
scanf("%d",&n);
while(n>0)
{
a[d]=n%2;
n=n/2;
...
Member
Posted in Uncategorized
Views 1332 Comments 0 peonuser is offline

  



All times are GMT -5. The time now is 02:06 PM.

Main Menu
Advertisement
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration