LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-03-2024, 08:10 PM   #3466
Andypoo
Member
 
Registered: Oct 2019
Distribution: Slackware
Posts: 66

Rep: Reputation: 57

CONFIG_SERIAL_8250_NR_UARTS 4 -> 16

Info: https://www.linuxquestions.org/quest...ls-4175732412/
 
Old 01-04-2024, 12:32 AM   #3467
shipujin
Member
 
Registered: May 2022
Location: China
Distribution: slackwareloong
Posts: 111
Blog Entries: 1

Rep: Reputation: 29
Mark

---
SlackwareCN: The Slackware Linux CN Community
slackwareCN:https://github.com/slackwarecn
slackwareCN:http://www.slackwarecn.cn
slackwareloong doc :https://github.com/slackwarecn/slackbook_cn_loongarch64
slackwareloong web doc : https://slackwarecn.gitbook.io/slackbook_cn_loongarch64
 
Old 01-04-2024, 11:50 AM   #3468
Jan K.
Member
 
Registered: Apr 2019
Location: Esbjerg
Distribution: Windows 7...
Posts: 773

Rep: Reputation: 489Reputation: 489Reputation: 489Reputation: 489Reputation: 489
Sorry, but why post "Mark" in several posts???


And please move the last six lines into a footer...
 
Old 01-04-2024, 01:23 PM   #3469
lostintime
Member
 
Registered: Dec 2021
Posts: 211

Rep: Reputation: Disabled
Pat, perhaps create a placeholder file for /etc/default/run-parts as part of the dcron package? Might improve "discoverability"? (Refer to dcron and /etc/default/run-parts).
 
Old 01-05-2024, 10:30 AM   #3470
saxa
Senior Member
 
Registered: Aug 2004
Location: Nova Gorica, Salvador
Distribution: Slackware
Posts: 1,227

Rep: Reputation: 303Reputation: 303Reputation: 303Reputation: 303
gvfs-1.52.2
https://download.gnome.org/sources/g...-1.52.2.tar.xz

Happy new year 2024 !
 
Old 01-05-2024, 07:43 PM   #3471
mistfire
Member
 
Registered: Jun 2021
Posts: 45

Rep: Reputation: Disabled
Quote:
Originally Posted by saxa View Post
I wonder, why not jump to version 1.53?

https://download.gnome.org/sources/gvfs/1.53/

Last edited by mistfire; 01-05-2024 at 07:44 PM. Reason: add gvfs url
 
Old 01-05-2024, 07:50 PM   #3472
reddog83
Member
 
Registered: Apr 2018
Distribution: Slackware 15.0/Current
Posts: 468

Rep: Reputation: 246Reputation: 246Reputation: 246
Wink

Quote:
Originally Posted by mistfire View Post
I wonder, why not jump to version 1.53?

https://download.gnome.org/sources/gvfs/1.53/
gvfs is a developmental branch in Gnome.
 
1 members found this post helpful.
Old 01-05-2024, 10:10 PM   #3473
mistfire
Member
 
Registered: Jun 2021
Posts: 45

Rep: Reputation: Disabled
Quote:
Originally Posted by reddog83 View Post
gvfs is a developmental branch in Gnome.
Oh, so it will took few weeks to get the wsd feature on gvfs I see.
 
Old 01-05-2024, 10:47 PM   #3474
reddog83
Member
 
Registered: Apr 2018
Distribution: Slackware 15.0/Current
Posts: 468

Rep: Reputation: 246Reputation: 246Reputation: 246
Not quite sure but at this moment there is a group of Slacker's working on upgrading Gnome 45 to Gnome 46 which would include gvfs. All of there work is based on Slackware-Current. Gnome is tightly integrated just like KDE (Plasma) is.
 
Old 01-06-2024, 06:30 AM   #3475
rizitis
Member
 
Registered: Mar 2009
Location: Greece,Crete
Distribution: Slackware64-current, Slint
Posts: 712
Blog Entries: 1

Rep: Reputation: 523Reputation: 523Reputation: 523Reputation: 523Reputation: 523Reputation: 523
Quote:
Originally Posted by reddog83 View Post
Not quite sure but at this moment there is a group of Slacker's working on upgrading Gnome 45 to Gnome 46 which would include gvfs. All of there work is based on Slackware-Current. Gnome is tightly integrated just like KDE (Plasma) is.
what is the minimum gjs version needed for Gnome 45 and for Gnome 46 ?
 
Old 01-06-2024, 06:52 AM   #3476
reddog83
Member
 
Registered: Apr 2018
Distribution: Slackware 15.0/Current
Posts: 468

Rep: Reputation: 246Reputation: 246Reputation: 246
Should be gjs 1.78.1 for 45 except it needs mozjs115 to compile

I meanyou can most certainly use 1.76.x but there is certain programs that need gjs updated i do not remember off hand though

Last edited by reddog83; 01-06-2024 at 06:54 AM.
 
1 members found this post helpful.
Old 01-06-2024, 02:45 PM   #3477
lostintime
Member
 
Registered: Dec 2021
Posts: 211

Rep: Reputation: Disabled
Pat,

Please consider the following. For me I prefer the -q option to reduce some boot log spew, but for this patch I have not requested that be the default config. I have been using this configuration with no issues probably going back to before Slackware 14.2. As always, thanks for your time.

Code:
# /etc/default/sysctl

# Parameters to support /etc/rc.d/rc.S.
# Use this file to override defaults.

# -e:       Use this option to ignore errors about unknown keys.
# --system: Load settings from all system configuration files.
# -q:       Use this option to not display the values to stdout.

SYSCTL_OPTIONS="-e --system"
/etc/rc.d/rc.S
Code:
--- /tmp/rc.S
+++ /tmp/rc.S.new
@@ -301,13 +301,18 @@
 fi
 
 # Configure kernel parameters:
+SYSCTL_OPTIONS="-e --system"
+if [ -r /etc/default/sysctl ]; then
+  # Source user defined options.
+  . /etc/default/sysctl
+fi
 if [ -x /sbin/sysctl -a -r /etc/sysctl.conf -a -z "$container" ]; then
-  echo "Configuring kernel parameters:  /sbin/sysctl -e --system"
-  /sbin/sysctl -e --system
-elif [ -x /sbin/sysctl -a -z "$container" ]; then
-  echo "Configuring kernel parameters:  /sbin/sysctl -e --system"
+  echo "Configuring kernel parameters:  /sbin/sysctl $SYSCTL_OPTIONS"
+  /sbin/sysctl $SYSCTL_OPTIONS
+elif [ -x /sbin/sysctl  ]; then
+  echo "Configuring kernel parameters:  /sbin/sysctl $SYSCTL_OPTIONS"
   # Don't say "Applying /etc/sysctl.conf" or complain if the file doesn't exist
-  /sbin/sysctl -e --system 2> /dev/null | grep -v "Applying /etc/sysctl.conf"
+  /sbin/sysctl $SYSCTL_OPTIONS 2> /dev/null | grep -v "Applying /etc/sysctl.conf"
 fi
 
 # Check all the non-root filesystems:
 
Old 01-06-2024, 04:13 PM   #3478
lostintime
Member
 
Registered: Dec 2021
Posts: 211

Rep: Reputation: Disabled
Pat,

I am hoping a change is possible with respect to updating /etc/motd.

My thought is the file should be touched only when the file is formatted in the default manner and only when the kernel is updated. I have a test system where I monitor file changes. The way rc.S is now configured the file date stamp gets modified with every boot even when the kernel version has not changed. The change with the file date stamp always bubbles up in the monitoring.

Another hiccup is when a user does not want and explicitly deletes the file. The default rc.S script then spews an error message from sed.

Thanks for considering.

P.S. I tried embedding a full patch but the cloudfare challenge nonsense won't let me.

Jeremy, please consider removing the challenge blocking. Just about everybody finds the blocking annoying. Thanks.

Code:
rc.S
# Update the current kernel level in the /etc/motd (Message Of The Day) file,
# but only if the file exists, the file contains a line beginning with the
# word 'Linux', and the kernel version is incorrect.

cloudfare blocked criteria:
if [ -r /etc/motd ]
if [ -n "$(grep "^Linux" /etc/motd)" ]
if [ -z $(grep "^Linux.*/$(/bin/uname -sr)" /etc/motd) ]
if [ -x /bin/sed ]
 
1 members found this post helpful.
Old 01-06-2024, 11:08 PM   #3479
dchmelik
Senior Member
 
Registered: Nov 2008
Location: USA
Distribution: Slackware, FreeBSD, Illumos, NetBSD, DragonflyBSD, Plan9, Inferno, OpenBSD, FreeDOS, HURD
Posts: 1,076

Rep: Reputation: 151Reputation: 151
Lightbulb

Many whom computer/software program/develop on Slackware use chroots, and Debian/Devuan handles these in /etc/bash.bashrc (too wordy... may as well be /etc/bashrc or best just /etc/profile where $PS1 already is). I like their code for this but don't entirely know recall it works... pasting some (with an addition) here to see if Slackware could consider doing similar. I added the middle section 'set to your chroot name' because that's how I use Debian-/Devuan-based chroots, but I guess normally one might set this in command_line or maybe /etc/debian_chroot.

Code:
#/etc/bash.bashrc
#[...]
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set to your chroot name
#debian_chroot=devuan

# set a fancy prompt (non-color, overwrite the one in /etc/profile)
# but only if not SUDOing and have SUDO_PS1 set; then assume smart user.
if ! [ -n "${SUDO_USER}" -a -n "${SUDO_PS1}" ]; then
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
#[...]
For my Slackware chroots (to avoid ruining /etc/profile which happened in past) I currently just copied part of /etc/profile into /etc/profile.d and added what I want like the following. You can see another thing I've used for years is show tty, which might be nice also (Slackware derivative (open)SUSE does by default) (in past I'd also shown time but that gets distracting fast).
Code:
#/etc/profile.d/environment.sh
#[...]
# Set a default shell prompt:
#PS1='`hostname`:`pwd`# '
if [ "$SHELL" = "/bin/pdksh" ]; then PS1='! $ '
elif [ "$SHELL" = "/bin/ksh" ]; then PS1='! ${PWD/#$HOME/\~}$ '
elif [ "$SHELL" = "/bin/zsh" ]; then PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then PS1='$ '
# original
#else PS1="\u@\h:\w\$ "
# show tty
#else PS1='\u@\l${STY#[0-9]*.}.\h:\w\$ '
# show time and tty
#else PS1='\D{%Y.%m.%d}.\A|\u@\l${STY#[0-9]*.}.\h:\W\$ '
# chroot
else PS1='\u@chroot.\h:\w\$ '
fi
#[...]

Last edited by dchmelik; 01-06-2024 at 11:11 PM.
 
1 members found this post helpful.
Old 01-07-2024, 03:44 PM   #3480
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,348

Rep: Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948
I think not go to succes but i try.

I request add libplacebo , and rebuild ffmpeg --enable-libplacebo

https://github.com/haasn/libplacebo
 
2 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Apache 2.4 requests to non-SSL site with "Upgrade-Insecure-Requests: 1" and no trailing / get redirected to default site owendelong Linux - Server 2 06-22-2021 02:08 PM
[SOLVED] Requests for -current (20151216) rworkman Slackware 3441 12-28-2017 03:50 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:19 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration