Re: Running HAL and udev Simultaneously
On Wed, 16 Sep 2015 21:20:52 -0700 Patrick Bartek wrote: Hello Patrick, >The failure to mirror started under Yahoo mail. Changed to gmail >hoping that would fix it. It didn't. So, I don't think it's the SMTP >server. Gmail doesn't echo your list mail back to you. This is well known. google even mention it in their FAQ - it's one of their 'features'. -- Regards _ / ) "The blindingly obvious is / _)radnever immediately apparent" Life's short, don't make a mess of it No Time To Be 21 - The Adverts pgp5GlJtLQpJ_.pgp Description: OpenPGP digital signature
Re: Running HAL and udev Simultaneously
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, Sep 17, 2015 at 08:34:48AM +0100, Brad Rogers wrote: > On Wed, 16 Sep 2015 21:20:52 -0700 > Patrick Bartek wrote: > > Hello Patrick, > > >The failure to mirror started under Yahoo mail. Changed to gmail > >hoping that would fix it. It didn't. So, I don't think it's the SMTP > >server. > > Gmail doesn't echo your list mail back to you. This is well known. > google even mention it in their FAQ - it's one of their 'features'. Which let us non-googlers see at a glance who is "on" google: they tend to stutter (sending the mail more than once) because the feedback loop is missing <:*) - -- t -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlX6d4QACgkQBcgs9XrR2kaDKACfQbvp8wwVboDgBJQno+/fVxDi WTkAn0EaLKREu/CRZBdi3TipJP0AHhAR =2K9c -END PGP SIGNATURE-
www.lists.debian.org
Hi, The version of your website and SEO-Algorithm is outdated and affecting your outcome on prominent search-engines. We can make the necessary changes to improve your rankings in the organic search result and drive more quality visitors to your website. Would you be open to seeing briefer info/quote for what I would like to accomplish, with no-obligation? Best regards, Rosie Senior-Developer Webex E-NETWORKS Pty Ltd GOOGLE CERTIFIED PARTNER Headquarters: 137 Devonshire St, Surry Hills NSW 2010 Other Offices: Hong Kong & China | USA | New Zealand | UAE | Singapore
Re: Bug? - Debian does not assign IP address after reboot?
Hi, I removed allow-hotplug eth0 and it still does not auto configure :( Where would i find log files to diagnose this? Thanks On 16 September 2015 at 20:55, Sven Hartge wrote: > linuxthefish wrote: > > > After I reboot my Debian machine it does not assign an IP to eth0. It > > brings the interface up after a reboot, but does not set the IP on it! > > Running a cronjob every min to set the IP address is the only way to > > fix this, but why does it happen? Is this some sort of bug? > > > My interfaces file is as follows: > > > auto eth0 > > allow-hotplug eth0 > > iface eth0 inet static > > address 172.16.0.30 > > netmask 255.255.0.0 > > You cannot have both "auto eth0" _and_ "allow-hotplug eth0". Choose one. > > S° > > -- > Sigmentation fault. Core dumped. > >
Re: Bug? - Debian does not assign IP address after reboot?
linuxthefish wrote: > I removed allow-hotplug eth0 and it still does not auto configure :( > Where would i find log files to diagnose this? Please run ifup -v eth0 after a reboot if the error persists and paste the output verbatim to the list. Grüße, Sven. -- Sigmentation fault. Core dumped.
Compiling coreutils from source
Hi everyone, I'm trying to static linking the coreutils. But for some reasons it fails with a cryptic bug for me. For building I'm using the vagrant box deb/jessie-amd64. So anyone who is interested can reproduce it. I have done the following steps: > $ apt-get source coreutils > $ cd coreutils-8.23/ > $ export CFLAGS="-static -O2 -g" > $ ./configure > $ make And ended up whit this error: > /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginT.o: relocation > R_X86_64_32 against `__TMC_END__' can not be used when making a shared > object; recompile with -fPIC I tried to recompile it with -fPIC options like mentioned from the error... > $ make clean > $ export CFLAGS="-static -O2 -g -fPIC" > $ make ... and ended up with the same error. I googled a bit around and found this stackoverflow questions which sounds similar to my problem: http://askubuntu.com/questions/530617/how-to-make-a-static-binary-of-coreutils But also the approved solution did not work for me. Can someone explain me what I'm missing? :) I would also be interested what this message means and if it can be ignored or anything should be done: > /home/vagrant/coreutils-8.23/src/whoami.c:85: warning: Using 'getpwuid' in > statically linked applications requires at runtime the shared libraries from > the glibc version used for linking Cheers Flo signature.asc Description: OpenPGP digital signature
Re: Running HAL and udev Simultaneously
On Thursday 17 September 2015 08:34:48 Brad Rogers wrote: > On Wed, 16 Sep 2015 21:20:52 -0700 > Patrick Bartek wrote: > > Hello Patrick, > > >The failure to mirror started under Yahoo mail. Changed to gmail > >hoping that would fix it. It didn't. So, I don't think it's the SMTP > >server. > > Gmail doesn't echo your list mail back to you. This is well known. > google even mention it in their FAQ - it's one of their 'features'. That only applies if you use their SMTP servers. If you use a different SMTP server it does come back to you. At least, mine does, consistently, when I use my ISP's server and not when I use Google's SMTP server. This will come back top me. Lisi
Re: Running HAL and udev Simultaneously
On Thursday 17 September 2015 05:20:52 Patrick Bartek wrote: > The failure to mirror started under Yahoo mail. Changed to gmail > hoping that would fix it. It didn't. So, I don't think it's the SMTP > server. Unless both providers have the same settings. But I'll check > my setting which I haven't changed since setting up the account. :-? > Or, > maybe, it just might be the Debian list server itself. I get mine, if I use my ISP's SMTP server - but not if I use Google's. ??? Lisi
Re: Removal of a Desktop Environment
On Wed, Sep 16, 2015 at 1:57 PM, Himanshu Shekhar wrote: > Hey!... I made it. > I selected all packages with name or description containing lxde from > synaptic and marked them for complete removal. > Now, the task is done and I got what I wanted. > Thanks :) > There is a simpler way to remove all packages whose name matches a regular expression. For example, in your case, I think you could do something like % apt-show-versions -r kde | cut -f1 -d':' > pkg_list.txt % xargs -a pkg_list.txt sudo apt-get remove -- Kamaraju S Kusumanchi | http://raju.shoutwiki.com/wiki/Blog
Re: Compiling coreutils from source
On Thu, 17 Sep 2015 06:04:03 -0400 (EDT), Florian Pelgrim wrote: > > I'm trying to static linking the coreutils. But for some reasons it > fails with a cryptic bug for me. > > For building I'm using the vagrant box deb/jessie-amd64. So anyone who > is interested can reproduce it. > > I have done the following steps: > $ apt-get source coreutils > $ cd coreutils-8.23/ > $ export CFLAGS="-static -O2 -g" > $ ./configure > $ make > > And ended up whit this error: > /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginT.o: relocation > R_X86_64_32 > against `__TMC_END__' can not be used when making a shared object; > recompile with -fPIC I don't pretend to understand the make process well enough to explain why you got the error that you did. What I can tell you is that, in the past, I have been successful with making local modifications to the coretuils package by following a procedure similar to the following: apt-get source coreutils rm coreutils_* cd coreutils-8.23 . . make local modifications . dpkg-buildpackage -b -uc -rfakeroot Once quirk of the build process for this package is that you use fakeroot debian/rules clean1 to do a clean, rather than the usual fakeroot debian/rules clean I don't know if this helps or not. -- .''`. Stephen Powell : :' : `. `'` `-
Re: Acer c720 OS replacement
2015/09/17 4:27 "Jake Lar" : > > Hello, I'm replacing the Chrome operating system on my Acer c720 That is an Intel processor. > and I'm not sure which netinst CD image is appropriate for the Exynos 5250 GAIA ARM processor That is not the processor in the c720. > (haswell architecture). Haswell is a code name for certain intel processors, none of which are ARM. > Could you give me any direction with this? As Miguel and Sergio indicate, AMD64 seems to be indicated if you really are talking about the c720. > Thank you! > > -J
Re: Removal of a Desktop Environment
On 2015-09-17 at 06:34, kamaraju kusumanchi wrote: > On Wed, Sep 16, 2015 at 1:57 PM, Himanshu Shekhar > wrote: > >> Hey!... I made it. >> I selected all packages with name or description containing lxde from >> synaptic and marked them for complete removal. >> Now, the task is done and I got what I wanted. >> Thanks :) > > There is a simpler way to remove all packages whose name matches a > regular expression. For example, in your case, I think you could do > something like > > % apt-show-versions -r kde | cut -f1 -d':' > pkg_list.txt > % xargs -a pkg_list.txt sudo apt-get remove If I'm not mistaken, there's an even easier way: If 'apt-get install' or 'apt-get remove' doesn't see a package matching the requested name, and the requested name contains one of a few specific characters (see the man page), it treats the requested name as a regular expression to be matched against the complete package list. Therefore, apt-get remove ".*lxde.*" would probably have worked in this case. -- The Wanderer The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man. -- George Bernard Shaw signature.asc Description: OpenPGP digital signature
Re: Debian + Windows with UEFI
On Thu, Sep 17, 2015 at 12:26:13AM -0400, real bas wrote: > Hi again, > Someone managed to install NVIDIA driver for GeForce 830M? I have trouble with > installation automatically and manually (black screen, lightdm can't start). > Someone can help me? The GeForce 830M is listed as a "Supported Device"[1], so you should be able to follow the instructions at [2] to get that installed. If it doesn't work, post the contents of your /var/log/Xorg.0.log file. [1] http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/supportedchips.html [2] https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 -- For more information, please reread. signature.asc Description: Digital signature
[WPS] a start job is running for lsb raise network interfaces
Hi, I want to configure my system to use WPS, so I put this into /etc/network/interfaces.d/wlan0: auto wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf And this into /etc/wpa_supplicant/wpa_supplicant.conf: ctrl_interface=/var/run/wpa_supplicant ctrl_interface_group=0 update_config=1 If I run "wpa_cli wps_pbc" everything works flawlessly, and it updates my wpa_supplicant.conf with the wifi association details. Unfortunately, when I reboot my system without any association in wpa_supplicant.conf (or when the access point is out of range) it gets stuck at "a start job is running for lsb raise network interfaces". Any idea? Thanks, Niccolò Belli
konqueror and html5
Hi foilks, as youtube changed its forms. konqueror cannot show videos in full size. I know, this option must be set in the config of konqueror. Whilst I can set this in firefox with the option "about:config", in konqueror this does not work. Is there any other way to activate full size of html5 videos? Thanks. Best Hans
Re: Debian + Windows with UEFI
Hi Darac, I follow this article [2] and still black screen with lightdm error (attached 1). When execute nvidia-detected says 'No nvidia gpu detected' but in lspci say that I have nvidia card (attached 2, last line) 2015-09-17 8:26 GMT-04:00 Darac Marjal : > On Thu, Sep 17, 2015 at 12:26:13AM -0400, real bas wrote: > > Hi again, > > Someone managed to install NVIDIA driver for GeForce 830M? I have > trouble with > > installation automatically and manually (black screen, lightdm can't > start). > > Someone can help me? > > The GeForce 830M is listed as a "Supported Device"[1], so you should be > able to follow the instructions at [2] to get that installed. If it > doesn't work, post the contents of your /var/log/Xorg.0.log file. > > [1] > > http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/supportedchips.html > [2] https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 > > > -- > For more information, please reread. > [ 326.401] X.Org X Server 1.16.4 Release Date: 2014-12-20 [ 326.401] X Protocol Version 11, Revision 0 [ 326.401] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian [ 326.401] Current Operating System: Linux debian 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1+deb8u3 (2015-08-04) x86_64 [ 326.401] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-amd64 root=UUID=902bd776-77e8-4b24-a709-88d4788f5926 ro quiet [ 326.401] Build Date: 11 February 2015 12:32:02AM [ 326.401] xorg-server 2:1.16.4-1 (http://www.debian.org/support) [ 326.401] Current version of pixman: 0.32.6 [ 326.401] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 326.401] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 326.401] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 17 09:05:13 2015 [ 326.401] (==) Using config file: "/etc/X11/xorg.conf" [ 326.401] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 326.401] (==) ServerLayout "Layout0" [ 326.401] (**) |-->Screen "Screen0" (0) [ 326.401] (**) | |-->Monitor "Monitor0" [ 326.401] (**) | |-->Device "Device0" [ 326.401] (**) |-->Input Device "Keyboard0" [ 326.401] (**) |-->Input Device "Mouse0" [ 326.401] (==) Automatically adding devices [ 326.401] (==) Automatically enabling devices [ 326.401] (==) Automatically adding GPU devices [ 326.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. [ 326.401] Entry deleted from font path. [ 326.401] (==) FontPath set to: /usr/share/fonts/X11/misc, /usr/share/fonts/X11/100dpi/:unscaled, /usr/share/fonts/X11/75dpi/:unscaled, /usr/share/fonts/X11/Type1, /usr/share/fonts/X11/100dpi, /usr/share/fonts/X11/75dpi, built-ins [ 326.401] (==) ModulePath set to "/usr/lib/xorg/modules" [ 326.401] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled. [ 326.401] (WW) Disabling Keyboard0 [ 326.401] (WW) Disabling Mouse0 [ 326.401] (II) Loader magic: 0x7f411575bd80 [ 326.401] (II) Module ABI versions: [ 326.401] X.Org ANSI C Emulation: 0.4 [ 326.401] X.Org Video Driver: 18.0 [ 326.401] X.Org XInput driver : 21.0 [ 326.401] X.Org Server Extension : 8.0 [ 326.401] (II) xfree86: Adding drm device (/dev/dri/card0) [ 326.402] (--) PCI:*(0:0:2:0) 8086:1616:1028:069a rev 9, Mem @ 0xf500/16777216, 0xd000/268435456, I/O @ 0xf000/64 [ 326.402] (--) PCI: (0:8:0:0) 10de:1340:1028:069a rev 162, Mem @ 0xf600/16777216, 0xe000/268435456, 0xf000/33554432, I/O @ 0xd000/128, BIOS @ 0x/524288 [ 326.402] (II) LoadModule: "glx" [ 326.402] (II) Loading /usr/lib/xorg/modules/linux/libglx.so [ 326.409] (II) Module glx: vendor="NVIDIA Corporation" [ 326.409] compiled for 4.0.2, module version = 1.0.0 [ 326.409] Module class: X.Org Server Extension [ 326.409] (II) NVIDIA GLX Module 340.65 Tue Dec 2 09:10:06 PST 2014 [ 326.409] (II) LoadModule: "nvidia" [ 326.409] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so [ 326.410] (II) Module nvidia: vendor="NVIDIA Corporation" [ 326.410] compiled for 4.0.2, module version = 1.0.0 [ 326.410] Module class: X.Org Video Driver [ 326.410] (II) NVIDIA dlloader X Driver 340.65 Tue Dec 2 08:47:36 PST 2014 [ 326.410] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs [ 326.410] (++) using VT number 7 [ 326.410] (EE) No devices detected. [ 326.410] (EE) Fatal server error: [ 326.410] (EE) no screens found(EE) [ 326.410] (EE) Please consult the The X.Org Foundation support at http://wiki.x.org for help. [ 326.410] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information. [ 326.410] (EE) lspci Description: Binary data
Re: how to sum a column in openoffice calc
On Wed, 2015-09-16 at 14:13 -0700, Li Wei wrote: > Thanks to all those who reply! > > I have prefix equal sign, but it doesn't work > I have attach the calc file, it's in Chinese, (sorry) > my question is how to display sum(N1:N8) in cell N9 Hi, There are also mailing lists specifically for LibreOffice: https://www.libreoffice.org/get-help/mailing-lists/ and also in Chinese: https://wiki.documentfoundation.org/Local_Mailing_Lists#Chinese You might get faster help there. -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 6FAB5CD5 signature.asc Description: This is a digitally signed message part
Narrowing down problem source - was [Re: Extracting directories from an ISO image, command line tool?]
Richard Owlett wrote: Thomas Schmitt wrote: Hi, Richard Owlett wrote: richard@jessie:~$ ls -l /media/richard/Lexar/dvd8_2.iso -rw-r--r-- 1 richard richard 3976200192 Sep 9 07:36 /media/richard/Lexar/dvd8_2.iso richard@jessie:~$ /sbin/isosize /media/richard/Lexar/dvd8_2.iso 4677738496 You will need to get a new dvd8_2.iso of at least 4677738496 bytes size. I've got some links "somewhere" for copying DVDs to files such that checksums can be verified. Suspect that info may useful. Depending on the DVD medium type you have to expect trailing garbage after the end of the ISO. This has to be taken into respect when copying, diffing, or md5summing. I would use for copying from DVD to disk: blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) echo "Byte count: $(expr $blocks '*' 2048)" dd if=/dev/sr0 bs=2048 count=$blocks of=dvd8_2.iso (It would be nice if Debian's MD5SUMS would not only tell MD5 and image name but also the image size, or if there was a SIZES file.) Error messages from dd or dvd8_2.iso turning out smaller than the announced byte count indicate failure of copying. It appears that all of my dvd8_*.iso (except possibly dvd8_1.iso) were defective. Using instructions above to create dvd8_2.iso apparently works. Don't know what I did wrong last time around. I started over again. I switched to a laptop dedicated to things that may not work as expected. For some of my projects I regularly wipe the disk and do a complete reinstall of Debian. Currently I'm running Debian 8.0 with Mate as DE. No updates. I used blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) echo "Byte count: $(expr $blocks '*' 2048)" dd if=/dev/sr0 bs=2048 count=$blocks of=dvd8_2.iso as a pattern for each DVD. _Some_ passed your test of ls -l /media/richard/Lexar/dvd8_2.iso /sbin/isosize /media/richard/Lexar/dvd8_2.iso Example: ls -l dvd8_9.iso /sbin/isosize dvd8_9.iso resulted in richard@debian:~$ ls -l dvd8_9.iso -rw-r--r-- 1 richard richard 3976200192 Sep 16 11:50 dvd8_9.iso richard@debian:~$ richard@debian:~$ /sbin/isosize dvd8_9.iso 4460664832 ** 3976200192 <> 4460664832 I did a rerun. The only apparent change in test conditions was I used a different instance of Mate Terminal. blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) echo "Byte count: $(expr $blocks '*' 2048)" dd if=/dev/sr0 bs=2048 count=$blocks of=rerundvd9.iso ls -l rerundvd9.iso /sbin/isosize rerundvd9.iso result of rerun richard@debian:~$ blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) richard@debian:~$ richard@debian:~$ echo "Byte count: $(expr $blocks '*' 2048)" Byte count: 4460664832 richard@debian:~$ richard@debian:~$ dd if=/dev/sr0 bs=2048 count=$blocks of=rerundvd9.iso 2178059+0 records in 2178059+0 records out 4460664832 bytes (4.5 GB) copied, 798.488 s, 5.6 MB/s richard@debian:~$ ls -l rerundvd9.iso -rw-r--r-- 1 richard richard 4460664832 Sep 17 08:26 rerundvd9.iso richard@debian:~$ richard@debian:~$ /sbin/isosize rerundvd9.iso 4460664832 I've a gut feeling that Mate Terminal isn't redoing blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) every time. Nagging memories of a similar problem with either Win95 or Win98. Might not get to do suitable test until tomorrow. Later.
Re: Debian + Windows with UEFI
On Thu, Sep 17, 2015 at 09:18:01AM -0400, real bas wrote: > Hi Darac, > I follow this article [2] and still black screen with lightdm error (attached > 1). When execute nvidia-detected says 'No nvidia gpu detected' but in lspci > say > that I have nvidia card (attached 2, last line) Ah, looking at that you ALSO have an Intel card, which *probably* means you have an NVIDIA Optimus configuration. In that, the Intel card drives the display but can either use its own, low-power 3D engine, or a higher-power one provided by the NVIDIA device. As I understand it, in this configuration, the NVIDIA card can't drive the display by itself (in contrast to a dual-card configuration in a desktop, where both cards would have monitor ports). In order to get Optimus working with linux, you need to install Bumblebee. This page[1] should give you the information you require there. [1] https://wiki.debian.org/Bumblebee > > 2015-09-17 8:26 GMT-04:00 Darac Marjal <[1]mailingl...@darac.org.uk>: > > On Thu, Sep 17, 2015 at 12:26:13AM -0400, real bas wrote: > > Hi again, > > Someone managed to install NVIDIA driver for GeForce 830M? I have > trouble > with > > installation automatically and manually (black screen, lightdm can't > start). > > Someone can help me? > > The GeForce 830M is listed as a "Supported Device"[1], so you should be > able to follow the instructions at [2] to get that installed. If it > doesn't work, post the contents of your /var/log/Xorg.0.log file. > > [1] > [2]http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/ > supportedchips.html > [2] [3]https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 > > > -- > For more information, please reread. > > > > References: > > [1] mailto:mailingl...@darac.org.uk > [2] > http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/supportedchips.html > [3] https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 > [ 326.401] > X.Org X Server 1.16.4 > Release Date: 2014-12-20 > [ 326.401] X Protocol Version 11, Revision 0 > [ 326.401] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian > [ 326.401] Current Operating System: Linux debian 3.16.0-4-amd64 #1 SMP > Debian 3.16.7-ckt11-1+deb8u3 (2015-08-04) x86_64 > [ 326.401] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-amd64 > root=UUID=902bd776-77e8-4b24-a709-88d4788f5926 ro quiet > [ 326.401] Build Date: 11 February 2015 12:32:02AM > [ 326.401] xorg-server 2:1.16.4-1 (http://www.debian.org/support) > [ 326.401] Current version of pixman: 0.32.6 > [ 326.401] Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > [ 326.401] Markers: (--) probed, (**) from config file, (==) default > setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > [ 326.401] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 17 09:05:13 > 2015 > [ 326.401] (==) Using config file: "/etc/X11/xorg.conf" > [ 326.401] (==) Using system config directory "/usr/share/X11/xorg.conf.d" > [ 326.401] (==) ServerLayout "Layout0" > [ 326.401] (**) |-->Screen "Screen0" (0) > [ 326.401] (**) | |-->Monitor "Monitor0" > [ 326.401] (**) | |-->Device "Device0" > [ 326.401] (**) |-->Input Device "Keyboard0" > [ 326.401] (**) |-->Input Device "Mouse0" > [ 326.401] (==) Automatically adding devices > [ 326.401] (==) Automatically enabling devices > [ 326.401] (==) Automatically adding GPU devices > [ 326.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not > exist. > [ 326.401] Entry deleted from font path. > [ 326.401] (==) FontPath set to: > /usr/share/fonts/X11/misc, > /usr/share/fonts/X11/100dpi/:unscaled, > /usr/share/fonts/X11/75dpi/:unscaled, > /usr/share/fonts/X11/Type1, > /usr/share/fonts/X11/100dpi, > /usr/share/fonts/X11/75dpi, > built-ins > [ 326.401] (==) ModulePath set to "/usr/lib/xorg/modules" > [ 326.401] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or > 'vmmouse' will be disabled. > [ 326.401] (WW) Disabling Keyboard0 > [ 326.401] (WW) Disabling Mouse0 > [ 326.401] (II) Loader magic: 0x7f411575bd80 > [ 326.401] (II) Module ABI versions: > [ 326.401] X.Org ANSI C Emulation: 0.4 > [ 326.401] X.Org Video Driver: 18.0 > [ 326.401] X.Org XInput driver : 21.0 > [ 326.401] X.Org Server Extension : 8.0 > [ 326.401] (II) xfree86: Adding drm device (/dev/dri/card0) > [ 326.402] (--) PCI:*(0:0:2:0) 8086:1616:1028:069a rev 9, Mem @ > 0xf500/16777216, 0xd000/268435456, I/O @ 0xf000/64 > [ 326.402] (--) PCI: (0:8:0:0) 10de:1340:1028:069a rev 162, Mem @ > 0xf600/16777216, 0xe000/268435456, 0xf000/33554432, I/O @ > 0xd000/128, BIOS @ 0x/524288 > [ 326.402] (II) LoadModule: "glx
Re: Debian + Windows with UEFI
Le 17/09/2015 17:02, Darac Marjal a écrit : > On Thu, Sep 17, 2015 at 09:18:01AM -0400, real bas wrote: >> Hi Darac, >> I follow this article [2] and still black screen with lightdm error (attached >> 1). When execute nvidia-detected says 'No nvidia gpu detected' but in lspci >> say >> that I have nvidia card (attached 2, last line) > Ah, looking at that you ALSO have an Intel card, which *probably* means > you have an NVIDIA Optimus configuration. In that, the Intel card drives > the display but can either use its own, low-power 3D engine, or a > higher-power one provided by the NVIDIA device. As I understand it, in > this configuration, the NVIDIA card can't drive the display by itself > (in contrast to a dual-card configuration in a desktop, where both cards > would have monitor ports). > > In order to get Optimus working with linux, you need to install > Bumblebee. This page[1] should give you the information you require > there. > > [1] https://wiki.debian.org/Bumblebee > >> On my Lenovo T530 it is a setting in the BIOS : always use Intel, Always use nvidia or Optimus. signature.asc Description: OpenPGP digital signature
Re: how to sum a column in openoffice calc
Li Wei wrote: > I have attach the calc file, it's in Chinese, (sorry) > my question is how to display sum(N1:N8) in cell N9 I can see it now. N1:N8 do not contain numbers; they contain alphanumeric strings. If you select N1, then this is what you see in the formula bar: '-755.68 The apostroph it starts with, shows that this string is alphanumeric. I don't know how you got those numbers there in the first place. There must be a better way. But there is a workaround. Insert a new column O (next to N) and put this formula in O1: =N1+0 (0 = zero) In LibreOffice, an addition like this converts the alphanumeric string into a number. Now copy O1 to O2:O8 and you'll see that SUM(O1:O8) in O9 works.
Re: Debian + Windows with UEFI
Then, I need install the bumblebee (without nvidia-xconfig)? 2015-09-17 11:02 GMT-04:00 Darac Marjal : > On Thu, Sep 17, 2015 at 09:18:01AM -0400, real bas wrote: > > Hi Darac, > > I follow this article [2] and still black screen with lightdm error > (attached > > 1). When execute nvidia-detected says 'No nvidia gpu detected' but in > lspci say > > that I have nvidia card (attached 2, last line) > > Ah, looking at that you ALSO have an Intel card, which *probably* means > you have an NVIDIA Optimus configuration. In that, the Intel card drives > the display but can either use its own, low-power 3D engine, or a > higher-power one provided by the NVIDIA device. As I understand it, in > this configuration, the NVIDIA card can't drive the display by itself > (in contrast to a dual-card configuration in a desktop, where both cards > would have monitor ports). > > In order to get Optimus working with linux, you need to install > Bumblebee. This page[1] should give you the information you require > there. > > [1] https://wiki.debian.org/Bumblebee > > > > > 2015-09-17 8:26 GMT-04:00 Darac Marjal <[1]mailingl...@darac.org.uk>: > > > > On Thu, Sep 17, 2015 at 12:26:13AM -0400, real bas wrote: > > > Hi again, > > > Someone managed to install NVIDIA driver for GeForce 830M? I have > trouble > > with > > > installation automatically and manually (black screen, lightdm > can't > > start). > > > Someone can help me? > > > > The GeForce 830M is listed as a "Supported Device"[1], so you should > be > > able to follow the instructions at [2] to get that installed. If it > > doesn't work, post the contents of your /var/log/Xorg.0.log file. > > > > [1] > > [2]http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/ > > supportedchips.html > > [2] [3] > https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 > > > > > > -- > > For more information, please reread. > > > > > > > > References: > > > > [1] mailto:mailingl...@darac.org.uk > > [2] > http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/supportedchips.html > > [3] https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 > > > [ 326.401] > > X.Org X Server 1.16.4 > > Release Date: 2014-12-20 > > [ 326.401] X Protocol Version 11, Revision 0 > > [ 326.401] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian > > [ 326.401] Current Operating System: Linux debian 3.16.0-4-amd64 #1 > SMP Debian 3.16.7-ckt11-1+deb8u3 (2015-08-04) x86_64 > > [ 326.401] Kernel command line: > BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-amd64 > root=UUID=902bd776-77e8-4b24-a709-88d4788f5926 ro quiet > > [ 326.401] Build Date: 11 February 2015 12:32:02AM > > [ 326.401] xorg-server 2:1.16.4-1 (http://www.debian.org/support) > > [ 326.401] Current version of pixman: 0.32.6 > > [ 326.401] Before reporting problems, check http://wiki.x.org > > to make sure that you have the latest version. > > [ 326.401] Markers: (--) probed, (**) from config file, (==) default > setting, > > (++) from command line, (!!) notice, (II) informational, > > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > > [ 326.401] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 17 > 09:05:13 2015 > > [ 326.401] (==) Using config file: "/etc/X11/xorg.conf" > > [ 326.401] (==) Using system config directory > "/usr/share/X11/xorg.conf.d" > > [ 326.401] (==) ServerLayout "Layout0" > > [ 326.401] (**) |-->Screen "Screen0" (0) > > [ 326.401] (**) | |-->Monitor "Monitor0" > > [ 326.401] (**) | |-->Device "Device0" > > [ 326.401] (**) |-->Input Device "Keyboard0" > > [ 326.401] (**) |-->Input Device "Mouse0" > > [ 326.401] (==) Automatically adding devices > > [ 326.401] (==) Automatically enabling devices > > [ 326.401] (==) Automatically adding GPU devices > > [ 326.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not > exist. > > [ 326.401] Entry deleted from font path. > > [ 326.401] (==) FontPath set to: > > /usr/share/fonts/X11/misc, > > /usr/share/fonts/X11/100dpi/:unscaled, > > /usr/share/fonts/X11/75dpi/:unscaled, > > /usr/share/fonts/X11/Type1, > > /usr/share/fonts/X11/100dpi, > > /usr/share/fonts/X11/75dpi, > > built-ins > > [ 326.401] (==) ModulePath set to "/usr/lib/xorg/modules" > > [ 326.401] (WW) Hotplugging is on, devices using drivers 'kbd', > 'mouse' or 'vmmouse' will be disabled. > > [ 326.401] (WW) Disabling Keyboard0 > > [ 326.401] (WW) Disabling Mouse0 > > [ 326.401] (II) Loader magic: 0x7f411575bd80 > > [ 326.401] (II) Module ABI versions: > > [ 326.401] X.Org ANSI C Emulation: 0.4 > > [ 326.401] X.Org Video Driver: 18.0 > > [ 326.401] X.Org XInput driver : 21.0 > > [ 326.401] X.Org Server Extension : 8.0 > > [ 326.401] (II) xfree86: Adding drm device (/dev/dri/card0) > > [ 326.402] (--) PCI:*(0:0:2:0) 8086:1616:1028:069a rev 9, Mem @ > 0xf5
Re: Narrowing down problem source - was [Re: Extracting directories from an ISO image, command line tool?]
Richard Owlett wrote: > >I started over again. I switched to a laptop dedicated to things >that may not work as expected. For some of my projects I >regularly wipe the disk and do a complete reinstall of Debian. >Currently I'm running Debian 8.0 with Mate as DE. No updates. > >I used > blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) > echo "Byte count: $(expr $blocks '*' 2048)" > dd if=/dev/sr0 bs=2048 count=$blocks of=dvd8_2.iso >as a pattern for each DVD. > >_Some_ passed your test of > ls -l /media/richard/Lexar/dvd8_2.iso > /sbin/isosize /media/richard/Lexar/dvd8_2.iso > >Example: > ls -l dvd8_9.iso > /sbin/isosize dvd8_9.iso > >resulted in >richard@debian:~$ ls -l dvd8_9.iso >-rw-r--r-- 1 richard richard 3976200192 Sep 16 11:50 dvd8_9.iso >richard@debian:~$ >richard@debian:~$ /sbin/isosize dvd8_9.iso >4460664832 I'll tell you what's most likely wrong - you're storing your extracted ISO images on a FAT32 filesystem which doesn't support file sizes larger than 4GiB. That's why DVD #1 works, it's explicitly reduced in size to fit on a 4GB USB stick too. -- Steve McIntyre, Cambridge, UK.st...@einval.com "Further comment on how I feel about IBM will appear once I've worked out whether they're being malicious or incompetent. Capital letters are forecast." Matthew Garrett, http://www.livejournal.com/users/mjg59/30675.html
Re: Running HAL and udev Simultaneously
On Thu, 17 Sep 2015, Lisi Reisz wrote: > On Thursday 17 September 2015 05:20:52 Patrick Bartek wrote: > > The failure to mirror started under Yahoo mail. Changed to gmail > > hoping that would fix it. It didn't. So, I don't think it's the > > SMTP server. Unless both providers have the same settings. But > > I'll check my setting which I haven't changed since setting up the > > account. > > :-? > > > Or, > > maybe, it just might be the Debian list server itself. > > I get mine, if I use my ISP's SMTP server - but not if I use > Google's. ??? My ISP's (Cox) mail was so problematical that I stopped using it years ago, and got a couple Yahoo accounts, and later a couple Gmail ones. Another caveat, a new one: seems my replies to other postings are failing to show up on my end now. But others' replies to mine show up. I'll check to see if this reply gets back to me. B
Re: Running HAL and udev Simultaneously
On Thursday 17 September 2015 16:51:41 Patrick Bartek wrote: > My ISP's (Cox) mail was so problematical that I stopped using it years > ago, and got a couple Yahoo accounts, and later a couple Gmail ones. There's your "problem". Lisi
Re: how to sum a column in openoffice calc
I have not realized the problem is so difficult I'd rather do manual calculation, it's one-time task The file is paste from a Excel file Thanks anyway! On Thu, 9/17/15, Siard wrote: I can see it now. N1:N8 do not contain numbers; they contain alphanumeric strings. If you select N1, then this is what you see in the formula bar: '-755.68 The apostroph it starts with, shows that this string is alphanumeric. I don't know how you got those numbers there in the first place. There must be a better way. But there is a workaround. Insert a new column O (next to N) and put this formula in O1: =N1+0 (0 = zero) In LibreOffice, an addition like this converts the alphanumeric string into a number. Now copy O1 to O2:O8 and you'll see that SUM(O1:O8) in O9 works.
Re: Narrowing down problem source
Hi, Richard Owlett wrote: > I did a rerun. The only apparent change in test conditions was I used a > different instance of Mate Terminal. > ... > 4460664832 bytes (4.5 GB) copied, 798.488 s, 5.6 MB/s > ... > richard@debian:~$ /sbin/isosize rerundvd9.iso > 4460664832 Did the dd runs with short "ls -l" result tell the "isosize" result, nevertheless ? > I've a gut feeling that Mate Terminal isn't redoing > blocks=$(expr $(/sbin/isosize /dev/sr0) / 2048) > every time. Command interpretation is supposed to depend on the shell interpreter (e.g. bash, dash, ksh) and not on the terminal emulator (e.g. xterm, gnome-terminal, Konsole). On the first hand we have to concentrate on the messages from the dd runs which deliver too few bytes in the .iso files. After a dd run turned out to copy not enough bytes, look into the system log whether any error message about "sr0" has been freshly recorded. Steve McIntyre: > I'll tell you what's most likely wrong - you're storing your extracted > ISO images on a FAT32 filesystem which doesn't support file sizes > larger than 4GiB. But why did the retry succeed ? Richard: Did you copy to a different directory ? > Nagging memories of a similar problem with either Win95 or Win98. We fiercely deny any similarity with said systems. No bugs shared. Have a nice day :) Thomas
Re: Running HAL and udev Simultaneously
On Thu, 17 Sep 2015, Lisi Reisz wrote: > On Thursday 17 September 2015 16:51:41 Patrick Bartek wrote: > > My ISP's (Cox) mail was so problematical that I stopped using it > > years ago, and got a couple Yahoo accounts, and later a couple > > Gmail ones. > > There's your "problem". But I had no problems until a couple years ago, and then ONLY with the Debian list, which continues to this day. Plus, now, my replies don't get mirrored back anymore, and every time I send an email I get a SSL Certificate requester and have to "Save and Continue." The latter only started a week or so ago. I'm thinking of reinstalling and reconfiguring claws or switch to another mail client. I hate the web mail interfaces. B
Installing debian on qosmio laptop
Hi I have a Qosmio G25 that I have had for some year. It has been a dual boot system with Windoz XP on one 60GB drive and Debian Wheezy on the other 60GB drive using a Grub2 loader. I recently tried to up grade to Jessie and the installation now hangs on boot. There is also problems with the Windows side as well. The short tale is that I want to reformat both disks and install Jessie from scratch. I have both a stick netinstall and and a DVD netinstall available. For some reason I can't find a set of instructions that cover installation from scratch. All seem to assume that windows or some such is already installed. Neither my stick or my DVD will start on boot up no matter what I try. The BIOS on this system is a bit strange but on boot up there is an option to select what device is to be booted if you are quick. I know that some of the bells and whistles on the laptop won't have drivers available in linux but don't care. Knoppix boots fine. Could this be used for what I want to do. Does anyone know where I can find a concise set of instructions for a "cold iron" installation. Gary R.
Re: Installing debian on qosmio laptop
On Thu, 2015-09-17 at 11:43 -0700, Gary Roach wrote: > Hi > > I have a Qosmio G25 that I have had for some year. It has been a dual > > boot system with Windoz XP on one 60GB drive and Debian Wheezy on the > > other 60GB drive using a Grub2 loader. I recently tried to up grade > to > Jessie and the installation now hangs on boot. There is also problems > > with the Windows side as well. The short tale is that I want to > reformat > both disks and install Jessie from scratch. I have both a stick > netinstall and and a DVD netinstall available. For some reason I > can't > find a set of instructions that cover installation from scratch. All > seem to assume that windows or some such is already installed. > Neither > my stick or my DVD will start on boot up no matter what I try. The > BIOS > on this system is a bit strange but on boot up there is an option to > select what device is to be booted if you are quick. I know that some > of > the bells and whistles on the laptop won't have drivers available in > linux but don't care. Knoppix boots fine. Could this be used for what > I > want to do. > > Does anyone know where I can find a concise set of instructions for a > > "cold iron" installation. > > Gary R. Hi, According to this site, that system should be quite well-supported: http://www.linlap.com/toshiba_dynabook_qosmio_g25 I'm not sure why you can't find instructions for a clean install? Most installation guides assume you start from scratch, there's also the Debian installation guide: https://www.debian.org/releases/stable/installmanual It's possible that you might not be able to boot from USB, it can be a finicky system, or maybe a bad USB drive, or a problem with how you transferred the image to the drive. Booting from CD or DVD should not be a problem, have you validated the checksum after download and burnt the disc correctly? How do you boot into Knoppix? If there isn't time to select the boot device during startup, you should be able to enter the BIOS and change the boot drive manually. From a quick skim through Google it seems to be either Esc or F1. HTH, -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 6FAB5CD5 signature.asc Description: This is a digitally signed message part
Re: how to sum a column in openoffice calc
Li Wei wrote: > I have not realized the problem is so difficult > I'd rather do manual calculation, it's one-time task > The file is paste from a Excel file Pasting from an Excel file looks odd to me, I guess it gives unpredictable results. Better open the Excel file with LO and paste it from there.
Re: Extracting directories from an ISO image, command line tool?
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 10/09/15 23:06, Richard Owlett wrote: > Environment: Using dd I have copied physical [NO INTERNET AVAILABLE > ;] Debian DVD's to /media/distributionA resulting in > /media/distributionA/DVD1.iso /media/distributionA/DVD2.iso .. .. > /media/distributionA/DVDn.iso Well, I can get you half-way there. for f in /media/distributionA/*.iso; do bn="$( basename "${f}" .iso )" dn="$( dirname "${f}" )" mount "${f}" /mnt/cdrom -o loop rsync -aP /mnt/cdrom "${dn}/${bn}"/ umount /mnt/cdrom done Now you'll have in addition to the above: /media/distributionA/DVD1/ … /media/distributionA/DVD2/ … .. .. /media/distributionA/DVDn/ … I'm not sure how you'd go about merging the repositories together. Someone else can help with that. - -- Stuart Longland (aka Redhatter, VK4MSL) I haven't lost my mind... ...it's backed up on a tape somewhere. -BEGIN PGP SIGNATURE- Version: GnuPG v2 iQIcBAEBCAAGBQJV+yaxAAoJEE36GRQQveO38CkQALmNl6BUrN4QduBPmREfmRC4 A8GEdua8W9YZ8E4pcKx/9xG6N3pN7stck26/illFewb8MqrgMfsUZfx9UGiqtFSk HQwtHxWvp0N60d4xlXmtmKSB0EopJ3kgPRtPpvKG33HpiZ24dYIgdoMY/dHIdjM4 LTcdqQdWjo0tJA1CAoVY604tXVYGqR+kFWaLfzM/ysxoj1KxuDRgoARSozCLrXpu Mr2wIb3qnjnpm9e3fO9le52HurwEY/RVbYOWd0aY9DSekGKaOg7LiK4qlkP73nnO BjZ8hnqsNmidBZN5647cTEZXCCK0T6Ygxp8CxFNmDDba9TRnDlxQg7Pu6oBseCRW cJVW3ULmiShgiNArsnszXGPzJjpWIYewtpK025npWEc23LoBTQFLk04tyBhvstVr 8Gkcl2Rzyq8sNf6F/fLqmoaDis/abxdigaj61sHHoVPBIIntabzkP+dnAWi8Z9/a XmAcdiZXRGiUDo6K0b+/6VKhzyNKNQg9EvFozZWxIumhCFI0FVRPITJCmre8vdyX rlPDYEL13tyd3UzyTe6X+fhl9xlvCvH3ywkDw7q08k3xZQaHFq91p7idmLT9GI9J FvFqpu7uFNGTmvS6BoJQLpGh63xBMZy8+aTmCXMkLE6y8RhZQwTUN5QwhAOZK3zw aFVAGPp3f3KauHkx6abG =dSnl -END PGP SIGNATURE-
Re: Installing debian on qosmio laptop
On 09/17/2015 12:39 PM, Sven Arvidsson wrote: On Thu, 2015-09-17 at 11:43 -0700, Gary Roach wrote: Hi I have a Qosmio G25 that I have had for some year. It has been a dual boot system with Windoz XP on one 60GB drive and Debian Wheezy on the other 60GB drive using a Grub2 loader. I recently tried to up grade to Jessie and the installation now hangs on boot. There is also problems with the Windows side as well. The short tale is that I want to reformat both disks and install Jessie from scratch. I have both a stick netinstall and and a DVD netinstall available. For some reason I can't find a set of instructions that cover installation from scratch. All seem to assume that windows or some such is already installed. Neither my stick or my DVD will start on boot up no matter what I try. The BIOS on this system is a bit strange but on boot up there is an option to select what device is to be booted if you are quick. I know that some of the bells and whistles on the laptop won't have drivers available in linux but don't care. Knoppix boots fine. Could this be used for what I want to do. Does anyone know where I can find a concise set of instructions for a "cold iron" installation. Gary R. Hi, According to this site, that system should be quite well-supported: http://www.linlap.com/toshiba_dynabook_qosmio_g25 That a good site to remember. Thanks I'm not sure why you can't find instructions for a clean install? Most installation guides assume you start from scratch, there's also the Debian installation guide: https://www.debian.org/releases/stable/installmanual Chapter 3.1 step 5 - Boot the installation system. And that is where my problem starts. There is no installation system. Or are they saying that the CD will auto start. It won't. Now what? It's possible that you might not be able to boot from USB, it can be a finicky system, or maybe a bad USB drive, or a problem with how you transferred the image to the drive. Tried this to no avail. Tried 3 different usb drives. The travel mouse worked fine so no problem with the usb ports. Booting from CD or DVD should not be a problem, have you validated the checksum after download and burnt the disc correctly? How do you boot into Knoppix? The Knoppix DVD took of like a shot. No problem getting it to load. I think I have burned a half dozen netinstall cds and dvds. None would auto start. If there isn't time to select the boot device during startup, you should be able to enter the BIOS and change the boot drive manually. From a quick skim through Google it seems to be either Esc or F1. HTH, Actually, the bios has a neat feature. There are 5 icons that show up on the bottom of the first screen. They are HD1, HD2, CD, FD ( none exists) and network. By quickly hitting the right/left arrow keys you can pick which device from which you wish to boot. If I select the CD icon with the Knoppix disk installed Knoppix starts to immediately load. No debian netinstall disk that I have tried has worked. This is not too surprising since the loading files in the disk seem to be windoz startup files. One article I found suggested that going to the /install directory might be a way to start the disk. Doesn't work. I just formatted HD2 to a standard ext4 partition with swap space. Now the system drops to grub rescue mode when started. I need to do some studying on this. May have some possibilities. Gary R.
Re: Installing debian on qosmio laptop
On Thursday 17 September 2015 21:21:37 Gary Roach wrote: > No debian > netinstall disk that I have tried has worked. I have never had one that didn't work. Have you checked your downloads? Where are you getting them from? Lisi
Re: Installing debian on qosmio laptop
On Thursday 17 September 2015 22:52:04 Lisi Reisz wrote: > On Thursday 17 September 2015 21:21:37 Gary Roach wrote: > > No debian > > netinstall disk that I have tried has worked. > > I have never had one that didn't work. Have you checked your downloads? > Where are you getting them from? How are you burning them? Lisi
Re: Installing debian on qosmio laptop (SOLVED)
On 09/17/2015 03:28 PM, Lisi Reisz wrote: On Thursday 17 September 2015 22:52:04 Lisi Reisz wrote: On Thursday 17 September 2015 21:21:37 Gary Roach wrote: No debian netinstall disk that I have tried has worked. I have never had one that didn't work. Have you checked your downloads? Where are you getting them from? How are you burning them? Lisi Finally! The problem seems to be an incomparability between my other linux machine and the Qosmio. I had been downloading and burning with my desktop debian box and the files are not compatible with the Qosmio DVD reader. The Matshita DVD drive is noted for its quirkiness. I downloaded to the Qosmio Windoz XP and burned the disk with a Roxio burner. This works fine. Thanks for all your support. Gary R.
Re: Debian + Windows with UEFI
Hi guys, I can't install NVIDIA driver and bumblebee manually or using debian repository. The solution? Using ubuntu oficial repository of NVIDIA (driver 355) but nvidia-settings still no given information about graphics card even open with optirun 2015-09-17 11:11 GMT-04:00 real bas : > Then, I need install the bumblebee (without nvidia-xconfig)? > > 2015-09-17 11:02 GMT-04:00 Darac Marjal : > >> On Thu, Sep 17, 2015 at 09:18:01AM -0400, real bas wrote: >> > Hi Darac, >> > I follow this article [2] and still black screen with lightdm error >> (attached >> > 1). When execute nvidia-detected says 'No nvidia gpu detected' but in >> lspci say >> > that I have nvidia card (attached 2, last line) >> >> Ah, looking at that you ALSO have an Intel card, which *probably* means >> you have an NVIDIA Optimus configuration. In that, the Intel card drives >> the display but can either use its own, low-power 3D engine, or a >> higher-power one provided by the NVIDIA device. As I understand it, in >> this configuration, the NVIDIA card can't drive the display by itself >> (in contrast to a dual-card configuration in a desktop, where both cards >> would have monitor ports). >> >> In order to get Optimus working with linux, you need to install >> Bumblebee. This page[1] should give you the information you require >> there. >> >> [1] https://wiki.debian.org/Bumblebee >> >> > >> > 2015-09-17 8:26 GMT-04:00 Darac Marjal <[1]mailingl...@darac.org.uk>: >> > >> > On Thu, Sep 17, 2015 at 12:26:13AM -0400, real bas wrote: >> > > Hi again, >> > > Someone managed to install NVIDIA driver for GeForce 830M? I have >> trouble >> > with >> > > installation automatically and manually (black screen, lightdm >> can't >> > start). >> > > Someone can help me? >> > >> > The GeForce 830M is listed as a "Supported Device"[1], so you >> should be >> > able to follow the instructions at [2] to get that installed. If it >> > doesn't work, post the contents of your /var/log/Xorg.0.log file. >> > >> > [1] >> > [2] >> http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/ >> > supportedchips.html >> > [2] [3] >> https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 >> > >> > >> > -- >> > For more information, please reread. >> > >> > >> > >> > References: >> > >> > [1] mailto:mailingl...@darac.org.uk >> > [2] >> http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/supportedchips.html >> > [3] https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 >> >> > [ 326.401] >> > X.Org X Server 1.16.4 >> > Release Date: 2014-12-20 >> > [ 326.401] X Protocol Version 11, Revision 0 >> > [ 326.401] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian >> > [ 326.401] Current Operating System: Linux debian 3.16.0-4-amd64 #1 >> SMP Debian 3.16.7-ckt11-1+deb8u3 (2015-08-04) x86_64 >> > [ 326.401] Kernel command line: >> BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-amd64 >> root=UUID=902bd776-77e8-4b24-a709-88d4788f5926 ro quiet >> > [ 326.401] Build Date: 11 February 2015 12:32:02AM >> > [ 326.401] xorg-server 2:1.16.4-1 (http://www.debian.org/support) >> > [ 326.401] Current version of pixman: 0.32.6 >> > [ 326.401] Before reporting problems, check http://wiki.x.org >> > to make sure that you have the latest version. >> > [ 326.401] Markers: (--) probed, (**) from config file, (==) default >> setting, >> > (++) from command line, (!!) notice, (II) informational, >> > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. >> > [ 326.401] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 17 >> 09:05:13 2015 >> > [ 326.401] (==) Using config file: "/etc/X11/xorg.conf" >> > [ 326.401] (==) Using system config directory >> "/usr/share/X11/xorg.conf.d" >> > [ 326.401] (==) ServerLayout "Layout0" >> > [ 326.401] (**) |-->Screen "Screen0" (0) >> > [ 326.401] (**) | |-->Monitor "Monitor0" >> > [ 326.401] (**) | |-->Device "Device0" >> > [ 326.401] (**) |-->Input Device "Keyboard0" >> > [ 326.401] (**) |-->Input Device "Mouse0" >> > [ 326.401] (==) Automatically adding devices >> > [ 326.401] (==) Automatically enabling devices >> > [ 326.401] (==) Automatically adding GPU devices >> > [ 326.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does >> not exist. >> > [ 326.401] Entry deleted from font path. >> > [ 326.401] (==) FontPath set to: >> > /usr/share/fonts/X11/misc, >> > /usr/share/fonts/X11/100dpi/:unscaled, >> > /usr/share/fonts/X11/75dpi/:unscaled, >> > /usr/share/fonts/X11/Type1, >> > /usr/share/fonts/X11/100dpi, >> > /usr/share/fonts/X11/75dpi, >> > built-ins >> > [ 326.401] (==) ModulePath set to "/usr/lib/xorg/modules" >> > [ 326.401] (WW) Hotplugging is on, devices using drivers 'kbd', >> 'mouse' or 'vmmouse' will be disabled. >> > [ 326.401] (WW) Disabling Keyboard0 >> > [ 326.401] (WW) Disabling Mouse0 >> > [ 3
suppress document printing status window
On Debian Jessie xfce, every time cups prints a document, a printing status window appears in the upper right corner of the screen, telling me that the document has been sent to the printer, then another appears to tell me that printing of the document is complete. How can I suppress these bothersome status messages? RLH
Problem VNC (Vino) access from windows or other clients
I am using Debian 8.2. i enable screen sharing but when i try to connect client side shows me this message unable to connect VNC server using your chosen security setting. Either upgrade the VNC server to more recent version from realVNC or select weaker level of encryption and i see this on server /var/log/messages. [IPv4] Got connection from client 192.168.1.10 Sep 18 00:35:24 nas gnome-session[1547]: 18/09/2015 12:35:24 AM other clients: Sep 18 00:35:24 nas gnome-session[1547]: 18/09/2015 12:35:24 AM 192.168.1.10 Sep 18 00:35:24 nas gnome-session[1547]: 18/09/2015 12:35:24 AM Client Protocol Version 3.7 Sep 18 00:35:24 nas gnome-session[1547]: 18/09/2015 12:35:24 AM Advertising security type 18 Sep 18 00:35:26 nas gnome-session[1547]: 18/09/2015 12:35:26 AM Client 192.168.1.10 gone Sep 18 00:35:26 nas gnome-session[1547]: 18/09/2015 12:35:26 AM Statistics: Sep 18 00:35:26 nas gnome-session[1547]: 18/09/2015 12:35:26 AM framebuffer updates 0, rectangles 0, bytes 0 Any help will be highly appreciated. Thanks, Yousuf "
Re: Debian + Windows with UEFI
On Thu, 17 Sep 2015 22:41:38 -0400 real bas wrote: >Hi guys, I can't install NVIDIA driver and bumblebee manually or using >debian repository. The solution? Using ubuntu oficial repository of NVIDIA >(driver 355) but nvidia-settings still no given information about graphics >card even open with optirun > >2015-09-17 11:11 GMT-04:00 real bas : > >> Then, I need install the bumblebee (without nvidia-xconfig)? >> >> 2015-09-17 11:02 GMT-04:00 Darac Marjal : >> >>> On Thu, Sep 17, 2015 at 09:18:01AM -0400, real bas wrote: >>> > Hi Darac, >>> > I follow this article [2] and still black screen with lightdm error >>> (attached >>> > 1). When execute nvidia-detected says 'No nvidia gpu detected' but in >>> lspci say >>> > that I have nvidia card (attached 2, last line) >>> >>> Ah, looking at that you ALSO have an Intel card, which *probably* means >>> you have an NVIDIA Optimus configuration. In that, the Intel card drives >>> the display but can either use its own, low-power 3D engine, or a >>> higher-power one provided by the NVIDIA device. As I understand it, in >>> this configuration, the NVIDIA card can't drive the display by itself >>> (in contrast to a dual-card configuration in a desktop, where both cards >>> would have monitor ports). >>> >>> In order to get Optimus working with linux, you need to install >>> Bumblebee. This page[1] should give you the information you require >>> there. >>> >>> [1] https://wiki.debian.org/Bumblebee >>> >>> > >>> > 2015-09-17 8:26 GMT-04:00 Darac Marjal <[1]mailingl...@darac.org.uk>: >>> > >>> > On Thu, Sep 17, 2015 at 12:26:13AM -0400, real bas wrote: >>> > > Hi again, >>> > > Someone managed to install NVIDIA driver for GeForce 830M? I have >>> trouble >>> > with >>> > > installation automatically and manually (black screen, lightdm >>> can't >>> > start). >>> > > Someone can help me? >>> > >>> > The GeForce 830M is listed as a "Supported Device"[1], so you >>> should be >>> > able to follow the instructions at [2] to get that installed. If it >>> > doesn't work, post the contents of your /var/log/Xorg.0.log file. >>> > >>> > [1] >>> > [2] >>> http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/ >>> > supportedchips.html >>> > [2] [3] >>> https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 >>> > >>> > >>> > -- >>> > For more information, please reread. >>> > >>> > >>> > >>> > References: >>> > >>> > [1] mailto:mailingl...@darac.org.uk >>> > [2] >>> http://us.download.nvidia.com/XFree86/Linux-x86_64/340.65/README/supportedchips.html >>> > [3] https://wiki.debian.org/NvidiaGraphicsDrivers#Debian_8_.22Jessie.22 >>> >>> > [ 326.401] >>> > X.Org X Server 1.16.4 >>> > Release Date: 2014-12-20 >>> > [ 326.401] X Protocol Version 11, Revision 0 >>> > [ 326.401] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian >>> > [ 326.401] Current Operating System: Linux debian 3.16.0-4-amd64 #1 >>> SMP Debian 3.16.7-ckt11-1+deb8u3 (2015-08-04) x86_64 >>> > [ 326.401] Kernel command line: >>> BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-amd64 >>> root=UUID=902bd776-77e8-4b24-a709-88d4788f5926 ro quiet >>> > [ 326.401] Build Date: 11 February 2015 12:32:02AM >>> > [ 326.401] xorg-server 2:1.16.4-1 (http://www.debian.org/support) >>> > [ 326.401] Current version of pixman: 0.32.6 >>> > [ 326.401] Before reporting problems, check http://wiki.x.org >>> > to make sure that you have the latest version. >>> > [ 326.401] Markers: (--) probed, (**) from config file, (==) default >>> setting, >>> > (++) from command line, (!!) notice, (II) informational, >>> > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. >>> > [ 326.401] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep 17 >>> 09:05:13 2015 >>> > [ 326.401] (==) Using config file: "/etc/X11/xorg.conf" >>> > [ 326.401] (==) Using system config directory >>> "/usr/share/X11/xorg.conf.d" >>> > [ 326.401] (==) ServerLayout "Layout0" >>> > [ 326.401] (**) |-->Screen "Screen0" (0) >>> > [ 326.401] (**) | |-->Monitor "Monitor0" >>> > [ 326.401] (**) | |-->Device "Device0" >>> > [ 326.401] (**) |-->Input Device "Keyboard0" >>> > [ 326.401] (**) |-->Input Device "Mouse0" >>> > [ 326.401] (==) Automatically adding devices >>> > [ 326.401] (==) Automatically enabling devices >>> > [ 326.401] (==) Automatically adding GPU devices >>> > [ 326.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does >>> not exist. >>> > [ 326.401] Entry deleted from font path. >>> > [ 326.401] (==) FontPath set to: >>> > /usr/share/fonts/X11/misc, >>> > /usr/share/fonts/X11/100dpi/:unscaled, >>> > /usr/share/fonts/X11/75dpi/:unscaled, >>> > /usr/share/fonts/X11/Type1, >>> > /usr/share/fonts/X11/100dpi, >>> > /usr/share/fonts/X11/75dpi, >>> > built-ins >>> > [ 326.401] (==) ModulePath set to "/usr/lib/xorg/modules" >>> > [ 326.401] (WW) Hotplugging i
Re: suppress document printing status window
On Thu, September 17, 2015 11:25 pm, rlhar...@oplink.net wrote: > On Debian Jessie xfce, every time cups prints a document, a printing > status window appears in the upper right corner of the screen, telling me > that the document has been sent to the printer, then another appears to > tell me that printing of the document is complete. > > How can I suppress these bothersome status messages? Addendum: It looks to me as if the messages are issued by "system-config-printer, a CUPS server configuration program". But the man page for system-config-printer is not very helpful. RLH
Re: Problem VNC (Vino) access from windows or other clients
Hi. On Fri, 18 Sep 2015 09:44:38 +0500 Muhammad Yousuf Khan wrote: > I am using Debian 8.2. i enable screen sharing but when i try to connect > client side shows me this message > > unable to connect VNC server using your chosen security setting. Either > upgrade the VNC server to more recent version from realVNC or select weaker > level of encryption. This message is half-true. You don't need to upgrade VNC server, you need to upgrade to VNC client that supports TLS-over-VNC. Or to disable VNC encryption altogether. The problem is - about the only client that seems to support that cryptic 'VNC security type 18' seems to be Remmina. So - you need to connect from the Windows client - you need to have an insecure configuration on server side. Presumably - it's done like this: gsettings set org.gnome.Vino require-encryption false Reco