Re: [PLUG] question on Mozilla Firefox holding up Yast2 system admin program

2017-02-23 Thread Tom
If I understand you correctly, you have done following:
1. Opened gnome terminal
2. Started Firefox by typing: firefox
3. You tried to start yast2 from the same terminal by typing: yast2
And nothing happened - Am I right?
If yes, then try to start firefox and yast2 as background processes by
adding & to the end of your command lines - like this:
firefox &
yast2 &
That way the commands will not block your terminal from executing
further commands.
Does that help?
Tomas
On Thu, 2017-02-23 at 09:57 -0800, logical american wrote:
> On 2/22/2017 10:38 PM, Tom wrote:
> > Can you describe what do you mean? How is Firefox  blocking Yast2?
> > Are you:
> > a) Downloading some one-click package from OBS expecting Firefox to
> > start Yast2?
> > b) Starting Yast2 from command line and something tells you that
> > Firefox prevents it from running?
> sorry about being too terse.
> 
> I was starting Yast2 from the command line, in one gnome terminal 
> window, but I had another firefox window open already.
> 
> I was totally surprised, when firefox blocked the CLI command from 
> executing.
> 
> - Randall
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Running a Python application in the background

2017-02-23 Thread Thomas Groman
If your going to learn a new terminal multiplexer; make it TMUX. TMUX is
like screen but is a little more featured, less conflicting key
sequences, multi-user support, and more actively developed.


On 02/23/2017 07:59 PM, Tom wrote:
> I'd second the use of screen as that will allow you to reconnect with
> the shell where you started the command should you need it.
> Another alternative to nohup I often use: at -f commandToRun now
> The dependency is to start atd.service
> The advantages to nohup that is that you will get the command's output
> by email, so that you can check the success/failure and what happened.
> Another good thing is that you can start your command with delay or at
> certain time/date if needed.
> Tomas
> On Thu, 2017-02-23 at 19:29 -0800, Galen Seitz wrote:
>> On 02/23/17 19:18, Rich Shepard wrote:
>>>A hydrologic model I need to run has an estimated completion
>>> time almost 4
>>> days in the future so I start it in the background by appending '&'
>>> to the
>>> command line.
>>>
>>>The problem is when I log out of the system and log in as root
>>> that
>>> process (actually, there are 3 processes running, one with status
>>> Rl the
>>> others as S (suspended).
>>>
>>>Is there an alternative way to have a program keep running after
>>> the user
>>> invoking it logs off?
>> Traditionally this was done using nohup, but screen is probably a
>> better
>> choice.
>>
>> 
>> (not *the* definitive link, just the first one that seemed to cover
>> what
>> you were asking)
>>
>> galen
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] "Installing" the Debian installer - How?

2017-02-23 Thread Tom
Please see my comments inline...
On Thu, 2017-02-23 at 06:07 -0600, Richard Owlett wrote:
> On 02/23/2017 02:36 AM, Tom wrote:
> > > > As about your direct ISO file usage - Please realize that .iso
> > > > is
> > > > disk
> > > > image file format, not a file system where you can access and
> > > > execute
> > > > individual files.
> > > 
> > > That basically was the point of my post.
> > > Perhaps my subject line could have been "How to translate iso
> > > -hybrid
> > > to extN?"
> > > That phraseology has its own problems. HOWEVER, phrasing it that
> > > way
> > > reminds me
> > > of an {on the surface} unrelated thread from ~2 years ago on
> > > another
> > > forum. It
> > > may not yield a solution to my current problem but should give me
> > > guidance to
> > > better question. There will be a delay there are 150+ messages to
> > > review :}
> > > 
> > > 
> > You mount .iso through loop device and copy/rsync the content. Here
> > is
> > and example:
Following command will mount your iso file named: fileName.iso to /mnt
directory. If you look into /mnt, you will see the content of the .iso
file as if you would burn it to CD/DVD and mount it. If you want to
copy the content to an empty partition for further work or booting, you
will need to create, format and mount it as destinationDir.
> > sudo mount -o loop fileName.iso /mnt
> > 

following command will recursively copy the content of the iso file 
 into destinationDir and preserve the file timestamps. the rsync
command is an alternative to cp which works incrementally and/or if you
want to see progress.
> > cp -pr /mnt/* destinationDir/
> > # or: rsync -a --progress /mnt/* destinationDir/
> > 

Following command will unmount the .iso file from /mnt whne you are
done with using it.
> > sudo umount /mnt
> > If you want to make this bootable, copy the content to empty disk
> > partition, make it bootable by grub2.
> > Ubuntu CDs/DVDs typically use combination of Syslinux and Grub2
> > selected by BIOS/UEFI respectively to boot from the media:
> > 
http://www.syslinux.org/wiki/index.php?title=Install
> > 
> > I hope it helps,
> > Tomas
> > 

> 
> 
> Yes, but perhaps not in expected ways ;/
> For example, I could read and but not really grok your code example. It 
> prompted me to spend a productive hour in man pages. That may lead to a 
> solution for some problems totally unrelated to this thread.
> 
> 
http://www.syslinux.org/wiki/index.php?title=Install#ISOLINUX ties 
>  ties 
> together this thread with some problems/symptoms with attempting to use 
> debootstap for "my goals" 
> (https://lists.debian.org/debian-user/2017/02/msg00871.html).
> ).
> 
> 
> 
> 
> ___
> PLUG mailing list
> 
PLUG@lists.pdxlinux.org> 
http://lists.pdxlinux.org/mailman/listinfo/plug> 
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Running a Python application in the background

2017-02-23 Thread Tom
I'd second the use of screen as that will allow you to reconnect with
the shell where you started the command should you need it.
Another alternative to nohup I often use: at -f commandToRun now
The dependency is to start atd.service
The advantages to nohup that is that you will get the command's output
by email, so that you can check the success/failure and what happened.
Another good thing is that you can start your command with delay or at
certain time/date if needed.
Tomas
On Thu, 2017-02-23 at 19:29 -0800, Galen Seitz wrote:
> On 02/23/17 19:18, Rich Shepard wrote:
> >A hydrologic model I need to run has an estimated completion
> > time almost 4
> > days in the future so I start it in the background by appending '&'
> > to the
> > command line.
> > 
> >The problem is when I log out of the system and log in as root
> > that
> > process (actually, there are 3 processes running, one with status
> > Rl the
> > others as S (suspended).
> > 
> >Is there an alternative way to have a program keep running after
> > the user
> > invoking it logs off?
> 
> Traditionally this was done using nohup, but screen is probably a
> better
> choice.
> 
> 
> (not *the* definitive link, just the first one that seemed to cover
> what
> you were asking)
> 
> galen
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Running a Python application in the background

2017-02-23 Thread brooks

Take a look at nohup (man nohup).

On Thu, 23 Feb 2017, Rich Shepard wrote:

>   A hydrologic model I need to run has an estimated completion time almost 4
> days in the future so I start it in the background by appending '&' to the
> command line.
>
>   The problem is when I log out of the system and log in as root that
> process (actually, there are 3 processes running, one with status Rl the
> others as S (suspended).
>
>   Is there an alternative way to have a program keep running after the user
> invoking it logs off?
>
> Rich
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Running a Python application in the background

2017-02-23 Thread Galen Seitz
On 02/23/17 19:18, Rich Shepard wrote:
>A hydrologic model I need to run has an estimated completion time almost 4
> days in the future so I start it in the background by appending '&' to the
> command line.
> 
>The problem is when I log out of the system and log in as root that
> process (actually, there are 3 processes running, one with status Rl the
> others as S (suspended).
> 
>Is there an alternative way to have a program keep running after the user
> invoking it logs off?

Traditionally this was done using nohup, but screen is probably a better
choice.


(not *the* definitive link, just the first one that seemed to cover what
you were asking)

galen
-- 
Galen Seitz
gal...@seitzassoc.com
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Running a Python application in the background

2017-02-23 Thread Rich Shepard
   A hydrologic model I need to run has an estimated completion time almost 4
days in the future so I start it in the background by appending '&' to the
command line.

   The problem is when I log out of the system and log in as root that
process (actually, there are 3 processes running, one with status Rl the
others as S (suspended).

   Is there an alternative way to have a program keep running after the user
invoking it logs off?

Rich
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Seeking opinion on new century link 1G install

2017-02-23 Thread John Meissen

joh...@gmx.com said:
> The 1 GB service is $70 a month, plus 3.99 for a 'recovery fee,' whatever that
> is, and installation is free. And I opted to lease the modem for the time
> being, so the total comes to $83.97, less $9.99 after I get my own modem.
> Installation is Tuesday 2/28.

Is that a promotional price? If so, what's the term and what's the normal 
price? 



___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Seeking opinion on new century link 1G install

2017-02-23 Thread John Jason Jordan
On Sat, 28 Jan 2017 21:52:14 -0800
John Jason Jordan  dijo:

>On Sat, 28 Jan 2017 20:46:13 -0800
>Michael Rasmussen  dijo:
>
>>All in all I'm very happy with the switch from Comcast to
>>CenturyLink. If you live in Portland and go to the CL store to place
>>your order you can currently get free installation, free setup, and a
>>screaming great price. You do need to sign up on a two year contract
>>and agree to auto-billing and paperless statements.  If you don't
>>want to spend the extra $$$ for 1G, the 100Mbps service is available
>>with the same conditions for a little more than half the price.
>>This deal is certainly available to anyone who had those CenturyLink 
>>door to door sales folks visit.
>
>Thanks for the heads up about going to the store to get free
>installation, setup and a screaming great price. A couple weeks ago
>their web site offered 1GB service for $130 a month, but yesterday I
>noted that it was $110 a month, always with $60 for installation.
>
>They came to my door last week and I'm planning to make the move in a
>week or two.

Alea jacta est. Today I went to the 'store' in Hollywood and signed up.
(It's not a store, there's no merchandise for sale there, but I didn't
argue with them.) The 1 GB service is $70 a month, plus 3.99 for a
'recovery fee,' whatever that is, and installation is free. And I opted
to lease the modem for the time being, so the total comes to $83.97,
less $9.99 after I get my own modem. Installation is Tuesday 2/28.

Can't wait to tell Comcast to go suck eggs.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] question on Mozilla Firefox holding up Yast2 system admin program

2017-02-23 Thread wes
On Thu, Feb 23, 2017 at 9:57 AM, logical american  wrote:

> On 2/22/2017 10:38 PM, Tom wrote:
> > Can you describe what do you mean? How is Firefox  blocking Yast2?
> > Are you:
> > a) Downloading some one-click package from OBS expecting Firefox to
> > start Yast2?
> > b) Starting Yast2 from command line and something tells you that
> > Firefox prevents it from running?
> sorry about being too terse.
>
> I was starting Yast2 from the command line, in one gnome terminal
> window, but I had another firefox window open already.
>
> I was totally surprised, when firefox blocked the CLI command from
> executing.
>
> - Randall
>

I think you're still in "too terse" territory. We are not familiar with any
way for Firefox to "block" any other application from opening. What do you
actually see when you try to open Yast2 while Firefox is already running?

And also, please confirm that opening Yast2 in this way does work when
Firefox is not running.

-wes
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] question on Mozilla Firefox holding up Yast2 system admin program

2017-02-23 Thread logical american
On 2/22/2017 10:38 PM, Tom wrote:
> Can you describe what do you mean? How is Firefox  blocking Yast2?
> Are you:
> a) Downloading some one-click package from OBS expecting Firefox to
> start Yast2?
> b) Starting Yast2 from command line and something tells you that
> Firefox prevents it from running?
sorry about being too terse.

I was starting Yast2 from the command line, in one gnome terminal 
window, but I had another firefox window open already.

I was totally surprised, when firefox blocked the CLI command from 
executing.

- Randall
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] "Installing" the Debian installer - How?

2017-02-23 Thread Richard Owlett
On 02/23/2017 02:36 AM, Tom wrote:
>>> As about your direct ISO file usage - Please realize that .iso is
>>> disk
>>> image file format, not a file system where you can access and
>>> execute
>>> individual files.
>>
>> That basically was the point of my post.
>> Perhaps my subject line could have been "How to translate iso-hybrid
>> to extN?"
>> That phraseology has its own problems. HOWEVER, phrasing it that way
>> reminds me
>> of an {on the surface} unrelated thread from ~2 years ago on another
>> forum. It
>> may not yield a solution to my current problem but should give me
>> guidance to
>> better question. There will be a delay there are 150+ messages to
>> review :}
>>
>>
> You mount .iso through loop device and copy/rsync the content. Here is
> and example:
> sudo mount -o loop fileName.iso /mnt
> cp -pr /mnt/* destinationDir/
> # or: rsync -a --progress /mnt/* destinationDir/
> sudo umount /mnt
> If you want to make this bootable, copy the content to empty disk
> partition, make it bootable by grub2.
> Ubuntu CDs/DVDs typically use combination of Syslinux and Grub2
> selected by BIOS/UEFI respectively to boot from the media:
> http://www.syslinux.org/wiki/index.php?title=Install
> I hope it helps,
> Tomas

Yes, but perhaps not in expected ways ;/
For example, I could read and but not really grok your code example. It 
prompted me to spend a productive hour in man pages. That may lead to a 
solution for some problems totally unrelated to this thread.

http://www.syslinux.org/wiki/index.php?title=Install#ISOLINUX ties 
together this thread with some problems/symptoms with attempting to use 
debootstap for "my goals" 
(https://lists.debian.org/debian-user/2017/02/msg00871.html).




___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] "Installing" the Debian installer - How?

2017-02-23 Thread Tom
> > As about your direct ISO file usage - Please realize that .iso is
> > disk
> > image file format, not a file system where you can access and
> > execute
> > individual files.
> 
> That basically was the point of my post.
> Perhaps my subject line could have been "How to translate iso-hybrid
> to extN?"
> That phraseology has its own problems. HOWEVER, phrasing it that way
> reminds me 
> of an {on the surface} unrelated thread from ~2 years ago on another
> forum. It 
> may not yield a solution to my current problem but should give me
> guidance to 
> better question. There will be a delay there are 150+ messages to
> review :}
> 
> 
You mount .iso through loop device and copy/rsync the content. Here is
and example:
sudo mount -o loop fileName.iso /mnt
cp -pr /mnt/* destinationDir/
# or: rsync -a --progress /mnt/* destinationDir/
sudo umount /mnt
If you want to make this bootable, copy the content to empty disk
partition, make it bootable by grub2.
Ubuntu CDs/DVDs typically use combination of Syslinux and Grub2
selected by BIOS/UEFI respectively to boot from the media:
http://www.syslinux.org/wiki/index.php?title=Install
I hope it helps,
Tomas
> 
> ___
> PLUG mailing list
> 
PLUG@lists.pdxlinux.org> 
http://lists.pdxlinux.org/mailman/listinfo/plug> 
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug