Triton-6.0

Message
Author
did18
Posts: 417
Joined: Wed 19 Nov 2014, 22:27

#16 Post by did18 »

Bonjour

Une petite coquille par ici…(triton2.jpg)
Une petite erreur par là…(capturetriton1.jpg)

J’ai plus de problème avec la connexion internet via le wifi, ou le matériel ne semble pas (ou mal) reconnu sur mon portable (DELL LATITUDE E6410).
J’ai fait l’essai depuis une image «Triton-6.0-chromium » mais il est probable que cela n’a rien à voir et que le souci sera récurent sur les autres images…
J’ai testé sns, fresbee et network… Aucun ne semble « voir » le matériel (même en changeant plusieurs fois le pilote), ce qui est inutile si le matériel n’a pas été convenablement initialisé.
Ou alors j’ai « loupé » un épisode quelque part, ce qui est tout a fait possible.

En tout cas joli travail, toutes mes félicitations.
Bonne journée.
Attachments
capturetriton1.jpg
(46.82 KiB) Downloaded 198 times
triton2.jpg
(29.71 KiB) Downloaded 457 times

User avatar
fabrice_035
Posts: 765
Joined: Mon 28 Apr 2014, 17:54
Location: Bretagne / France

#17 Post by fabrice_035 »

Argolance wrote: Je me suis peut-être mal exprimé, mais ce que je veux dire c'est que le script "welcome1stboot" n'est pas éditable directement dans geany par exemple, comme c'est le cas de la majorité des scripts codés en "gtkdialog", caractéristiques de Puppy.
Mais si il est éditable avec geany :)

Code: Select all

root# geany /usr/sbin/welcome1stboot 

Code: Select all

#!/bin/sh
#welcome

export TEXTDOMAIN=welcome1stboot
export OUTPUT_CHARSET=UTF-8

read -r ISSUE ETC < /etc/issue
W_MSG="$(gettext "Welcome,
This is the first time you are running ${ISSUE}!...")"

CONNECTED=$(LANG=C route | grep -q 'default[ ].*[ ]0.0.0.0[ ]' && \
	grep -wq nameserver /etc/resolv.conf && \
	echo -n yes || echo -n no
)

if [ "$CONNECTED" = "yes" ] ; then
	LABEL_INTERNET="$(gettext "Congratulations, you seem to be connected to the Internet. Experiment with mouse-over, left-click and right-click on the 'network' icon in the tray. Click on the icon on the right (or on the desktop) if you need to reconfigure the Internet connection")"
elif [ "$(ifconfig -a | cut -f 1 -d " " | sed -e "/^$/d" -e '/^lo$/d')" != "" ] ; then
	LABEL_INTERNET="$(gettext "There is a working network interface, but you are not connected to the Internet. Click on the 'connect' icon on the right, or on left-side of the desktop (do NOT double-click), to setup the Internet connection. Note the network status icon in the tray.")"
else
	LABEL_INTERNET="$(gettext "Click on the button on the right, or icon at left of the screen (one click only!). You will then see some buttons for choosing how you wish to connect to the Internet. It is easy...")"
fi

LABEL_INTERNET="$(gettext "<b>Internet connection</b>
${LABEL_INTERNET}")"
LABEL_NEEDHELP="$(gettext "<b>I need help!</b>
Explore the Menu -- see bottom-left of screen. Lots of local help is available -- select Help in the menu. The local Help page also has the Release Notes for this version of ${ISSUE}-- well worth checking out! When you get online, the web browser home page has many more links.")"
LABEL_SETUP="$(gettext '<b>Setup</b>
Want to install an upgraded video driver? Country localization? Printing? Sound? Mouse? Keyboard? Click here (or 'setup' icon at top of screen).')"

export WELCOME_DIALOG='
<window title="'$(gettext 'Welcome')'" icon-name="gtk-info" resizable="false">
<vbox>
	<hbox border-width="7" space-expand="true" space-fill="true">
      <pixmap icon_size="4"><input file>/usr/share/doc/puppylogo96.png</input></pixmap>
      <text use-markup="true"><label>"<big>'"${W_MSG}"'</big>"</label></text>
    </hbox>
    <hbox border-width="7" space-expand="true" space-fill="true">
      <text space-expand="false" space-fill="false"><label>""</label></text>
      <text xalign="0" use-markup="true" space-expand="true" space-fill="true"><label>"'"${LABEL_INTERNET}"'"</label></text>
      <vbox space-expand="false" space-fill="false">
        <button>
          '$(/usr/lib/gtkdialog/xml_button-icon /usr/local/lib/X11/pixmaps/connect48.png huge)'
          <action>/usr/sbin/connectwizard & </action>
        </button>
      </vbox>
    </hbox>
    <hseparator></hseparator>
    <hbox border-width="7" space-expand="true" space-fill="true">
      <text space-expand="false" space-fill="false"><label>""</label></text>
      <text xalign="0" use-markup="true" space-expand="true" space-fill="true"><label>"'"${LABEL_SETUP}"'"</label></text>
      <vbox space-expand="false" space-fill="false">
        <button>
         '$(/usr/lib/gtkdialog/xml_button-icon /usr/local/lib/X11/pixmaps/configuration48.png huge)'
         <action>/usr/sbin/wizardwizard & </action>
        </button>
      </vbox>
    </hbox>
    <hseparator></hseparator>

    <hbox border-width="7" space-expand="true" space-fill="true">
      <text space-expand="false" space-fill="false"><label>""</label></text>
      <text xalign="0" use-markup="true" space-expand="true" space-fill="true"><label>"'"${LABEL_NEEDHELP}"'"</label></text>
      <vbox space-expand="false" space-fill="false">
        <text space-expand="false" space-fill="false"><label>""</label></text>
        <button>
         '$(/usr/lib/gtkdialog/xml_button-icon help.svg huge)'
         <action>basichtmlviewer file:///usr/share/doc/index.html & </action>
        </button>
      </vbox>
    </hbox>
    <hbox border-width="7" space-expand="true" space-fill="true">
      <pixmap><input file>/usr/share/doc/tray.png</input></pixmap>
      <text xalign="0" use-markup="true" space-expand="true" space-fill="true"><label>"'$(gettext "...mouse-over and click the tray applets!")'"</label></text>
    </hbox>
  </vbox>
</window>'

gtkdialog --center -p WELCOME_DIALOG 2>/dev/null

### END ###


User avatar
Argolance
Posts: 3767
Joined: Sun 06 Jan 2008, 22:57
Location: PORT-BRILLET (Mayenne - France)
Contact:

#18 Post by Argolance »

Bonjour,
Curieux c't'affaire, car lorsque je clique droit dessus >Ouvrir en mode texte ou bien lorsque je rentre la commande en console,

Code: Select all

geany /usr/sbin/welcome1stboot
geany émet un bip et la fenêtre qui s'ouvre alors est vide, comme c'est le cas d'ailleurs avec les fichiers du même type (les propriétés indiquent "ELF 32-bits executable, etc..."), tandis que pour un script bash classique, comme "wirelesswizard" par exemple, les propriétés indiquent "POSIX shell script text executable".
Dans la fenêtre du gestionnaire ROX, ces fichiers apparaissent d'ailleurs avec des icônes différentes (voir image).

Voici pour info le contenu (en intégralité) de welcome1stboot.bac.
Le tout c'est d'identifier le code qui affiche cette fenêtre disgracieuse et il semble bien que ce soit dans cette partie:

Code: Select all

REM ============================ <language> ======================140210
et plus précisément là:

Code: Select all

n = 1 : row = 1 : col = 1
  WHILE n < num_languages + 1
   IF n = 1 THEN
    LANG_NAME$="English"
[...] 

Code: Select all

REM welcome window, first boot of Puppy.
REM (c) Copyright Barry Kauler 2011, bkhome.org
REM License GPL v3 (/usr/share/doc/legal)
REM 110412 first release.
REM 110414 tweak dimensions for non-English (thanks L18L and rodin.s).
REM 120630 1st bootup in PUPMODE=2, removed section about saving session.
REM 130204 include hug.bac, avoid needs recompiling when hug.so updated. (but much bigger!)
REM 130209 go back to hug.so.
REM 130710 Puppy default dpi has changed from 78 to 96.
REM 131210 modified for quirky6.
REM 140205 L18L modified for puppy and quirky and fatdog (anything in 1st word of /etc/issue)
REM 140207 /usr/sbin/delayedrun now tests active network and internet connection.
REM 140210 L18L choose from available languages, lang_names in new /usr/share/i18n/lang_names <<<<<<<<<<<<<<<<
REM 140211 display lang_names, language code in tooltip <<<<<<<<<<<<<<<
REM 140212 bugfix
REM 140215 01micko: disable button_ic if connected; add slacko method which also enables test runs after 1stboot
REM 140715 01micko: tidy up for bacon-3.0.1
REM 151026 ping duckduckgo, instead of sourceforge

REM compile and create pot file: bacon -x -d /tmp welcome1stboot.bac

OPTION INTERNATIONAL TRUE
REM .po/.mo files have 'charset=UTF-8', so either set UTF-8 on in LANG variable, or do this...
SETENVIRON "OUTPUT_CHARSET", "UTF-8"

REM Final exe size: incl hug.bac: 178K, func list: 134K, shared hug.so: 47K...
REM INCLUDE "/usr/share/BaCon/hug.bac",ATTACH,BUTTON,CALLBACK,DISPLAY,FONT,HIDE,HUGOPTIONS,IMAGE,INIT,MARK,MSGDIALOG,PROPERTY,QUIT,SHOW,WINDOW
INCLUDE "/usr/share/BaCon/hug_imports.bac"
REM http://developer.gnome.org/gtk/stable/GtkWidget.html#gtk-widget-set-tooltip-text
IMPORT "gtk_widget_set_tooltip_text(long,char*)" FROM "libgtk-x11-2.0.so" TYPE void

ISSUE$=EXEC$("cat /etc/issue | head -n 1 | cut -d ' ' -f1")
SETENVIRON "ISSUE", ISSUE$

INIT

SUB ic_func()
 SYSTEM "/usr/sbin/connectwizard & "
END SUB

SUB setup_func()
 SYSTEM "/usr/sbin/wizardwizard & "
END SUB

SUB close_dlg(NUMBER widget)
 HIDE(widget)
END SUB

REM ============================ <language> ======================140210

FUNCTION available_languages$()
 GLOBAL langs$
 REM langs$=CONCAT$("en ", CHOP$(EXEC$("echo `find /usr/share/locale/*/LC_MESSAGES/welcome1stboot.mo | cut -d '/' -f 5`")))
 langs$="en"
 OPEN "/usr/share/locale/" FOR DIRECTORY AS textdomaindir
 REPEAT
  GETFILE oneLANG$ FROM textdomaindir
  IF FILEEXISTS(CONCAT$("/usr/share/locale/", oneLANG$, "/LC_MESSAGES/", ARGUMENT$, ".mo")) THEN langs$=CONCAT$(langs$, " ", oneLANG$)
 UNTIL ISFALSE(LEN(oneLANG$))
 CLOSE DIRECTORY textdomaindir
 RETURN langs$
END FUNCTION

SUB get_app_language
 OPTION BASE 1
 GLOBAL num_languages, language_win
 LOCAL num_cols
 no_LANG_NAME$ = "no name"
 GLOBAL language_checked[100]
 REM GLOBAL language_select[100]
 langs$=available_languages$ ()
 SPLIT langs$ BY " " TO language$ SIZE num_languages 
 
 IF num_languages > 1 THEN
  num_cols = 2 : IF num_languages > 15 THEN num_cols = 3
  HUGOPTIONS("FONT DejaVu Sans 20")
  win_width=640
  win_height=480
  language_win = WINDOW("?", win_width, win_height)
  check_width = FLOOR((win_width - 10) / num_cols)
  check_height = win_height / (1 + FLOOR(num_languages / num_cols))
  padding_x = (win_width - (num_cols * check_width))
  padding_y = 0

  n = 1 : row = 1 : col = 1
  WHILE n < num_languages + 1
   IF n = 1 THEN 
    LANG_NAME$="English"
   ELIF FILEEXISTS("/usr/share/i18n/lang_names") THEN
    'get language name in language of language
    LANG_NAME$=CHOP$(EXEC$(CONCAT$("x=`grep ^", language$[n],": /usr/share/i18n/lang_names || echo ", no_LANG_NAME$, "`;echo ${x#*:}")))
   ELSE
    LANG_NAME$=CONCAT$("Code: ", language$[n], "   ")
   END IF
   language_checked[n]=CHECK(LANG_NAME$, check_width, check_height) 
   ATTACH(language_win, language_checked[n], padding_x + (col -1) * check_width , padding_y + (row - 1) * check_height )
   gtk_widget_set_tooltip_text(language_checked[n],CONCAT$(language$[n], " ⇌ ", LANG_NAME$))
   CALLBACKX(language_checked[n], use_language, n)
   INCR n : INCR col
   IF col > num_cols THEN 
    INCR row : col = 1  
   END IF 
  WEND
  DISPLAY
 END IF 
END SUB

' restart this programm using LANGUAGE number n
SUB use_language(NUMBER widget, NUMBER n)
 SPLIT langs$ BY " " TO language$ SIZE num_languages 
 SYSTEM CONCAT$("echo -n `pidof ", ARGUMENT$, "`> /tmp/welcome")
 SYSTEM CONCAT$("LANGUAGE=", language$[n], " ", ARGUMENT$) 
 SYSTEM CONCAT$("kill `pidof ", ARGUMENT$)
 END
END SUB

IF GETENVIRON$("LANGUAGE") = "" THEN 
 get_app_language                                  : REM language choice screen
ELSE 
 SYSTEM "kill `cat /tmp/welcome`; rm /tmp/welcome" : REM kill language choice screen
END IF

REM ============================ </language> ======================140210

REM fix window font layout regardless of dpi...
REM 78 is the Xft.dpi in /root/.Xresources when I designed the layout... now 96...
HUGOPTIONS("BASEXFTDPI 96")
REM User may have GTK theme font size too big/small. set to required size...
HUGOPTIONS("FONT DejaVu Sans 10")

REM hack for russian, ru...
mycountry$=LEFT$(GETENVIRON$("LANG"),2)

REM space required for the session-save section, if not PUPMODE=2...
'vert_space_save=0
'IF FILETYPE("/initrd") EQ 2 THEN vert_space_save=112
vert_space_save=4

REM to disable decorations, need to hide window first...
HUGOPTIONS("WIDGET_SHOW 0")
REM reduced height by 112 pixels...
mainwin = WINDOW(INTL$("Welcome"),656,402+vert_space_save)
PROPERTY(mainwin,"decorated",FALSE)
HUGOPTIONS("WIDGET_SHOW 1")

image_logo=IMAGE("/usr/share/doc/puppylogo96.png",96,96)
ATTACH(mainwin,image_logo,68,5)

label_welcome=MARK(INTL$("Welcome,"),350,24)
REM left-align for single-line label...
PROPERTY(label_welcome,"xalign",0.0)
FONT(label_welcome,"DejaVu Sans Bold 20")
ATTACH(mainwin,label_welcome,188,20)

REM label_subhdr=MARK(INTL$("This is the first time you are running Quirky!"),462,24)
pot_msg$=INTL$("This is the first time you are running ${ISSUE}!")
label_subhdr=MARK(EXEC$("eval echo $(gettext 'welcome1stboot' 'This is the first time you are running ${ISSUE}!')"),462,24)

PROPERTY(label_subhdr,"xalign",0.0)
FONT(label_subhdr,"DejaVu Sans 14")
ATTACH(mainwin,label_subhdr,188,50)

