Sponsored Content
Full Discussion: Linux router help needed
Top Forums UNIX for Beginners Questions & Answers Linux router help needed Post 302996186 by apoklyps3 on Friday 21st of April 2017 06:19:01 AM
Old 04-21-2017
thanks guys.
I have managed to unpack the firmware , though it seems kinda risky to pack it back and try to flash it.
any other way I could make squashfs read /etc from another location (ex usb) instead of the default one?
 

3 More Discussions You Might Find Interesting

1. IP Networking

Linux Router?

I am trying to set up a linux box as a router, but I am a little confused on how to do this. I am using Red Hat 9.0 on a machine that has 2 nic cards. Also, I am using a DSL pppoe connection. I have installed rp-pppoe and I am connected to the internet via the pseudo pppoe interface. I have... (1 Reply)
Discussion started by: cstovall
1 Replies

2. Cybersecurity

Help needed in IPTables firewall/router setup - Linux

HI all, I have setup IPTables firewall/Router and my home network, with address space 192.168.10.XXX Form my private network hosts, i can ping the gateway ( 192.168.10.101 ) , but the reverse is not happening. Can someone help me as of what i need to do, so that i can ping my private... (1 Reply)
Discussion started by: chandan_m
1 Replies

3. Shell Programming and Scripting

Expect script help needed- script failing if router unavailable

Hey all. Sometimes I'm tasked to change some router configs for the entire network (over 3,000 Cisco routers). Most of the time its a global config parameter so its done with a loop and an IP list as its the same configuration change for all routers. This is working OK. However, sometimes an... (3 Replies)
Discussion started by: mrkz1974
3 Replies
MooseX::Storage::Basic(3)				User Contributed Perl Documentation				 MooseX::Storage::Basic(3)

NAME
MooseX::Storage::Basic - The simplest level of serialization SYNOPSIS
package Point; use Moose; use MooseX::Storage; our $VERSION = '0.01'; with Storage; has 'x' => (is => 'rw', isa => 'Int'); has 'y' => (is => 'rw', isa => 'Int'); 1; my $p = Point->new(x => 10, y => 10); ## methods to pack/unpack an ## object in perl data structures # pack the class into a hash $p->pack(); # { __CLASS__ => 'Point-0.01', x => 10, y => 10 } # unpack the hash into a class my $p2 = Point->unpack({ __CLASS__ => 'Point-0.01', x => 10, y => 10 }); # unpack the hash, with insertion of paramaters my $p3 = Point->unpack( $p->pack, inject => { x => 11 } ); DESCRIPTION
This is the most basic form of serialization. This is used by default but the exported "Storage" function. METHODS
pack ([ disable_cycle_check = 1])> Providing the "disable_cycle_check" argument disables checks for any cyclical references. The current implementation for this check is rather naive, so if you know what you are doing, you can bypass this check. This trait is applied on a perl-case basis. To set this flag for all objects that inherit from this role, see MooseX::Storage::Traits::DisableCycleDetection. unpack ($data [, insert = { key => val, ... } ] )> Providing the "insert" argument let's you supply additional arguments to the class' "new" function, or override ones from the serialized data. Introspection meta BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. AUTHOR
Chris Prather <chris.prather@iinteractive.com> Stevan Little <stevan.little@iinteractive.com> COPYRIGHT AND LICENSE
Copyright 2007-2008 by Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.2 2012-02-28 MooseX::Storage::Basic(3)
All times are GMT -4. The time now is 02:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy