Re: GTK applications displaying emojis in monochrome rather than color

2024-02-29 Thread Floris Renaud
On donderdag 29 februari 2024 16:19:57 (+01:00), Celejar wrote: > Hi, > > About two years ago [0], I installed the package > "fonts-noto-color-emoji" on my Sid (Xfce4) system, and from then until > several weeks ago, emojis have been displayed throughout the system in > glorious color. Recently

Re: nvidia-driver gets a code 1

2023-03-10 Thread Floris Renaud
On vrijdag 10 maart 2023 08:00:36 (+01:00), Charles Kroeger wrote: > deb https://deb.debian.org/debian bookworm main non-free non-free-firmware > > not > > deb https://deb.debian.org/debian bookworm main contrib non-free > non-free-firmware > > ? > Of course, you can also add 'contrib' se

Re: nvidia-driver gets a code 1

2023-03-09 Thread Floris Renaud
On donderdag 09 maart 2023 23:59:03 (+01:00), Greg Wooledge wrote: > On Thu, Mar 09, 2023 at 04:18:21PM -0500, Charles Kroeger wrote: > > W: Failed to fetch https://deb/debian.org/debian/dists/bookworm/InRelease > > Could not resolve 'deb' > > You have a typo. deb/debian.org should be deb.d

Re: Request for Libjasper package

2022-11-28 Thread Floris Renaud
On maandag 28 november 2022 11:24:03 (+01:00), YOKESWARY ANEBARASSANE wrote: Hi team, Kindly provide me with guidelines to install libjasper-dev package for Debian 11 arm64, as I am unable to locate the package from the Debian website's repository. Appreciate your positive response on the iss

Re: Wine fails because of missing libgcc_s_dw2-1.dll

2022-03-03 Thread Floris Renaud
On donderdag 03 maart 2022 14:38:32 (+01:00), Miguel A. Vallejo wrote: > > Not entirely sure, but I think this is the issue: > > More and more Wine DLL files are built with mingw. > > The libwine package already depends on libz-mingw. > > Probably the 'gcc-mingw-w64-i686-win32-runtime' package

Re: Wine fails because of missing libgcc_s_dw2-1.dll

2022-03-03 Thread Floris Renaud
On woensdag 02 maart 2022 20:01:09 (+01:00), Miguel A. Vallejo wrote: > Hello > > After the recent update of Wine packages in Sid, some programs do not > run because of a missing libgcc_s_dw2-1.dll. They all worked just fine > with the previous version. > > ~$ wine SpaceEngine.exe > 014c:err:modu

Re: iTunesSetup.exe in wine?

2021-10-07 Thread Floris Renaud
On Thursday 07 October 2021 05:40:42 (+02:00), pe...@easthope.ca wrote: > From: Floris Renaud > Date: Wed, 06 Oct 2021 21:54:31 + > > What version of Wine do you use? > > peter@joule:/home/peter$ dpkg -l | grep wine > ii wine-stable 6.0.1~bullseye-1 i386 WINE Is Not

Re: iTunesSetup.exe in wine?

2021-10-06 Thread Floris Renaud
On Wednesday 06 October 2021 22:13:53 (+02:00), pe...@easthope.ca wrote: > From: Floris Renaud > Date: Wed, 06 Oct 2021 10:27:20 + > > An older version of iTunes does seem to work. > > https://bugs.winehq.org/show_bug.cgi?id=47165 > > Thanks. Version 12.8.x is

Re: iTunesSetup.exe in wine?

2021-10-06 Thread Floris Renaud
erminationMethod FFFA, 0031FEAC > peter@joule:~$ > > The latest version of iTunes does not work well with Wine. (Or with wine-staging or wine-ge-custom). An older version of iTunes does seem to work. https://bugs.winehq.org/show_bug.cgi?id=47165 Floris

Re: how to prevent sleeping when sitting at the login screen?

2021-05-03 Thread Floris Renaud
tive-ac-timeout # 'blank', 'suspend', 'shutdown', 'hibernate', 'interactive' or 'nothing' sleep-inactive-ac-type='nothing' # - As above but when on battery # sleep-inactive-battery-timeout=1200 # sleep-inactive-battery-type='suspend' --- Floris

Re: /etc/default/grub doesn't exist, what to do?

2020-07-07 Thread floris
edit? I'd think after 30 years there would be a command to do that, but over an hour on the Internet yielded nothing. With thanks, The package grub2-common has the file: /usr/share/grub/default/grub Which is the default /etc/default/grub file --- Floris

Re: "NVIDIA GeForce 7600 GT"

2020-06-14 Thread floris
he 304 driver, but you must downgrade the Xserver to version 1.19 --- Floris

Re: trouble installing gnome

2020-06-06 Thread floris
doesn't have all packages. The OP also have to add a line like: deb http://deb.debian.org/debian/ bullseye main contrib non-free --- Floris

Re: trouble installing gnome

2020-06-06 Thread floris
installer because it failed to verify: #deb-src http://security.debian.org/debian-security bullseye-security main contrib non-free Your source list has some errors. The easiest way to fix this is: (run as root) echo "deb http://deb.debian.org/debian/ bullseye main contrib non-free" > /etc/apt/sources.list --- Floris

Re: Debian 9 Printer stopped working

2019-03-19 Thread floris
please. Isaac Shields Probably the 3 pages print job is still waiting for the Canon printer to finish and is blocking the other print jobs. You can clear the printer queue in the Cups web interface: http://127.0.0.1:631/ --- Floris

Re: Installing nvidia-driver removes xorg

2018-11-09 Thread floris
upgrade path for me? From bug 903770 [1]: ... the nvidia packages in stretch-backports now require mesa+libglvnd from stretch-backports. You could try to install mesa, libglvnd and xorg from backports first. [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903770 --- Floris

Re: Select between 686-pae and amd64 kernel in Grub?

2018-07-26 Thread floris
Reiner Buehl schreef op 2018-07-25 19:51: Many thanks, Floris! With your expression I now see the other options: bilbo:~# awk -F"'" '/menuentry/ {print $2}' /boot/grub/grub.cfg Debian GNU/Linux Advanced options for Debian GNU/Linux Debian GNU/Linux, with Linux 4.

Re: Select between 686-pae and amd64 kernel in Grub?

2018-07-25 Thread floris
st regards, Reiner menuentry isn't always the first word on the line. So ^menuentry doesn't find all matches. You could try awk -F"'" '/menuentry/ {print $2}' grub.cfg (use ' as the delimiter, search for menuentry and print the second column) --- Floris

Re: Wine error message

2018-07-25 Thread floris
Richard Owlett schreef op 2018-07-24 23:00: On 07/23/2018 07:56 AM, floris wrote: Richard Owlett schreef op 2018-07-21 17:02: Just installed/used wine for first time ever. The Wine version in Debian Stable is very old and unsupported. You should use the WineHQ packages or use the version

Re: GarminExpress possible on Debian with WINE?

2018-07-25 Thread floris
Roy schreef op 2018-07-25 01:37: (G-Express needs dotNetframework.  That is where I get stuck when trying to install it using WINE.) Without knowing the .Net version, you could try to use a clean 32-bit Wineprefix and use winetricks to install .Net --- Floris

Re: Wine error message

2018-07-23 Thread floris
og of Wine error messages (didn't find one)? In Wine version 3.12 there isn't such message. You could read the FAQ, the manual and the forum on winehq.org if you look for error messages. --- Floris

Re: Nvidia drivers

2018-07-06 Thread floris
th Sid right now. So this is still a necessary workaround for Stretch-backports and Buster users. and there is a new bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903121 So be careful if you use the nvidia module. --- Floris

Re: Nvidia drivers

2018-07-06 Thread floris
mbers: 901919, 901932, 901990, 902248, 902661, 902773, 902868, 902891 --- Floris

Re: More on Nvidia 304xxx

2018-06-11 Thread floris
, as well as fixes for critical bugs, will be included in 304.* legacy releases through the end of 2017. [1] In other words, the X server till 1.19 is supported. [1] http://nvidia.custhelp.com/app/answers/detail/a_id/3142 --- Floris

Re: Debian 9 x64 wine32

2018-06-08 Thread floris
installation, you you recommend to proceed? Looks good! Only some developer packages are removed. Only if you compile packages yourself you will need those *-dev packages. --- Floris

Re: Trouble with apt update

2018-06-05 Thread floris
.list or from a *.list file in /etc/apt/sources.list.d/ --- Floris

Re: Debian 9 x64 wine32

2018-06-04 Thread floris
install wine wine32 wine64 libwine libwine:i386 fonts-wine --- Floris

Re: Intermittent blank screen – Stretch

2018-06-03 Thread floris
Mike schreef op 2018-06-02 09:08: On 02/06/18 08:11, floris wrote: Mike schreef op 2018-06-01 01:27: I have just installed Stretch and and randomly getting a 2 second (or so) blank screen. I can go for quite some time without it happening, or it can happen several times over a few minutes. I

Re: Nvidia 340 driver bug

2018-06-03 Thread floris
dekkz...@gmail.com schreef op 2018-06-02 17:17: On 06/01, floris wrote: Pétùr schreef op 2018-05-31 16:20: I have a recurrent bug with the nvidia 340 driver. Here is the trace. Any idea is welcomed. Pétùr [6.748358] [ cut here ] snip f3 eb [6.749313

Re: Nvidia 340 driver bug

2018-06-03 Thread floris
Vidia packages. Try: sudo update-glx --config glx If there are any options choose mesa and rebuild initramfs with: sudo update-initramfs -u --- Floris

Re: Debian 9 x64 wine32

2018-06-03 Thread floris
on in strech-backports or from WineHQ. Wine 1.8 (Stretch) is very old and isn't supported anymore. After you have enabled the backports repo run: sudo apt-get update sudo apt-get install wine wine32 wine64 libwine libwine:i386 fonts-wine If you want the WineHQ packages read: https://wiki.winehq.org/Debian --- Floris

Re: Intermittent blank screen – Stretch

2018-06-01 Thread floris
e any thoughts? Thanks Mike You can try the NVidia driver module from backports [1] and/or run journalctl -f in a terminal and wait for the blank screen. [1] https://packages.debian.org/stretch-backports/nvidia-driver --- Floris

Re: Nvidia 340 driver bug

2018-06-01 Thread floris
is a bug in the nvidia driver module. There is not much you can do until it is fixed upstream. https://devtalk.nvidia.com/default/topic/1031067/ https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=899201 --- Floris

Re: Broken kernel?

2018-03-12 Thread floris
Gene Heskett schreef op 2018-03-12 10:51: On Monday 12 March 2018 05:20:07 floris wrote: Tom Furie schreef op 2018-03-12 09:41: > On Mon, Mar 12, 2018 at 04:34:56AM -0400, Gene Heskett wrote: >> I just happen to have 2 machines on my home network that are Intel >> D525MW >&g

Re: Broken kernel?

2018-03-12 Thread floris
58916/Intel-Atom-Processor-N2600-1M-Cache-1_6-GHz --- Floris

Re: Troubles with my thinkpad e560 ev0

2018-03-11 Thread floris
Maybe there are some clues in your Xorg.*.log file? You can find this log in ~/.local/share/xorg/ or in /var/log/ --- Floris

Re: Can't get my video card running

2018-02-05 Thread floris
tall nvidia-driver - reboot Install the nvidia-settings package if you want to modify your video card settings. --- Floris

Re: Aptitude package manager "package"

2018-01-24 Thread Floris
Op Wed, 24 Jan 2018 10:53:17 +0100 schreef : -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, Jan 24, 2018 at 10:21:45AM +0100, Floris wrote: Op Tue, 23 Jan 2018 20:44:19 +0100 schreef OECT T : [...] >I searched into Synaptics package manager and noticed that the >package

Re: Aptitude package manager "package"

2018-01-24 Thread Floris
Op Tue, 23 Jan 2018 20:44:19 +0100 schreef OECT T : Hi all: I just installed Debian Stretch 9.3.0 and noticed that the Aptitude package was not installed by default. I searched into Synaptics package manager and noticed that the package is not marked with the Debian icon >indicat

Re: T570 Powerkey doesn't work

2018-01-08 Thread Floris
Op Sun, 07 Jan 2018 15:11:54 +0100 schreef Floris : Op Thu, 04 Jan 2018 22:42:34 +0100 schreef Markus Grunwald : Hello, as far as I understand, pressing the power key on my Lenovo T570 should produce some output in the journal like this: Mär 31 18:04:47 my_computer systemd-logind[1402

Re: Weired package policy

2018-01-07 Thread Floris
Op Sun, 07 Jan 2018 15:58:57 +0100 schreef Hans : Hi folks, there is a thing, I cannot understand. From time to time, there appear packages, which are in stable for a long time, and then suddenly they are in unstable and stable, but NOT in testing. This is a policy, I do not understand! An

Re: T570 Powerkey doesn't work

2018-01-07 Thread Floris
Op Thu, 04 Jan 2018 22:42:34 +0100 schreef Markus Grunwald : Hello, as far as I understand, pressing the power key on my Lenovo T570 should produce some output in the journal like this: Mär 31 18:04:47 my_computer systemd-logind[1402]: Power key pressed. On my laptop, this doesn't work - I

Re: [Stable/AMD64] Changing gdm background

2018-01-06 Thread Floris
://wiki.archlinux.org/index.php/GDM Floris

Re: system boots to terminal

2017-12-28 Thread Floris
Op Thu, 28 Dec 2017 11:41:22 +0100 schreef Tony van der Hoff : Hi, Since upgrading Jessie to Stretch, I find my system boots to a terminal, instead of a desktop. I can log in, run startx, and the desktop then appears. I then need to log in again. So, how do I get my system to boot straight t

Re: VLC failure on Debian 9.3

2017-12-27 Thread Floris
Op Wed, 27 Dec 2017 22:07:32 +0100 schreef John Hosack : Hello, I have a DVD that plays on MacOS using VLC, but will not play on Debian using VLC. Some details Disc: Video Format: NTSC, Audio Format: Dolby, Media Format: Standard Definition On MacOS 10.12.6 plays using either: Mac

Re: Nvidia driver installing newer releases from SVN

2017-12-06 Thread Floris
Op Tue, 05 Dec 2017 21:03:46 +0100 schreef Benny Simonsen : Hi, System: Fresh Debian 9 I have a Nvidia GT 1030, that needs 384 (or newer), and I have followed the guide listed here: https://wiki.debian.org/NvidiaGraphicsDrivers#Building_newer_releases_from_SVN Last step: svn-buildpackage -

Re: My name, Norton Cater, email address: norton.ca...@gmail.com, is on your mailing list in error- Please remove it

2017-12-05 Thread Floris
Op Tue, 05 Dec 2017 10:39:07 +0100 schreef Norton Caterq1qb : Thank you Sent from my iPad Please read: https://www.debian.org/MailingLists/#subunsub

Re: Play On Linux, Wine, & iTunes

2017-11-26 Thread Floris
Op Sun, 26 Nov 2017 04:16:04 +0100 schreef Josh W. : Hello my Linux friends!! I have installed wine and all of its dependencies/recomendeds for wine, Play On Linux and am trying >to install iTunes on my Debian stretch system i just cannot find anything that is truly helpful I only have

Re: apt-cache show

2017-11-15 Thread Floris
Op Tue, 14 Nov 2017 18:02:21 +0100 schreef Jilguero ostras : Hi, the command "apt-cache show" displays package information, including package size after installation, but units are not >reported (Mb, Kb, etc). I have seen a bug report long ago: Debian Bug report logs -#173120 but it se

Re: No KODI for buster?

2017-11-13 Thread Floris
impossible. Floris

Re: where is gmplayer in jessie

2017-11-04 Thread Floris
Op Fri, 03 Nov 2017 22:10:32 +0100 schreef Long Wind : i have installed mplayer2 for jessie but where is gmplayer? how to install it? Thanks! Note: the mplayer2 package isn't supported upstream anymore. Please use mplayer or mpv Floris

Use the Intel and Nvidia GPU at the same time

2017-11-04 Thread Floris
ack in the software mode. Is it possible to load both the NVidia GLX and the Intel/Mesa GLX extension, or should I plug the other NVidia GPU back in? Floris

Re: Lightweight Audio-Only DLNA player

2017-10-19 Thread Floris
don't need or want. This is supposed to run audio-only on a small headless SBC with a USB connected DAC, nothing else. Thanks, robert minidlna is not suitable? -- Regards, Rob McCathie isn't minidlna a DLNA server instead of a client? Floris

Re: X crashes when closing one of two running X sessions

2017-10-19 Thread Floris
in the log messages. /var/log/Xorg.x.log gives information about the X server. Or try journalctl to read all log messages. Floris

Re: Update under Gnome - I almost passed out!!!

2017-10-14 Thread Floris
Op Sun, 15 Oct 2017 02:28:10 +0200 schreef A_Man_Without_Clue : Hi all, I just posted question regarding LXDE panel, but i was just trying to see if it would make differences if I switched to GNOME desktop and go back to LXDE hoping it might read config file or whatever correctly but...

Re: x : keyboard not working

2017-10-07 Thread Floris
tion would be most welcome. thanks, ~mayuresh Debian as two xserver-xorg-input packages. The "old" xserver-xorg-input-evdev and the "new" xserver-xorg-input-libinput. You can try to remove one package and install the other. Floris

Re: wine in stretch-backports

2017-09-24 Thread Floris
Op Sun, 24 Sep 2017 03:25:55 +0200 schreef Sridhar M. A. : On Sat, Sep 23, 2017 at 05:02:01AM -0500, Richard Owlett wrote: > > Thank you for the link. Installing wine has been on my "to-do" list. > That page also has valuable links for another problem :} > I install wine from wine-

Re: wine in stretch-backports

2017-09-23 Thread Floris
Op Sat, 23 Sep 2017 10:06:28 +0200 schreef Rainer Dorsch : Hello, there have been many wine version in jessie backports, so far I have not seen any wine versions in stretch backports. rd@blackbox:~/tmp.nobackup/Aglaya/Dataq$ apt-cache policy wine wine: Installiert: 1.8.7-2 Ins

Re: Compatibility of the Irisscan executive 4 scanner

2017-09-14 Thread Floris
Op Thu, 14 Sep 2017 11:31:01 +0200 schreef Alex ARNAUD : Dear all, I install Debian GNU/Linux on computer for visual-impaired users and I've a request about the compatibility of a Irisscan executive 4 scanner. I've sought on the internet without finding any specific data about this mode

Re: mijn e-mails

2017-08-25 Thread Floris
Op Thu, 24 Aug 2017 21:54:27 +0200 schreef wilfried martens : Schrijf me maar uit, a.u.b. Hier lees je hoe je dat kan doen: https://www.debian.org/MailingLists/#subunsub

Re: Disappearance of the kernel

2017-07-21 Thread Floris
thing happened. This password you entered is for what? Your BIOS? The rescue mode? Grub? And what did you expected to happen after you typed this password? Is it possible to give some more information? Floris

Re: gtx1060 debian9.0.1 black screen

2017-07-21 Thread Floris
which doesn't support this newer card. Try to use the closed sourced nvidia-driver from the non-free repo. Floris

Re: Grub2 on clean Stretch install

2017-06-27 Thread Floris
Op Tue, 27 Jun 2017 18:04:19 +0200 schreef David Wright : On Tue 27 Jun 2017 at 17:37:53 (+0200), Floris wrote: Just wondering, why has the grub2-common package two update-grub files? One is just a symlink to the other ls -asl update-grub* 4 -rwxr-xr-x 1 root root 64 jun 23 12:35 update

Grub2 on clean Stretch install

2017-06-27 Thread Floris
update-grub2 -> update-grub If there are programs depending on update-grub2, a small transition might have been a nicer solution. Floris

Re: Stretch upgrade from Jessie -- several issues

2017-06-25 Thread Floris
Op Mon, 26 Jun 2017 03:23:32 +0200 schreef Ralph Katz : -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On 06/25/2017 04:22 PM, Floris wrote: Op Sun, 25 Jun 2017 19:10:40 +0200 schreef Ralph Katz : 3) The sound volume up/down function keys [Fn up/down arrow] no longer respond (xfce4

Re: Stretch upgrade from Jessie -- several issues

2017-06-25 Thread Floris
evemu-describe to find your evdev:... line also read: https://wiki.archlinux.org/index.php/Map_scancodes_to_keycodes https://wiki.archlinux.org/index.php/Extra_keyboard_keys /lib/udev/hwdb.d/60-keyboard.hwdb for more information and examples Floris

Re: Debian 9 - eGalax-Touch

2017-06-21 Thread Floris
om.tw/drivers_Linux.html I can't get the driver from this page running with Debian 9. You can install this driver manually copy the content of eGTouch_v2.5.5814.L-x/eGTouch_v2.5.5814.L-x/eGTouch64/eGTouch64withX to /usr/bin in a terminal run eGTouchD in an other terminal run eGTouchU and test your devi

Re: Debian 9 - eGalax-Touch

2017-06-21 Thread Floris
Can somebody tell me, what I have to do, to get this device useable? Stefan maybe if you replace the new way xserver-xorg-input-libinput with the old way xserver-xorg-input-evdev the device will work again. Floris

Re: Add unknown keyboard key

2017-06-09 Thread Floris
Op Thu, 08 Jun 2017 14:13:53 +0200 schreef Floris : Op Mon, 29 May 2017 16:27:49 +0200 schreef Floris : Hey, I have an older Asus R2E UMPC. A long time it has Windows installed on it, because I only used it as a navigation device. And an attempt, long ago, to install and run Fedora on it

Re: Add unknown keyboard key

2017-06-08 Thread Floris
Op Mon, 29 May 2017 16:27:49 +0200 schreef Floris : Hey, I have an older Asus R2E UMPC. A long time it has Windows installed on it, because I only used it as a navigation device. And an attempt, long ago, to install and run Fedora on it, didn't work. But time has changed, Windows

Add unknown keyboard key

2017-05-29 Thread Floris
ARD_KEY_9a=prog1 But when I add a shortcut with Gnome Keyboard settings. I can add the key to an shortcut, but nothing happens when I press the button. When I add one of the other buttons to a shortcut, they work as expected. Maybe someone has an idea to solve this problem? Floris

Re: zenity --text-info autoscrolling?

2017-03-28 Thread Floris
Op Tue, 28 Mar 2017 04:03:20 +0200 schreef Jason : On Sun, 26 Mar 2017 22:03:33 +0200 Floris wrote: Op Fri, 24 Mar 2017 23:33:06 +0100 schreef Jason : In interactive shell scripts I like piping output into zenity --text-info for display. If the output is more than fits in the zenity

Re: zenity --text-info autoscrolling?

2017-03-26 Thread Floris
mode --show-uri Make URI clickable --uri-color=COLOR Use specified color for links success, floris

Re: Library Install Problem.

2017-02-18 Thread Floris
roblem? Thanks in advance. sudo apt-get purge libcuda1 if you need this package and your GPU is supported by the latest version enable backports and install version 375.26-2 https://backports.debian.org/Instructions/ Floris

Re: stretch apt-get -u dist-upgrade does not result in sid

2017-02-18 Thread Floris
base-files/ Floris

Re: Before I install Debian

2017-02-10 Thread Floris
Op Fri, 10 Feb 2017 22:12:34 +0100 schreef John Culleton : On Sat, 11 Feb 2017 10:04:35 +1300 Ben Caradoc-Davies wrote: On 11/02/17 09:39, John Culleton wrote: > All I need from Debian is Adobe Acrobat Reader. Is this available > with Debian? What functionality do you need? I suggest tryin

Re: Software collections in Debian?

2017-02-10 Thread Floris
Op Fri, 10 Feb 2017 18:51:20 +0100 schreef Curt : On 2017-02-10, Darac Marjal wrote: On Fri, Feb 10, 2017 at 10:55:24AM -0600, Nicholas Geovanis wrote: Does Debian support the "software collections" machinery from RedHat? Or will it support them in the near future? Googling indicates that th

Re: Before I install Debian

2017-02-10 Thread Floris
://wiki.gnome.org/Apps/Evince Floris

Re: Nvidia fan speed control

2017-01-20 Thread Floris
r on: https://devtalk.nvidia.com/default/board/98/linux/ Floris

Re: How to fix screen resolution ( has been set to 1024 * 768 )

2017-01-09 Thread Floris
p VGA and xrandr Floris

Re: Fresh install gives no graphical login

2017-01-09 Thread Floris
hat I have done incorrectly in this case. Kind regards, Tama If you have an internet connection available in tty1 you can install a desktop with: (as root) apt-get install tasksel tasksel --list-tasks choose your favorite desktop from the list and install it with: tasksel install -desktop Floris

When do I use perl, awk, sed, grep, cut etc.. Was[OT] get all devices from a vendor from pci.ids

2017-01-06 Thread Floris
ops in. Is there a "rule" when I use perl, awk, sed, grep, cut etc. in a script? Often I find multiple solutions on the Internet to achieve the same output. A simple example: cut -d: -f2 or awk -F: '{ print $2 }' Is the one better as the other (CPU/RAM usage), or is it just "taste" Floris

Re: [OT] get all devices from a vendor from pci.ids

2017-01-05 Thread Floris
Op Thu, 05 Jan 2017 21:07:10 +0100 schreef Nicolas George : Le sextidi 16 nivôse, an CCXXV, Floris a écrit : Thanks! But I prefer a solution with "essential" Debian software/ packages ~ $ dpkg -S =perl perl-base: /usr/bin/perl ~ $ dpkg -s perl-base | head -n 2 Package: perl-base

Re: [OT] get all devices from a vendor from pci.ids

2017-01-05 Thread Floris
Op Thu, 05 Jan 2017 18:13:41 +0100 schreef Javier Barroso : Hello, On Thu, Jan 5, 2017 at 6:00 PM, Floris wrote: Op Wed, 04 Jan 2017 17:27:55 +0100 schreef Floris : (Not really a Debian question, but I know there are smart people on this list.) I want to search the pci.ids file

Re: [OT] get all devices from a vendor from pci.ids

2017-01-05 Thread Floris
Op Wed, 04 Jan 2017 17:27:55 +0100 schreef Floris : (Not really a Debian question, but I know there are smart people on this list.) I want to search the pci.ids file (from the pciutils package) for all Compaq devices. Pci ID's 0e11: , 1032: and 10da: matches C

[OT] get all devices from a vendor from pci.ids

2017-01-04 Thread Floris
sight Lights-Out Edition f130 NetFlex-3/P ThunderLAN 1.0 f150 NetFlex-3/P ThunderLAN 2.3 0e55 HaSoTec GmbH ... Is there an awk, grep and or sed solution? Floris

Re: question about aptitudetask-ldxe

2016-12-26 Thread Floris
: localhost:10.0 Next? Cheers, Gene Heskett Not recommended, but it will work as the normal user: xhost + su and run synaptic xhost - Floris

Re: Jessie gdm3 configuration for multiseat

2016-12-19 Thread Floris
ur second seat (the gpu must be a "master" device) - run $ loginctl attach seat1 /sys/devices/pci.../.../.../your/mouse for your mouse, keyboard and Gpu log-off and log-on and gdm3 will appear on both screens Success, Floris older information: http://code.lexarcana.com/posts/simple

Re: Why I can not install software on debian easily?

2016-12-19 Thread Floris
are able to install a Debian package with a click. I tried to install opera on Debian. I have computer science degree and I still trying to do this. I know nobody will read this email. Time to go back to Windows. John Success, Floris

Re: Apt problem

2016-12-19 Thread Floris
However the apt-get commands and apps work. How do I solve the problem/warnings? do you have a file in /etc/apt/preferences.d/ or the file /etc/apt/preferences If one of the above files exists, then a copy of the file will give us more information. Floris

Re: proftpd in testing

2016-12-11 Thread Floris
in a week... ;-) Best, Florian proftpd is removed from testing, because of new bugs. See https://packages.qa.debian.org/p/proftpd-dfsg.html for more information. Success, Floris

Intel Atom Poulsbo, gma500

2016-12-08 Thread Floris
kills are not as good as they should be, but is there anyone who use this chip on a Debian testing computer or know some way to use the 3D hardware acceleration? thanks, Floris [1] https://01.org/linuxgraphics/documentation/faq

Re: usb 2-4: unable to read config index 0 descriptor/all

2016-10-17 Thread Floris
agens. I use the debian jessie with kde --Manoel remove the device which is attached to usb 2-4 (or tell us the name of the device and maybe we can help) Floris

Re: Problem with 2 external monitors on a laptop

2016-10-07 Thread Floris
& X starts with no errors, then i plug the other monitor in and they both >works. Mariusz create the folder /var/log/journal reboot with both monitors plugged in and let the configuration fail unplug a monitor, reboot and use journalctl -b -1 to read the error messages Floris

Re: kernel 4.7.0 and nvidia

2016-10-06 Thread Floris
Op Thu, 06 Oct 2016 13:45:46 +0200 schreef Hans : Can the kernel-module be built? I suggest, to use the *-dkms stuff for > building. If this does not work, you may try the drivers from the nvidia > site directly. Before installiing this, get rid of all nvidia packages > (i.e. apt- get --purge

Re: Upgrade fails

2016-09-29 Thread Floris
Op Thu, 29 Sep 2016 12:44:10 +0200 schreef Tony van der Hoff : On 29/09/16 12:11, Floris wrote: Op Thu, 29 Sep 2016 12:07:47 +0200 schreef Tony van der Hoff : re-enable the deb-multimedia repo (don't forget to run apt-get update) and try to update your system with apt-get dselect-up

Re: Upgrade fails

2016-09-29 Thread Floris
Op Thu, 29 Sep 2016 12:07:47 +0200 schreef Tony van der Hoff : On 29/09/16 12:03, Floris wrote: apt-get purge vlc-data No!! I don't want to lose this lot: The following packages will be REMOVED: akregator* apper* ark* browser-plugin-vlc* dolphin* dragonplayer* gwenview* jovie* juk

Re: Upgrade fails

2016-09-29 Thread Floris
Op Thu, 29 Sep 2016 11:58:57 +0200 schreef Tony van der Hoff : On 29/09/16 11:48, Floris wrote: The following packages have unmet dependencies: libvlccore8 : Depends: vlc-data (= 2.2.4-1~deb8u1) but 1:2.0.6-dmo3 is to be installed Bah! you have enabled the Deb Multimedia repo. Which

Re: DHCP failure (was Re: Unidentified subject!)

2016-09-29 Thread Floris
"ip l" tell you? "ip a", too. -dsr- If it is wifi, I think you need the firmware-iwlwifi package from non-free for this laptop https://wiki.debian.org/iwlwifi Floris

Re: Upgrade fails

2016-09-29 Thread Floris
The following packages have unmet dependencies: libvlccore8 : Depends: vlc-data (= 2.2.4-1~deb8u1) but 1:2.0.6-dmo3 is to be installed Bah! you have enabled the Deb Multimedia repo. Which is not part of Debian. Now you have two options: - remove the repo and use the real Debian packages -

  1   2   3   >