WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: how/why: tce-run suppresses firefox msgs in term  (Read 1772 times)

Offline ttz

  • Jr. Member
  • **
  • Posts: 82
how/why: tce-run suppresses firefox msgs in term
« on: October 11, 2015, 08:25:39 PM »
my screen is a convoluted mess right now...

info:
Code: [Select]
>alias | grep fire
alias ff='firefox'
alias ffs='firefox --search'

goal: start ff from term backgrounded without msgs (i.e. no tce-run, minimal key-strokes).

first pass

Code: [Select]
>version
5.4

>ffs youtube &
[1] 8166


>
(process:8166): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed

(firefox:8166): Gtk-WARNING **: Locale not supported by C library.
        Using the fallback 'C' locale.

>WARNING: content window passed to PrivateBrowsingUtils.isWindowPrivate. Use isContentWindowPrivate instead (but only for frame scripts).
pbu_isWindowPrivate@resource://gre/modules/PrivateBrowsingUtils.jsm:25:14
...
...

the msgs keep coming - annoying

-------------------------------
second pass

Code: [Select]
>tce-run firefox &
[1] 8298


>/etc/sysconfig/tcedir/optional/firefox.tcz not found!

(process:8298): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed

(firefox:8298): Gtk-WARNING **: Locale not supported by C library.
        Using the fallback 'C' locale.

[1]+  Done                    tce-run firefox


>firefox -h
...
...

with second: no msgs now for, like, half an hour. that is what i want except for having to do more than use my aliases - i hope to just type "ffs somesearchparam &" and go on about using the term.

this is not  limited to 5.4 or youtube or tc.

put it another way:

ffs without tce-run; just alias and no msgs?
« Last Edit: October 11, 2015, 08:45:58 PM by ttz »

Offline nitram

  • Hero Member
  • *****
  • Posts: 1054
Re: how/why: tce-run suppresses firefox msgs in term
« Reply #1 on: October 11, 2015, 09:24:39 PM »
//  i hope to just type "ffs somesearchparam &" and go on about using the term.
// this is not  limited to 5.4 or youtube or tc.
Firefox always outputs lots when run from terminal regardless of version or Linux distribution.

Your goal is simply to run FF from terminal without interfering output so you can continue using terminal, correct?

If so just start 'firefox google.com &' or whatever, it will spit out a couple messages, just press Enter and you'll get your prompt back.

Otherwise i misunderstand.

Offline nitram

  • Hero Member
  • *****
  • Posts: 1054
Re: how/why: tce-run suppresses firefox msgs in term
« Reply #2 on: October 11, 2015, 09:40:38 PM »
firefox &> /dev/null &
... returns no output to terminal, immediate prompt return

http://unix.stackexchange.com/questions/16456/disable-browser-logging-output-to-console

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
how/why: tce-run suppresses firefox msgs in term
« Reply #3 on: October 11, 2015, 10:22:56 PM »
Why make searching so complicated ???

Simply set Google as your start page in any browser then select the browser icon on the wbar to open an instance with Google search page already open
Then type in your search criteria
So. This is
one mouse click
The only typing required are as letters in the search word
And then hit enter once

Unless you like making things difficult..?


Sent from my iPhone using Tapatalk

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10962
Re: how/why: tce-run suppresses firefox msgs in term
« Reply #4 on: October 12, 2015, 02:10:33 AM »
I don't think bb ash supports the &> redirect, so the usual 2> should be used instead.

Also, to avoid having to type the & to background, you could make a script instead.
The only barriers that can stop you are the ones you create yourself.

Offline ttz

  • Jr. Member
  • **
  • Posts: 82
Re: how/why: tce-run suppresses firefox msgs in term
« Reply #5 on: October 12, 2015, 01:06:02 PM »
Quote
Unless you like making things difficult..?

It is truly very much the opposite.

Example:

Accept that I always have a term and am generally using it. When it is time to shutdown, I just type: night.

In my .bashrc (on two boxes) I have:

Code: [Select]
alias night='sudo poweroff'
Whether it is a good idea to use sudo in an alias is separate question. For now, when I'm done for the day...

Hey, I'm just exploring things! Thanks for your time and reply,
ttz
« Last Edit: October 12, 2015, 01:37:05 PM by ttz »

Offline ttz

  • Jr. Member
  • **
  • Posts: 82
Re: how/why: tce-run suppresses firefox msgs in term
« Reply #6 on: October 12, 2015, 01:45:40 PM »
@nitram

looks like you've found something. give me some time to work thru it (a couple days, maybe?).

Thank you,
ttz

Offline ttz

  • Jr. Member
  • **
  • Posts: 82
Re: how/why: tce-run suppresses firefox msgs in term
« Reply #7 on: October 13, 2015, 03:15:08 PM »
it seems curaga was right:

Quote
Also, to avoid having to type the & to background, you could make a script instead.

Big picture:
noob is trying to build and reading docs; wants to check a link in the docs:

http://keplerproject.github.com/luafilesystem/

now, with a mouse hi-light, i:

Code: [Select]
>fs http://keplerproject.github.com/luafilesystem/
the link is inserted with SHIFT+INSERT

what i did:
Code: [Select]
>which fs
/home/tc/.local/bin/fs

fs:
Code: [Select]
>more $(which fs)
#!/bin/bash
firefox $1 &> /dev/null &
exit 0;

resource:

http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-3.html

from that:
Quote
3.6 Sample: stderr and stdout 2 file

This will place every output of a program to a file. This is suitable sometimes for cron entries, if you want a command to pass in absolute silence.

            rm -f $(find / -name core) &> /dev/null

I can't deny the immediate complexity, but expect it will be worth the trouble in the long run.

best wishes from a noob,
ttz