Re: [Tutor] Run a few Python commands from a temporary filesystem when the rootfs is halted

2011-04-22 Thread Frederick Grose
On Fri, Apr 22, 2011 at 8:55 PM, Steve Willoughby wrote: > On 22-Apr-11 17:14, Frederick Grose wrote: > >> The particulars are that I've rebuilt a Fedora LiveOS filesystem image >> from a currently running instance (incorporating the filesystem changes >> in the dev

Re: [Tutor] Run a few Python commands from a temporary filesystem when the rootfs is halted

2011-04-22 Thread Frederick Grose
On Fri, Apr 22, 2011 at 7:59 PM, Steve Willoughby wrote: > On 22-Apr-11 16:54, Frederick Grose wrote: > >> With Bash, when one needs to halt the current root filesystem, to pivot >> to a new filesystem, one can copy some of the command files and their >> dependencies to

[Tutor] Run a few Python commands from a temporary filesystem when the rootfs is halted

2011-04-22 Thread Frederick Grose
With Bash, when one needs to halt the current root filesystem, to pivot to a new filesystem, one can copy some of the command files and their dependencies to a temporary file system and execute from that code base. Is there a way to accomplish the same within a Python script? Or must I chain Pyth