button_x=BUTTON("X",24,24)
'image_x=IMAGE("/usr/share/pixmaps/puppy/cancel.svg",16,16)
'PROPERTY(button_x,"image",image_x)
gtk_widget_set_tooltip_text(button_x,INTL$("Close window"))
ATTACH(mainwin,button_x,625,6)
CALLBACK(button_x,QUIT)

button_ic=BUTTON("",58,56)
image_ic=IMAGE("/usr/local/lib/X11/pixmaps/connect48.png",48,48)
PROPERTY(button_ic,"image",image_ic)
gtk_widget_set_tooltip_text(button_ic,INTL$("Connect to Internet"))
ATTACH(mainwin,button_ic,584,116)

label_ic=MARK(INTL$("Internet connection"),250,24)
PROPERTY(label_ic,"xalign",0.0)
FONT(label_ic,"DejaVu Sans Bold 14")
ATTACH(mainwin,label_ic,20,108)

REM 140215 add slacko method which also enables test runs after 1stboot
'# check connection
'#shinobar
'LANG=C route | grep -q 'default[ ].*[ ]0\.0\.0\.0[ ]' && \
'grep -wq nameserver /etc/resolv.conf && \
'ping -c1 duckduckgo.com &>/dev/null && CONNECTED="yes" || CONNECTED=
SYSTEM "echo -n no > /tmp/CONNECTED; LANG=C route | grep -q 'default[ ].*[ ]0.0.0.0[ ]' && grep -wq nameserver /etc/resolv.conf && ping -c1 duckduckgo.com &>/dev/null && echo -n yes > /tmp/CONNECTED "
CONNECTED$=EXEC$("cat /tmp/CONNECTED")

IF FILEEXISTS("/tmp/delayedrun-internet-working") OR CONNECTED$ = "yes" THEN
 label_ic_body=MARK(INTL$("Congratulations, you are connected to the Internet. Experiment with mouse-over, left-click and right-click on the 'network' icon in the tray. Click on the 'connect' icon on the right (or on the desktop) if you need to reconfigure the Internet connection"),500,70)
 DISABLE(button_ic)
ELIF FILEEXISTS("/tmp/delayedrun-active-interfaces") THEN
 label_ic_body=MARK(INTL$("There is a working network interface, but you are not connected to the Internet. Click on the 'connect' icon on the right, or on left-side of the desktop (do NOT double-click), to setup the Internet connection. Note the network status icon in the tray."),500,70)
ELSE
 label_ic_body=MARK(INTL$("Click on the 'connect' button on the right, or icon at left of the screen (one click only -- do not double-click!). You will then see some buttons for choosing how you wish to connect to the Internet. It is easy..."),500,70)
ENDIF
PROPERTY(label_ic_body,"xalign",0.0)
PROPERTY(label_ic_body,"yalign",0.0)
PROPERTY(label_ic_body,"wrap",TRUE)
ATTACH(mainwin,label_ic_body,30,130)

CALLBACK(button_ic,ic_func)
label_c=MARK(INTL$("connect"),82,16)
FONT(label_c,"DejaVu Sans Bold 10")
PROPERTY(label_c,"xalign",0.5)
ATTACH(mainwin,label_c,571,172)

REM bad hack for russian translation...
IF mycountry$ = "ru" THEN
 vert1=186
 vert2=208
ELSE
 vert1=202
 vert2=224
END IF

label_help=MARK(INTL$("I need help!"),280,24)
PROPERTY(label_help,"xalign",0.0)
FONT(label_help,"DejaVu Sans Bold 14")
ATTACH(mainwin,label_help,20,vert1)

REM label_help_body=MARK(INTL$("Explore the 'Menu' -- see bottom-left of screen. Lots of local help is available -- select 'Help' in the menu. The local Help page also has the Release Notes for this version of Quirky -- well worth checking out! When you get online, the web browser home page has many more links."),628,70)
pot_msg$=INTL$("Explore the Menu -- see bottom-left of screen. Lots of local help is available -- select Help in the menu. The local Help page also has the Release Notes for this version of ${ISSUE}-- well worth checking out! When you get online, the web browser home page has many more links.")
label_help_body=MARK(EXEC$("eval echo $(gettext 'welcome1stboot' 'Explore the Menu -- see bottom-left of screen. Lots of local help is available -- select Help in the menu. The local Help page also has the Release Notes for this version of ${ISSUE}-- well worth checking out! When you get online, the web browser home page has many more links.')"),628,70)

PROPERTY(label_help_body,"xalign",0.0)
PROPERTY(label_help_body,"yalign",0.0)
PROPERTY(label_help_body,"wrap",TRUE)
ATTACH(mainwin,label_help_body,30,vert2)

image_tray=IMAGE("/usr/share/doc/tray.png",178,28)
ATTACH(mainwin,image_tray,40,282)
label_tray=MARK(INTL$("...mouse-over and click the tray applets, very helpful!"),431,16)
PROPERTY(label_tray,"xalign",0.0)
ATTACH(mainwin,label_tray,222,286)

label_setup=MARK(INTL$("Setup"),280,24)
PROPERTY(label_setup,"xalign",0.0)
FONT(label_setup,"DejaVu Sans Bold 14")
ATTACH(mainwin,label_setup,20,320+vert_space_save)
label_setup_body=MARK(INTL$("Want to install an upgraded video driver? Country localization? Printing? Sound? Mouse? Keyboard? Click here (or 'setup' icon at top of screen):"),500,70)
PROPERTY(label_setup_body,"xalign",0.0)
PROPERTY(label_setup_body,"yalign",0.0)
PROPERTY(label_setup_body,"wrap",TRUE)
ATTACH(mainwin,label_setup_body,30,342+vert_space_save)

button_setup=BUTTON("",58,56)
image_setup=IMAGE("/usr/local/lib/X11/pixmaps/configuration48.png",48,48)
PROPERTY(button_setup,"image",image_setup)

REM gtk_widget_set_tooltip_text(button_setup,INTL$("Setup Quirky"))
pot_msg$=INTL$("Setup ${ISSUE}")
gtk_widget_set_tooltip_text(button_setup,EXEC$("eval echo -n $(gettext 'welcome1stboot' 'Setup ${ISSUE}')"))

ATTACH(mainwin,button_setup,584,323+vert_space_save)
CALLBACK(button_setup,setup_func)
label_set=MARK(INTL$("setup"),87,16)
FONT(label_set,"DejaVu Sans Bold 10")
PROPERTY(label_set,"xalign",0.5)
ATTACH(mainwin,label_set,568,379+vert_space_save)

SHOW(mainwin)
DISPLAY
REM the end 
Cordialement.
Attachments
171001_170241_501x169_easyshot.jpg
(13.95 KiB) Downloaded 414 times

User avatar
Médor
Posts: 1754
Joined: Sat 24 Jul 2010, 20:04
Location: France

#19 Post by Médor »

Bonjour Argolance,

Depuis woof-CE, /usr/sbin/welcome1stboot est à présent un script en gtkdialog ;)


Cordialement,
Médor.
Attachments
Capture-2017-11-01.jpg
(84.94 KiB) Downloaded 404 times
[b][url=http://wellminded.net63.net/]Recherches Puppy[/url]|[url=http://puppylinux.org/wikka/PageIndex]Index Puppy[/url]|[url=http://smokey01.com/bruceb/france.html]Index FR[/url]|[url=http://toutoulinux.free.fr/tuto.php]Tuto Toutou[/url][/b]

User avatar
Argolance
Posts: 3767
Joined: Sun 06 Jan 2008, 22:57
Location: PORT-BRILLET (Mayenne - France)
Contact:

#20 Post by Argolance »

Bonjour,
Médor wrote:Depuis woof-CE, /usr/sbin/welcome1stboot est à présent un script en gtkdialog
Oui, c'est ce que je crois avoir compris et c'est la seule explication possible, mais ce n'est pas le cas de la Triton 6.0 de notre ami petihar qui elle, tourne avec la vielle version de welcome1stboot. Que faire? Substituer ou modifier/conserver? À lui de voir! :roll:

Cordialement.

User avatar
petihar
Posts: 366
Joined: Mon 09 Apr 2007, 12:04

#21 Post by petihar »

@ Dorothée,

Bonsoir Dorothée, le bug de ffconvert m'a trotté dans la tête toute la journée pour ne pas dire toute la nuit... mais, j'ai enfin trouvé. Le pb ne vient pas de ffmpeg mais d'une librairie de apulse dans /usr/lib.
J'ai fait un .pet pour corriger, et ffconvert devrait rentrer dans l'ordre... ouf :D
Bien à toi, petihar
Attachments
repare-ffconvert.pet
(340 Bytes) Downloaded 222 times
Last edited by petihar on Sun 01 Oct 2017, 22:14, edited 1 time in total.

augras
Posts: 1487
Joined: Mon 11 Nov 2013, 17:37
Location: france

#22 Post by augras »

Bonsoir,
C'est vraiment embêtant ce que tu a trouvé petihar car ça veut dire que le apulse nécessaire aux dernières versions de firefox pour avoir du son ne permet plus à ffconvert de fonctionner ! Bon, ce n'est embêtant que sur la version firefox, mais c'est la seule qui permet d'utiliser netflix par exemple.
Et effectivement en remettant les lib d'origine ffconvert fonctionne, mais également Tas : si tu te souviens j'avais remarqué que tas dont je m'étais servi pour vérifier que ffmpeg était fonctionnel dysfonctionnait, pas à cause de ffmpeg mais de pulseaudio ! Ça aurait dû faire tilt à ce moment là mais manifestement on est passé à côté.
Tout ça pour dire que soit on a un firefox fonctionnel sans ffconvert (et certainement d'autres comme tas..., en fait peut-être tout ce qui utilise ffmpeg du coup), soit le contraire.
Ce problème de son sur firefox est général et la solution simple avec apulse pour le solutionner vient de prendre du plomb dans l'aile.
J'ai vérifié sur ma tahrpup6.0.5 que j'utilise tous les jours et de fait ce problème existe évidemment aussi : l'installation de apulse empêche ffmpeg de fonctionner.
C'est tout de même étonnant que ce problème ne soit ressorti nul part : le apulse mis à disposition par oscartalks est en circulation depuis plusieurs mois.
Philippe

User avatar
Dorothée
Posts: 259
Joined: Tue 27 Nov 2012, 21:03

#23 Post by Dorothée »

J'ai une question un peu futile au regard du problème, qui a l'air un peu embêtant, avec ffconvert, mais j'aimerais savoir où je pourrais forcer la wbar à augmenter la taille des icônes principales au-delà de 64. J'ai essayé de changer cela dans .wbar mais ça n'a rien donné.

À bientôt,
Last edited by Dorothée on Sun 01 Oct 2017, 21:30, edited 1 time in total.

User avatar
fabrice_035
Posts: 765
Joined: Mon 28 Apr 2014, 17:54
Location: Bretagne / France

#24 Post by fabrice_035 »

@augras
Sur '' ma '' tahrpup 6.0.6 32 bit , j'ai Firefox dernier cri, pulseaudio et ffmpeg et donc ffconvert, tout ça fonctionne.

Pulseaudio vient de PPM.

Code: Select all

root# pulseaudio --version
pulseaudio 4.0
Et ffmpeg c'est la version livrée par défaut.

:?:

User avatar
petihar
Posts: 366
Joined: Mon 09 Apr 2007, 12:04

#25 Post by petihar »

@ augras

Bonsoir Philippe, je pense avoir résolu le problème, en fait une seule librairie pose problème. J'ai modifié le pet et rectifié le post précédent qui répondait à Dorothée.
Voilà, ffconvert tourne et firefox aussi :lol:
Bien à toi petihar
Attachments
repare-ffconvert.pet
(340 Bytes) Downloaded 153 times

User avatar
petihar
Posts: 366
Joined: Mon 09 Apr 2007, 12:04

#26 Post by petihar »

@ did18

Bonsoir et merci, grâce à toi les deux "coquilles" seront corrigées. Celle sur sourceforge l'est déjà et, l'autre sur le welcome1stboot.mo sera corrigée sur les prochaines isos
Cordialement petihar

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#27 Post by rcrsn51 »

did18 wrote:J’ai plus de problème avec la connexion internet via le wifi, ou le matériel ne semble pas (ou mal) reconnu sur mon portable (DELL LATITUDE E6410).
You need to provide more information.

1. What model is your wifi adapter?

2. What driver is installed in the Puppies where it works?

User avatar
petihar
Posts: 366
Joined: Mon 09 Apr 2007, 12:04

#28 Post by petihar »

@ Dorothée,
mais j'aimerais savoir où je pourrais forcer la wbar à augmenter la taille des icônes principales au-delà de 64
Bonjour Dorothée, tu peux modifier la taille des icônes de la wbar en modifiant le "isize" de .wbar dans root au delà de 64.
Cordialement petihar
Attachments
capture23077.png
(15.3 KiB) Downloaded 277 times

did18
Posts: 417
Joined: Wed 19 Nov 2014, 22:27

#29 Post by did18 »

---fr---
Bonjour

Ci-après une partie du rapport hardinfo lancé depuis une session ToOpPy 2.2.

Bonne journée.

---en---
Hello

Hereafter part of the hardinfo report launched from a ToOpPy 2.2 session.

Have a good day.

Ordinateur
**********


Résumé
--------

-Ordinateur-
Processeur : 4x Intel(R) Core(TM) i5 CPU M 560 @ 2.67GHz
Memory : 3549Mo (297Mo utilisés)
Type de Machine : Machine physique
Système d'Exploitation : ToOpPy Precise - 2.2
Nom de l'Utilisateur : root (root)
Date/Time : lun. 02 oct. 2017 09:21:53 CEST
-Affichage-
Résolution : 1280x800 pixels
Moteur de rendu OpenGL : Mesa DRI Intel(R) Ironlake Mobile x86/MMX/SSE2
Fournisseur X11 : (null)
-Périphériques Audio-
Adaptateur Audio : HDA-Intel - HDA Intel MID
Adaptateur Audio : PC-Speaker - pcsp
-Périphériques d'entrée-
Lid Switch
Power Button
Sleep Button
Power Button
AT Translated Set 2 keyboard
MOSART Semi. 2.4G Keyboard Mouse
MOSART Semi. 2.4G Keyboard Mouse
Dell WMI hotkeys
PC Speaker
Laptop_Integrated_Webcam_3M
DualPoint Stick
AlpsPS/2 ALPS DualPoint TouchPad
Video Bus
-Imprimantes (CUPS)-
CUPS-PDF : <i>Default</i>
HP_Deskjet_3070_B611_series
-SCSI Disks-
ATA ST96812AS
TSSTcorp DVD+-RW TS-U633F

Système d'Exploitation
-----------------------

-Version-
Noyau : Linux 3.14.55 (i686)
Version : #1 SMP Mon Oct 26 11:54:01 AEST 2015
Bibliothèque C : Version de bibliothèque GNU C 2.17 (stable)
Distribution : ToOpPy Precise - 2.2
-Session actuelle-
Nom de l'Ordinateur : puppypc17350
Nom de l'Utilisateur : root (root)
Répertoire Home : /root
Environnement du bureau : Inconnu (Gestionnaire des Fenêtres: JWM)
-Divers-
Uptime : 13 minute(s)
Load Average : 0.23, 0.31, 0.26

Périphériques
***************


Périphériques PCI
-------------------

-PCI Devices-
Host bridge : Intel Corporation Core Processor DRAM Controller (rev 02)
VGA compatible controller : Intel Corporation Core Processor Integrated Graphics Controller (rev 02) (prog-if 00 [VGA controller])
Ethernet controller : Intel Corporation 82577LM Gigabit Network Connection (rev 05)
USB controller : Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])
Audio device : Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
PCI bridge : Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05) (prog-if 00 [Normal decode])
PCI bridge : Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05) (prog-if 00 [Normal decode])
PCI bridge : Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 05) (prog-if 00 [Normal decode])
PCI bridge : Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 4 (rev 05) (prog-if 00 [Normal decode])
USB controller : Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])
PCI bridge : Intel Corporation 82801 Mobile PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
ISA bridge : Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
SATA controller : Intel Corporation 5 Series/3400 Series Chipset 6 port SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])
SMBus : Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
Signal processing controller : Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
Network controller : Broadcom Corporation BCM43224 802.11a/b/g/n (rev 01)
CardBus bridge : Ricoh Co Ltd Device e476 (rev 02)
SD Host controller : Ricoh Co Ltd MMC/SD Host Controller (rev 03) (prog-if 01)
FireWire (IEEE 1394) : Ricoh Co Ltd R5C832 PCIe IEEE 1394 Controller (rev 03) (prog-if 10 [OHCI])
Host bridge : Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 02)
Host bridge : Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 02)
Host bridge : Intel Corporation Core Processor QPI Link 0 (rev 02)
Host bridge : Intel Corporation Core Processor QPI Physical 0 (rev 02)
Host bridge : Intel Corporation Core Processor Reserved (rev 02)
Host bridge : Intel Corporation Core Processor Reserved (rev 02)

Réseau
*******


Interfaces
----------

-Network Interfaces-
wlan0 1,13MiB 0,14MiB 192.168.xx.xx
lo 0,00MiB 0,00MiB 127.0.0.1
eth0 0,00MiB 0,00MiB

Connexions IP
-------------

-Connexions-
127.0.0.1:631 LISTEN 0.0.0.0:* tcp
192.168.xx.xx:54926 ESTABLISHED 216.58.198.206:443 tcp
0.0.0.0:631 0.0.0.0:* udp

Routing Table
-------------

-Table de routage IP-
0.0.0.0 / 192.168.1.1 0.0.0.0 UG wlan0
127.0.0.0 / 0.0.0.0 255.0.0.0 U lo
192.168.1.0 / 0.0.0.0 255.255.255.0 U wlan0

Table ARP
---------

-Table ARP-
192.168.1.1 44:ce:7d:43:24:18 wlan0

Serveurs DNS
------------

-Nom des serveurs-
192.168.1.1 : pc2

Statistiques
------------

-IP-
1327 : Total packets received
1 : With invalid addresses
0 : Incoming packets discarded
0 : Incoming packets discarded
1074 : Incoming packets delivered
1121 : Requests sent out
-ICMP-
1 : ICMP messages sent
0 : ICMP messages failed
1 : ICMP messages sent
0 : ICMP messages failed
-ICMPMSG-
-TCP-
46 : Active connections openings
0 : Segments retransmited
0 : Segments retransmited
19 : Resets sent
1 : Connections established
1039 : Segments received
1078 : Segments send out
0 : Segments retransmited
5 : Bad segments received.
19 : Resets sent
-UDP-
34 : Packets sent
0 : Packet receive errors
0 : Packet receive errors
34 : Packets sent
-UDPLITE-
-TCPEXT-
1 : TCP sockets finished time wait in fast timer
47 : Delayed acks sent
516 : Packet headers predicted
186 : Acknowledgments not containing data payload received
2 : Predicted acknowledgments
10 : DSACKs sent for old packets
3 : DSACKs sent for out of order packets
7 : DSACKs received
19 : Connections reset due to early user close
-IPEXT-

Dossiers partagés
------------------

-SAMBA-
pupshare : /mnt/home
printers : /var/spool/samba
-NFS-
No NFS exports

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#30 Post by rcrsn51 »

did18 wrote:Network controller : Broadcom Corporation BCM43224 802.11a/b/g/n (rev 01)
In ToOpPy, run the command: lspci -nnk

What kernel driver is being loaded for the network controller? Is it wl?

If so, you will need to find the matching wl driver for Tahrpup 605.

It may be this one.

User avatar
Dorothée
Posts: 259
Joined: Tue 27 Nov 2012, 21:03

#31 Post by Dorothée »

Merci Petihar pour ta réponse en ce qui concerne la wbar.

En fait, c'est ce que j'avais fait, mais comme il m'arrive d'être un peu distraite, je n'avais pas ensuite relancé le serveur x. Par contre, après avoir agrandi les icônes dans isize et qu'ensuite on tripote les préférences de la wbar, la taille revient automatiquement à 64. C'est mystérieux, mais c'est aussi le charme de linux...

À bientôt,

did18
Posts: 417
Joined: Wed 19 Nov 2014, 22:27

#32 Post by did18 »

---fr---
Bonsoir

La commande "lspci -nnk" renvoi tout un tas d'informations, mais je pense qu'il manque le module bcma qui n'est apparement pas dans "broadcom_sta-6.30.223.271_k3.14.56-nopae.pet".

Bonne fin de soirée.

---en---
Good evening

The "lspci -nnk" command returns a lot of information, but I think it's missing the bcma module which is apparently not in "broadcom_sta-6.30.223.271_k3.14.56-nopae.pet".

Enjoy the rest of the evening.

Code: Select all

# lspci -nnk 
00:00.0 Host bridge [0600]: Intel Corporation Core Processor DRAM Controller [8086:0044] (rev 02)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: agpgart-intel
00:02.0 VGA compatible controller [0300]: Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] (rev 02)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: i915
	Kernel modules: i915
00:19.0 Ethernet controller [0200]: Intel Corporation 82577LM Gigabit Network Connection [8086:10ea] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: e1000e
	Kernel modules: e1000e
00:1a.0 USB controller [0c03]: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller [8086:3b3c] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: ehci-pci
00:1b.0 Audio device [0403]: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio [8086:3b56] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd-hda-intel
00:1c.0 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 [8086:3b42] (rev 05)
	Kernel driver in use: pcieport
00:1c.1 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 [8086:3b44] (rev 05)
	Kernel driver in use: pcieport
00:1c.2 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 [8086:3b46] (rev 05)
	Kernel driver in use: pcieport
00:1c.3 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 4 [8086:3b48] (rev 05)
	Kernel driver in use: pcieport
00:1d.0 USB controller [0c03]: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller [8086:3b34] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: ehci-pci
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev a5)
00:1f.0 ISA bridge [0601]: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller [8086:3b07] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich
00:1f.2 SATA controller [0106]: Intel Corporation 5 Series/3400 Series Chipset 6 port SATA AHCI Controller [8086:3b2f] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: ahci
00:1f.3 SMBus [0c05]: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller [8086:3b30] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel modules: i2c-i801
00:1f.6 Signal processing controller [1180]: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem [8086:3b32] (rev 05)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: intel ips
	Kernel modules: intel_ips
02:00.0 Network controller [0280]: Broadcom Corporation BCM43224 802.11a/b/g/n [14e4:4353] (rev 01)
	Subsystem: Dell Wireless 1520 Half-size Mini PCIe Card [1028:000e]
	Kernel driver in use: bcma-pci-bridge
	Kernel modules: bcma
03:00.0 CardBus bridge [0607]: Ricoh Co Ltd Device [1180:e476] (rev 02)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: yenta_cardbus
	Kernel modules: yenta_socket
03:00.1 SD Host controller [0805]: Ricoh Co Ltd MMC/SD Host Controller [1180:e822] (rev 03)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: sdhci-pci
03:00.4 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C832 PCIe IEEE 1394 Controller [1180:e832] (rev 03)
	Subsystem: Dell Device [1028:040a]
	Kernel driver in use: firewire_ohci
	Kernel modules: firewire-ohci
3f:00.0 Host bridge [0600]: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers [8086:2c62] (rev 02)
	Subsystem: Intel Corporation Device [8086:8086]
3f:00.1 Host bridge [0600]: Intel Corporation Core Processor QuickPath Architecture System Address Decoder [8086:2d01] (rev 02)
	Subsystem: Intel Corporation Device [8086:8086]
3f:02.0 Host bridge [0600]: Intel Corporation Core Processor QPI Link 0 [8086:2d10] (rev 02)
	Subsystem: Intel Corporation Device [8086:8086]
3f:02.1 Host bridge [0600]: Intel Corporation Core Processor QPI Physical 0 [8086:2d11] (rev 02)
	Subsystem: Intel Corporation Device [8086:8086]
3f:02.2 Host bridge [0600]: Intel Corporation Core Processor Reserved [8086:2d12] (rev 02)
	Subsystem: Intel Corporation Device [8086:8086]
3f:02.3 Host bridge [0600]: Intel Corporation Core Processor Reserved [8086:2d13] (rev 02)
	Subsystem: Intel Corporation Device [8086:8086]
# 
Attachments
t1.jpg
(9.24 KiB) Downloaded 374 times
t2.jpg
(11.39 KiB) Downloaded 371 times

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#33 Post by rcrsn51 »

Have you rebooted after installing the driver PET?

Run the command: lsmod

Has the wl module loaded?

did18
Posts: 417
Joined: Wed 19 Nov 2014, 22:27

#34 Post by did18 »

---fr---
Bonjour

Non je n'avais pas "rebooté" le PC car je lançais triton depuis le CD-rom...

Ce matin installation de triton sur une clef usb...
Installation du pilote...
Enregistrement de la session sur la clef...
Après reboot, le réseau wifi apparaît correctement (dans les 3 outils de connexion réseau).

Je pense que le pilote devrait être ajouté à l'image iso...

Merci rcrsn51 pour ton aide et ta patience.

Bonne journée.

---en---
Hello

No I did not "reboot" the PC because I launched triton from the CD-ROM ...

This morning installation of triton on a usb key ...
Driver Installation ...
Saving the session on the key ...
After rebooting, the wifi network appears correctly (in the 3 network connection tools).

I think the driver should be added to the image iso ...

Thank you rcrsn51 for your help and patience.

Have a good day.

User avatar
rcrsn51
Posts: 13096
Joined: Tue 05 Sep 2006, 13:50
Location: Stratford, Ontario

#35 Post by rcrsn51 »

did18 wrote:After rebooting, the wifi network appears correctly (in the 3 network connection tools).
Excellent. You are now the expert for installing Broadcom WiFi drivers in Triton. :wink:

Post Reply