prompt stringlengths 1 58.2k | completion stringlengths 1 53.1k |
|---|---|
Hi guys, I need an help because I have a little issue with a network share on my raspberry. On the Raspberry PI I have installed samba to have some network share in my home and transmission to download torrent too. The problem is this one: - I have created one share that it is called "torrent" and the permission settin... | coppolino97 wrote: ... Code: Select all directory mode = 777 I suppose that the problem is that all my share can access as guest,in fact if I go to the share and type Code: Select allchmod 777 /mnt/disco/torrent -R it is all ok. Are there some way to solve this problem? Yes, you type: $ man smb.conf Then you read what ... |
I am using Debian 9. I am on a laptop, meaning I am using "bumblebee-nvidia" package. I do have the backports version of the nvidia driver. Let me know if you need more (detailed) info! When I try to update the nvidia driver, I get the message saying some packages have been kept back.. Code: Select alluser0@PE60-2QE:~$... | Try Code: Select all# aptitude install -t stretch-backports libgl1-mesa-glx Aptitude may offer several solutions to the problem, be sure to decline all of the options until it tells you there are no more left then go back and pick the best one (if there is an acceptable option). If that doesn't work then please post Co... |
Hi. I'm trying to create a swap file with Debian Jessie and I keep running into an error when running swapon /swap Here are my steps I'm using to create said swap file Code: Select all dd if=/dev/zero of=/var/swap bs=1M count=4096 chmod 600 /var/swap mkswap /var/swap swapon /var/swap I've also tried editing /etc/fstab ... | Do you really need a 4-TB swap file ? A swap file must not have holes because the kernel needs to map all its blocks to the underlying block device, but the dd command should create a file without holes. What is the filesystem type for /var ? Code: Select alldf -hT /var |
I have a virtual server running Debian 9 on VMware ESXi. This server is used for the FOG free computer cloning and management software. The server has network connectivity, and the cloning software works. However, the server can no longer resolve host names in DNS, which is keeping me from updating FOG from version 1.5... | Olsen17 wrote:This is the output of the nmcli command: ens192: unmanaged "VMware VMXNET3 Ethernet Controller" ethernet (vmxnet3), 00:50:56:B0:E4:ED, hw, mtu 1500 Check /etc/network/interfaces and any files under /etc/network/interfaces.d/ for any stanzas configuring the ethernet interface, I think NM will disregard any... |
Recently, I encounter weird issues with my network access. For instance, my Firefox browser won't load pages but my MegaSync client still is online. Also, when I do ping like Code: Select allping http://www.google.com I get 100% packet loss but my browser just works fine and fast. Today, I also found out I can only vis... | Rat wrote:Recently, I encounter weird issues with my network access. For instance, my Firefox browser won't load pages but my MegaSync client still is online. Also, when I do ping like Code: Select allping http://www.google.com I get 100% packet loss but my browser just works fine and fast. Today, I also found out I ca... |
Hi, here is my problem I'm trying to create some rule, triggered on the connection of an USB device, but let's say that at this moment, now, I would be grateful if I could create ANY working rule that would do any working action (even something stupid), even triggered from anything, or even everything, because it's lik... | I recall having a lot of problems trying to run root commands via a udev rule, the easiest way would be to run a script from the udev rule similar to this.. Code: Select allACTION=="add", SUBSYSTEM=="hid", RUN+="/usr/local/bin/script_to_shutdown.sh" Obviously you would need to add your attributes etc to this (It is onl... |
Hello! I successfully set up two 1TB hard drives into a RAID 1 array with MDADM. The two drives were /dev/sda1 and /dev/sdb1. However, I added two additional 2TB hard drives to create a new separate RAID 1 array, and MDADM failed to set up my original 1TB array. It looks like it's because the OS reserved the /dev/sda1 ... | Other taking inventory of how your board orders things and moving cables, if you can try using /dev/disk/by-id or by-uuid, or even by-label, instead of the variable dev/sdx. That way it doesn't matter how they enumerate. |
I am using Open DNS: 208.67.222.222; 208.67.220.220; 8.8.8.8; In the file /etc/dhcp/dhclient.conf.. I have already edited to: prepend domain-name-servers 208.67.222.222, 208.67.220.220, 8.8.8.8; Then re-started the computer and also the network manager manually. Code: Select allcat /etc/resolv.conf Gives name server as... | DNS is a system that will resolve IP-addresses of website and has nothing to do with hiding yourself. https://en.wikipedia.org/wiki/Domain_Name_System |
Hi all, I'm trying to set up WiFi on my laptop (running Debian 9.6) and just can't seem to make any progress. I've come across a fair number of similar threads across the Internet but none of the methods described are working for me. I installed Debian using the non-free/cd-including-firmware image, so that I could fin... | I downloaded the driver from Realtek That's the Ethernet. The wifi is Network controller: Intel Corporation Device 2526 (rev 29) Install firmware-iwlwifi. |
When I ' m on an external network (especially when on a public one) I would like to connect via wireguard to a pc on my home network. I will avoid ADS so but since I' m using as a server a machine with my home network all the privacy part is nullified right? I mean with my ISP (and who knows who else, or maybe no ne). ... | If you configure your router (doing NAT) to forward incoming UDP port 5182 to your wireguard server, it should work fine. Wireguard is not known for it's debugging/logging powers, but at least you should see something when you try to connect. We can take it from there. If you want to use your Wireguard server to actual... |
Hi, I just received my new computer which was delivered with Ubuntu as operating system. The computer is a Dell laptop Dell G5 15 - 5587. At this point the wifi was working well as I used it to download the debian netinstall image. After installing Debian Stretch on my computer (using ethernet for convinience) I have n... | Did you remember to get firmware-iwlwifi from back ports too? |
I am having a problem if I don't properly unmount my USB drive before removing it from my server. However, it seems to take upward of 15 minutes (I may be exaggerating) when I do "unmount /movies". Googling I found this https://lonesysadmin.net/2013/12/22/bet ... rty_ratio/ article basically saying data is sitting in r... | Soapm wrote:I am having a problem if I don't properly unmount my USB drive before removing it from my server. However, it seems to take upward of 15 minutes (I may be exaggerating) when I do "unmount /movies". I hope that was a typo Try: Code: Select allsync ; umount -R /movies && echo Done! But do not remove the devic... |
I have a server with Buster and I installed OpenVPN, I generated keys by openssl and everything works ok. Now I should create a key for SSH, should I install other packages or could I use openssl? GabrieleMax | GabrieleMax wrote:I have a server with Buster and I installed OpenVPN, I generated keys by openssl and everything works ok. Now I should create a key for SSH, should I install other packages or could I use openssl? GabrieleMax SSH keys are created using ssh-keygen, which is part of the openssh-client package. |
I have several partitions on my drive that I use for different distros. The full distros always detect the two monitors connected to one graphics card with digital and analog outputs. My netinstall distro detects only one output and displays the same screen on both monitors. xrandr in netinstall gives this result: xran... | LaneLester wrote:the two monitors connected to one graphics card Is the identity of this mysterious graphics card a closely guarded secret or can you share it with us? https://wiki.debian.org/HowToIdentifyADevice/PCI |
Greetings, I have a Debian stretch installation version 9.5, my router is a vm on that machine that has one usb device (wireless) configured as passthough. the kernel version was 4.15.11-1~bpo9+1 (installed due to usb3 issues), the relevant vm config is as follows: Code: Select all <hostdev mode='subsystem' type='usb' ... | Looks like you are passing the device and not the port? Try passing the port with vfio. Edited example: Code: Select all# lspci -v -d 1033: 07:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 04) (prog-if 30 [XHCI]) Subsystem: Super Micro Computer Inc uPD720200 USB 3.0 Host Controller ...... ... |
So I'm running Debian Testing, and the latest update seems to have broken Samba entirely. I purged and then re-installed the following packages: samba-common samba python-samba smbclient libnss-winbind samba-common-bin winbind and even when using all of the default configs, the systemctl status for smbd is: Code: Selec... | Sometimes when systemctl status shows 'exited with error code" you can get more info with journalctl. Also, sometimes I look in the service file, find the script it is executing and go look at it to find out. Often this stuff is a bad/missing config or wrong path etc, extra character in a file, that makes a script thro... |
Edit, I've changed the title because it appears Synaptic wants to do a full upgrade from Backports not Stretch. Apparently, some packages in backports keep the deb9u designation. I run Synaptic every few days to keep my Jessie system up to date. All of a sudden it want's to install or update over 200 packages... That's... | No_windows wrote:How can I get a text printing of the files so that I can post them here without actually installing them. Run, as user: Code: Select all$ apt-get upgrade -s -s means simulate To show all repositories you could install inxi and run Code: Select allinxi -r or just check any files in in /etc/apt/sources.l... |
A "hello" to all who read this, I am running "Jessie" 8.11 on an old (as in "old") Core2Duo//2 GB RAM//Geforce 6700XL//1 TB HD computer since 2015 or so. It has always worked quite well, but now I am having a serious problem that I cannot solve myself. Debian is connected to the VGA port of a flatscreen (which is being... | Just a couple guesses FWIW. There are some good old threads from Head_on_A_Stick (check spelling) from a few yrs ago that really helped a lot with this kind of thing, did you search the forum? Boot stays stuck for how long? Problems with network mounts can delay boot quite a long time. Systemd in my experience is not v... |
What's wrong: My display has a resolution of 1366 x 768 (16:9), but I'm only getting 800 x 600 (4:3). The full display is being used, but everything is much larger and fuzzier than it should be. Under GNOME Settings, it calls the display "Unknown" and gives 800 x 600 as the only option. I also have Windows 10 on my com... | https://packages.debian.org/stretch-bac ... re-realtek |
Sudden failure to obtain DHCP IP address using Wicd 1.7.2.4 - No previous DHCP issues with this computer/router - Computer can connect to WiFi router with Wicd using static IP address - wicd.log shows DHCPOFFERs ignored on first attempt, no DHCPOFFERs later (MAC<-->leased IP?) - Other devices can get DHCP leases from r... | Neglected to mention that I removed wicd and re-installed it, along with suggested files. No change. My guess is that a config file or non-wicd-specific python library is damaged... |
Hi everybody! I got a Debian Buster server (without desktop) where I have OpenVPN+SSL, when I use two smartphones with android I can connect to the server but on a client with Debian Buster+KDE I got a TLS error and I can't understand why it happens... GabrieleMax | Wow, that's bad. I hate that for ya. You really need to give a better problem description. Why are you using testing? |
Hello everybody!! I'm having problems mounting a partition I've created, when running the mount command I get the following message: Code: Select allroot@Zion:~# mount /dev/sda2 /lfs mount: wrong fs type, bad option, bad superblock on /dev/sda2, missing codepage or helper program, or other error In some cases useful in... | Change the type code to 83 with a partition editor, and then run partprobe. You may need to reboot if you rearranged partitions. I usually reboot after editing the partition table the os is on, just to be sure. After reboot, then use mkfs and try to mount it. http://www.tldp.org/HOWTO/Partition-Mas ... /x190.html |
Hello, Update to open-iscsi 2.0.874-7 on buster/sid fails on my machine (booting on iscsi) : Code: Select alliscsid.service - iSCSI initiator daemon (iscsid) Loaded: loaded (/lib/systemd/system/iscsid.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Sun 2018-10-14 20:48:53 CEST; 5ms ag... | Solved by disabling the iscsid and open-iscsi services at boot (rcconf can be used to do that) |
I can neither install (to /opt) nor run the web browser Eolie: https://wiki.gnome.org/Apps/Eolie. In summary, checkinstall fails with "make: *** No rule to make target 'install'. Stop." and running the application's sh script indicates that WebKit2GTK is not being detected. I downloaded the source code, installed depen... | never heard of it, but since you need ver 2.20 and you have ver 2.18 that seems obvious |
Hi Everyone, My situation as noted above is that df -h is not displaying the additional space that I allocated to a logical volume. I know for a fact that I had the room to extend the volume but taking a look at vgdisplay, as well as shrinking another volume that didn't need so much room. Here were my steps as noted in... | Can you post the result of the following commands so that we can have a better picture of the situation ? Code: Select alllvdisplay /dev/fileserver/tvshows tune2fs -l /dev/fileserver/tvshows df -h /dev/fileserver/tvshows |
Debian 9.5, XFCE After installing gpsd, I get this error message every time I install some package:Code: Select allSetting up gpsd (3.16-4) ... Creating/updating gpsd user account... A dependency job for gpsd.service failed. See 'journalctl -xe' for details. invoke-rc.d: initscript gpsd, action "start" failed. ● gpsd.s... | Did you check journalctl -xe for details? |
I'll start by saying that this isn't really something that needs to be solved. Its more that I'm interested in any feedback of where it may have been going wrong. Yesterday I was having some issues with NetworkManager in Gnome 3.30. What was happening is that if I used to NetworkManager to configure the connection I wa... | There are some really strange issues with networkmanager. I decided to use it on my netbook awhile back and did some research. The issues are pretty well covered on it's bug page, https://bugs.debian.org/network-manager From what I have read, some people believe these issues are driver related, affecting different devi... |
Hello, I have a fresh and updated installation of Debian Stretch on my HP Pavilion dv5, and I cannot figure out why I cannot suspend or hibernate using the following commands: Code: Select allsystemctl suspend Code: Select allsystemctl hibernate Here are the logs for suspend: Code: Select all$ journalctl -r -u suspend.... | Adding more information to this topic. I downloaded the latest version of the 4.4.x Linux kernel series (at the moment of writing this post is 4.4.160) and I followed these steps to build Debian packages for it: - Download the kernel tarball - Unpack it in /usr/src/ - Copy the config file of the kernel I'm currently us... |
Hi everybody, I'm on Debian Testing + Xfce, fresh install. Since I installed network-manager-gnome, login has become incredibly slow but I really dont know if this is related to the package I installed. Packages "libaccountsservice0" and "libblockdev-mdraid2" are installed. I switched from lightdm to slim and then agai... | UPDATE I disabled bluetooth.service and did Code: Select allsudo systemctl stop rtkit-daemon.service && sudo systemctl disable rtkit-daemon.service then disabled acpi, nothing changes. |
Hi all, I get this error on bootup, and also when I type "systemctl status networking.service" from the CL. Code: Select alldrexl@debianWorkstation:~$ systemctl status networking.service ● networking.service - Raise network interfaces Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabl... | What is the output of : Code: Select allcat /etc/network/interfaces.d/* ifup -a -v |
Hi everyone! I was editing my fstab and i made a dumb I was editing fstab because im using an ssd hd, só i wish to put noatime in the respective line BUT........ when i was editing, i leave the end of line like that: noatime,errors 0 0 Instead noatime,errors=remount-ro 0 0 And now i cant access the hd, even using anoth... | Boot from a LiveCD and repair? |
Hello, I'm on a Stretch 9.2 on a Dell laptop 5480 wich has a ssd (256Go). I'm a bit puzzled by the explanations I found on the net about the safe config for a ssd (perhaps because some are outdated?). In particular I read that the option "realtime" is now used by default by the kernel and then that the option "noatime"... | linuxsat wrote:In particular I read that the option "realtime" is now used by default by the kernel It is not "realtime" but "relatime" (short for "relative access time"). It means that the access time is updated (i.e.) written only once after a write or once a day, whichever happens first. Unlike noatime, it allows to... |
Firefox updated without my knowledge surreptitiously and I hate it now , because every time I open it it serves me crap from celebs. But that is the least of my concerns, problem is flash player no longer works. libflashplayer.so is always in /usr/lib/mozilla/plugins, but it no longer works. I need flash, not because I... | I tried the semi-automatic method recommended in the wiki but it does not work, throws syntax errors. |
adding shares to smb.conf works, but i can't share anything with dolphin or net usershare smb.confCode: Select all[global] workgroup = WORKGROUP server string = Samba Server load printers = no security = user map to guest = Bad User log file = /var/log/samba/%m.log max log size = 50 name resolve order = wins bcast host... | Didn't you have some problem with testing the other day? If you're using testing/sid then you should say so in your questions. |
I just installed a fresh stable release 9.5. Problem is that optical display is not right, I get flickering display and cannot type correctly. Nouveau is installed but I don't know if this is the correct driver, might need to install nvidia, another problem because that does not install automatically. Any suggestions? ... | This could be a tricky one to diagnose. I had a similar problem using either nouveau or nvidia on a system with GTX560 Ti. Fix was even stranger - my mouse was plugged into a PS/2 port via USB > PS/2 adapter. Moved it to a USB port and problem disappeared! Nouveau should be fine on a 750 Ti, it's ok on the system with ... |
Code: Select alldpkg: warning: 'ldconfig' not found in PATH or not executable dpkg: warning: 'start-stop-daemon' not found in PATH or not executable dpkg: error: 2 expected programs not found in PATH or not executable Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin E: Sub-process /usr/bin/... | Code: Select allsu - See also http://forums.debian.net/viewtopic.php?f=30&t=47078 EDIT: read the Debian wiki page on sudo, it tells you what to do. |
after apt update, at apt uppradable I get: Code: Select all[~] upgradable 17:44:54 Listing... Done firefox-esr/stable 60.2.0esr-1~deb9u2 amd64 [upgradable from: 52.9.0esr-1~deb9u1] firefox-esr-l10n-el/stable,stable 60.2.0esr-1~deb9u2 all [upgradable from: 52.9.0esr-1~deb9u1] firefox-esr-l10n-en-gb/stable,stable 60.2.0e... | apt is saying that you can't have both libavcodec57 and libavcodec-extra57 if you have aptitude installed try asking why libavcodec-extra57 Code: Select all$ aptitude why libavcodec57 i vlc Depends vlc-plugin-base (= 3.0.3-1-0+deb9u1) i A vlc-plugin-base Depends libavcodec57 (>= 7:3.2.11) | libavcodec-extra57 (>= 7:3.2... |
When using wicd to connect to the internet, wicd normally works with my at-home network.However, almost all other networks have issues connecting with wicd for some reason. Sometimes these networks can connect, but they generally get stuck on either authentication or obtaining IP - then it stops connecting. Occasionall... | Have you eliminated wicd as the cause of the problem by connecting with a different method? Debian's native ifupdown scripts seem to work well. strinx-88 wrote:Wifi driver: Network controller: Broadcom Limited BCM4360 802.11ac Wireless Network Adapter (rev 03) ^ That doesn't show the driver in use, this will: Code: Sel... |
Query: Making Any Command persistent across reboots? | Those links tell you almost everything you need to know. You can run from rc.local or alternatively use a cron job. Debian uses systemd so you could also write a systemd service file. What command do you want to run? If it's just to load a module as in your example, just put the module name in /etc/modules or create a ... |
Suspending from the menu works as expected. Closing the lid will suspend the computer. The problem is waking it up from suspend. Pressing the power button to wake the computer from suspend will wake it up momentarily, then suspend again. From the logs you can see that the computer wakes up from suspend, but is then sus... | I think I just might have solved this one... It works now. For anyone having the same problem: Edit /etc/systemd/logind.conf Change HandleLidSwitch=suspend to HandleLidSwitch=ignore Save and exit. Finally: systemctl restart systemd-logind Marking thread solved. |
Hello all, I've set up a server with a public IP to connect to a VPN server via L2TP/IPsec, the configuration is ok and the connection works. The VPN server assigns to my server addresses like 192.168.6.A. Now I have to connect to a machine under the VPN that has address like 192.168.X.Y (X is not 6), so first of all I... | Forwarding and masquerading have nothing to do with this. It is a routing issue. You must add a route to the destination address or prefix using the VPN interface. For a single address Code: Select allip route add 192.168.X.Y dev ppp0 For a /24 prefix Code: Select allip route add 192.168.X.0/24 dev ppp0 This route is n... |
Hi!I am running Debian 9.5 Stretch 64 bit. Whenever I run the apt-get update command I am getting the following errors Err:23 https://dl.bintray.com/resin-io/debian stable Release server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none Hit:24 http://dl.google.com/linux/earth/deb... | I don't see an error for the Google repo. |
I installed Debian 9.5 (32bit) in VMWare. Then there was no problem. Immediately after the installation was offered an update: linux-image-4.9.0-7-686-pae -> linux-image-4.9.0-8-686-pae From this point on, I see this at boot: "Failed to active SWAP" "Dependency failed for swap" If I choose the old kernel when booting, ... | on both kernels as root Code: Select allblkid |
Hello, I have just installed lsb-base, lsb-release and lsb-compat on a recent installation of Debian stretch: Code: Select allLinux TRILLIAN 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u3 (2018-08-19) x86_64 GNU/Linux When checking for the LSB modules, lsb_release says that there are no LSB modules installed. Code: Selec... | Hi, none of the packages claims that it contains lsb modules. Please read [1] [1] http://forums.debian.net/viewtopic.php?f=20&t=128161 |
I was just "surfing" this morning and suddenly the music stream stopped, and every tab on the browser showed: No internet Try: Checking the network cables, modem, and router Reconnecting to Wi-Fi DNS_PROBE_FINISHED_NO_INTERNET Initially, I thought my internet connection had gone down - much construction on the main roa... | w4kh wrote:DNS_PROBE_FINISHED_NO_INTERNET What does this come from ? Segfault wrote:Basics first. Can you access web sites by IP address? "Basics" ? A web browser is an overcomplicated piece of software unsuitable for network troubleshooting. To me, basics are IP configuration lookup with ip addr and ip route, IP conne... |
OS: buster (testing) $ uname -r 4.17.0-1-amd64 # aptitude show openssh-server Package: openssh-server Version: 1:7.7p1-3 [SNIP] I am having trouble getting 1 and only 1 command to be authorized via ssh. I was supposed to put $SHELL after ./suspend but I forgot. That doesn't matter because it should have rejected the sc... | I also tried putting authorized_keys to permission 600 like debian.org says but it changes nothing. It works with 644 also with seemingly no difference at all. Hmm. |
Hi, I'm running stretch on a Dell Inspiron 15 5575 and tried the kernel from the stretch backports but the system isn't able to boot. Should I create a bug report or can I fix it on my side? /var/log/messages https://paste.debian.net/1036754 | Look at the very last line in your log. |
I am using Debian stretch 9.5 xfce / kernel 4.9.0-7-amd64 this is inxi -G Code: Select allGraphics: Card: NVIDIA GP107 [GeForce GTX 1050] Display Server: X.Org 1.19.2 driver: nvidia Resolution: 1920x1080@60.00hz GLX Renderer: GeForce GTX 1050/PCIe/SSE2 GLX Version: 4.5.0 NVIDIA 375.82 on apt upgrade I get this: Code: S... | This - Have you done an ‘apt update’? The 375 version no longer exists in the stable repo. Bulkley wrote:Where did you get the kernel 4.9.0-7-amd64? I'm showing 4.9.0-6-amd64. I don't know whether or not the kernel is an issue but you might try the older one. 4.9.0-7 is the latest Stretch kernel. dist-upgrade may be ne... |
Hello! Here is my problem: I'm running Linux 4.9.0-4-amd64 #1 SMP Debian 4.9.65-3+deb9u1 (2017-12-23) x86_64 GNU/Linux. Yesterday my Server ran out of diskspace. Now i'm trying to find out who is consuming the space. I did df -h: Code: Select allDateisystem Größe Benutzt Verf. Verw% Eingehängt auf udev 7,9G 0 7,9G 0% /... | Probably hiding “under” one of your mounts. Unmount them and check again. |
Hello guys, from a few days I can not extract compress file using GUI becouse when I execute Peazip appear this error: Failed to execute child process "peazip" (File o directory non esistente). I have just tried to purge this software and I have just installed it again using the deb package using the CLI but there are ... | peazip is not a debian package (not in the repositories anyway) so your best COA would be to contact the developers to see if it is a known bug?? As an alternative you could try one of the Debian packages that have a GUI to compress/decompress your files Gnome - file-roller Kde - ark General - xarchiver |
I have 64bit Debian Testing (Buster) system. I am compiling and linking a 32bit openGL application. The compile is fine, but when linking I get: /usr/bin/ld: skipping incompatible //usr/lib/x86_64-linux-gnu/libGLU.so when searching for -lGLU /usr/bin/ld: skipping incompatible //usr/lib/x86_64-linux-gnu/libGLU.a when se... | https://packages.debian.org/search?sear ... e&arch=any So I would try installing the ":i386" version of the package. |
I have installed Debian Buster on to a Lenovo laptop but I can not get the wifi working on, lspci shows the following: Code: Select allmit@Pyro:~$ lspci 00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09) 00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI... | If it was me I would try stable instead of testing. Buster isn't released yet. There could be a temp problem with some pkg or other? If it's not working after following the wiki for firmware install https://wiki.debian.org/iwlwifi then I'd take a look in dmesg and make sure one of the firmwares is loading for the devic... |
Hey, I checked my system with chkrootkit and rkhunter, but I do not really know what the output means. Searching for the topic and output pieces in the internet did not really help me. I am running Debian Stretch with KDE and I have installed Sophos. I am using this system for about nearly 1 year, but installed chkroot... | To upload the file so people can see it , use : http://paste.debian.net/ or https://pastebin.com/ and then include a link to the file in your post |
Hi, From sime time ago, Ive got this problem with mount.ntfs-3g (Debian Stretch), for example when I open gparted... I think It might started happening when decided to use hardlinks in ntfs partitions. Might it have to be with big ntfs hardklinked directories? Any help, please Thanks. | I noticed a similar problem when copying files to removable media (external hard drive), which contains NTFS file system. The CPU is used for about 20-30 percent. However, if you are copying from an external hard disk to a drive located in a computer (internal hard drive), only 5 percent of the CPU is used. |
Hi, I have a debian server and I want to update Linux kernel to the latest version. In this output I see that I am using Kernel version 3.16. Code: Select all# uname -a Linux pc 3.16.6-042stab127.46 #1 SMP Wed Mar 28 01:57:40 CEST 2018 x86_64 GNU/Linux Code: Select all# apt search linux-image linux-headers-4.17.0-0.bpo... | emitor wrote:# uname -a Linux pc 3.16.6-042stab127.46 #1 SMP Wed Mar 28 01:57:40 CEST 2018 x86_64 GNU/Linux This is not a Debian stock kernel. Also, according to your apt command, it does not seem to have been installed by a Debian package. emitor wrote:There is 4.17 installed, 4.9 installed and "automatic". What does ... |
Hello, I have a Dell Inspiron 7577 and I have Debian and Windows installed on it. Both the root directory for Debian and the C drive for Windows share the NVMe SSD, and the home directory, swap partition, and extra storage for windows are on the HDD. I am a firm believer in reading the fine manual and my setup has been... | bmickey wrote:Also what is the official deal with swap. I have 16GB of ram so I know from a memory perspective that's more than necessary but do I need virtual memory for programming in C. If you hibernate then you need 16+GB swap. If you don't then 4-8 is likely fine. Just watch it for awhile and see if you get into i... |
Hy guys! I'm using Debian Buster from last september (I'm a Debian user since 2004!) as a dual boot (W7+Debian) on my HP-2170P; few months ago roughly at march 2018 after some updates I had a "issue" at startup so now Debian needs a console login before to load automatically KDE! I did a fresh install three days ago bu... | Hi, It's kernel related issue with entropy. Workaround is to install 'haveged' (entropy source) package. BR, P. |
Hello guys, I have an Odroid, with 2 wifi cards. They are working properly but I have a little issues with one of this wifi card. I have configured two static IP of two different networks Code: Select allauto lo iface lo inet loopback auto wlan0 allow-hotplug wlan0 iface wlan0 inet static address 192.168.1.39 netmask 2... | wizard10000 wrote:That "auto wlan0" tells the machine to use DHCP. If you're setting a static IP on the machine you don't want that Wrong. "auto" tells to bring the interface up when the system boots. |
Hello all, I've been trying to install mesa with gallium nine, and I'm trying to compile it from source. I try to run the autogen.sh script that comes with it and I get the following error: Code: Select allconfigure: error: LLVM 3.9.0 or newer is required for r600 when trying to run Code: Select allsudo sh autogen.sh -... | lando32 wrote:I solved the issue now, I had to go add the LLVM nightly PPA, add the archive signature key, and then update & upgrade You have not solved this problem, but only more complicated. Congratulations. You created a FrankenDebian |
I'm unable to get this Edimax USB wifi card working. System info: Lenovo w530, root@deb9:~# uname -ra Linux deb9 4.9.0-6-amd64 #1 SMP Debian 4.9.88-1+deb9u1 (2018-05-07) x86_64 GNU/Linux Mate desktop 1.16.2 root@deb9:~# cat /etc/debian_version 9.4 lsusb output: Bus 002 Device 003: ID 7392:7811 Edimax Technology Co., Lt... | Have you read/followed this? https://wiki.debian.org/rtl819x ... However I am still unable to get the device to connect. It finds the wifi network, I enter the password but it just does not connect. ... What are you using to connect? If it's network manager there is a well known bug in wifi.scan-rand-mac-address settin... |
I've got a Debian 9 box hosting a few VMs. I want the VMs to be on their own network from the rest of my lab. Physical lab IPs: 172.19.20.x Debian 9 host: 172.19.20.254 VM IP network: 192.168.1.x Code: Select all# cat /etc/network/interfaces auto lo iface lo inet loopback auto ens18 iface ens18 inet static address 172.... | Have you read this https://wiki.debian.org/BridgeNetworkConnections ? |
Its running the script as log files are being completed, but it doent opent a xterm terminal, neither a konsole terminal. When I use run-parts for testing it, It does open the terminals... Code: Select all#!/bin/sh # PATH=/sbin:/bin:/usr/sbin:/usr/bin export PATH fechaname=hardback-`date +%Y-%m-%d_%H:%M:%S`.log su myus... | bester69 wrote:Its running the script as log files are being completed, but it doent opent a xterm terminal, neither a konsole terminal. When I use run-parts for testing it, It does open the terminals... :?: :?: Code: Select all#!/bin/sh # PATH=/sbin:/bin:/usr/sbin:/usr/bin export PATH fechaname=hardback-`date +%Y-%m-%... |
Hey everyone - I recently "mastered", lol - working up a backup drive to use encryption in Ubuntu. My drive has backups and its used as a work drive for my schematics. That being said, I'm currently using a key file for authentication opposed to a password when I mount and open the drive. So the question is this; when ... | ... actually, I had time last night to play this out. I was able to prove out my basic theory that if I have a drive that was encrypted on a Ubuntu system with the use of a key-file for authentication, I "should" be able to use this same drive on my Debian system, provided I have the correct bits to authenticate. So th... |
Dear Friends, I am new Debian user. Today I have just installed at my laptop. I have problems with network. It appears message like bellow. What should I do? Code: Select all● networking.service - Raise network interfaces Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled) Active: f... | Please post the full content of /etc/network/interfaces, thanks. |
I thought I better ask this in a new thread before I mess everything up. I was trying to move a folder named " DWA-160_REVB_DRIVERS_1.610_LINUX" to my src folder. Instead I moved my src folder inside the "DWA-160_REVB_DRIVERS_1.610_LINUX" folder. I tried several times to move it back but thankfully I got errors. Can I ... | ramblin wrote:I thought I better ask this in a new thread before I mess everything up. I was trying to move a folder named " DWA-160_REVB_DRIVERS_1.610_LINUX" to my src folder. Instead I moved my src folder inside the "DWA-160_REVB_DRIVERS_1.610_LINUX" folder. I tried several times to move it back but thankfully I got ... |
I just installed Stretch 9.4.0 on an AMD64 platform with no issues. This build runs excellent on my wired connection. ( I`m using it now ). Wireless, however is another story. My network adapter ( RTL8192EU ) is not recognized natively so I used Synaptic and installed the Realtek package that does have the driver. I al... | ramblin wrote:Tried again to upload 3 pics converted to jpeg and it says "Sorry, the board attachment quota has been reached." http://forums.debian.net/viewtopic.php?f=16&t=123831 |
it is running debian sid. the user i am using to login with has the following in smb.conf Code: Select all[media] path = /mnt/media valid users = media read only = no #hosts allow = 192.168.1 127.0.0.1 when i am in macos, it logs me in automatically every time since the first time i entered in my login credentials and ... | You're going to have to be much more clear and detailed if you want help here. To start with, WHAT is using Sid? Your server, your client, what? And why in the world would you run a Samba server on a highly experimental OS? What does your server installation look like (again--details!) and what do the client machine(s)... |
Hello, I have a problem when I try to install dependency using the command "apt-get install -f" and appear an error message about " pkgProblemResolver". Someone can help me? Thanks | Not without a lot more info than that. Post your complete command and output in a code box, and describe your setup and version and what you are trying to do clearly. |
I've just installed Debian 9 ( clean install, no upgrade from 8 ) and I get these errors (NO_PUBKEY) from Synaptic about keys missing. I haven't added any third-party repositories. How can I add the stretch keys to debian 9? Also, how can I see what keys are already installed and if they belong to debian 9 or to the pr... | After many hours of searching I finally managed to remedy the problem. I've fount the missing keys from public key-servers and I added them using synaptic. From the menu: "Settings > Repositories" , in the Authentication Tab, I added them one by one. I don't know if this is the proper way to add keys systemwide but tha... |
I have a server with raspberry pi with raspbian 9 installed I can entry in ssh I can to read with sshfs on my client pc I installed debian 9, fuse and sshfs I do not have the fuse group, in the my client with debian 9 my uid-gid are = 1000 same for the client and for the server I created a local directory in the home c... | Can’t really tell from your description. Show your working... Post the commands and output, along with some ‘ls -l’ output (in text in a code box - not a screenshot). |
I have paid for a Virtual Private Server (VPS) at 1&1 in the UK to host http://www.kickbymicrowave.co.uk/ and hopefully a secure version https://www.kickbymicrowave.co.uk/, but the latter is presenting me problems. The It is running Debian. 9 Code: Select all root@localhost:~# cat /etc/issue Debian GNU/Linux 9 \l I ins... | I found the solution - the 1&1 control panel for the virtual private server (VPS) had to be configured to allow port 443 in. |
Hi crew, I am new to this forum, but not to Debian nor the Linux users world. I've been using various distros since 2007, including Debian from time to time. But since some weeks, I have a crazy long boot time I can't explain, even after googling the problem. I think I am mislead by the ACPI error message, that seems t... | Have you tried installing haveged yet? |
Hi, Im trying to setup 802.3ad bonding, on two interfaces (DUAL NIC), for testing purposes. ifenslave is installed. Any suggestions to what im missing. My bond section in the interface file look like this Code: Select allauto enp1s0f0 iface enp1s0f0 inet manual bond-master bond0 auto enp1s0f1 iface enp1s0f1 inet manual... | Fixed.. I found this in the kern.log.. Code: Select allMay 25 13:45:43 prodigy kernel: [56725.467067] bond0: Adding slave enp1s0f0 May 25 13:45:43 - kernel: [56725.467127] bnx2 0000:01:00.0: firmware: failed to load bnx2/bnx2-mips-09-6.2.1b.fw (-2) May 25 13:45:43 - kernel: [56725.467157] bnx2 0000:01:00.0: Direct firm... |
hi since the last upgrade (4.9.0-6-amd64 #1 SMP Debian 4.9.88-1 (2018-04-29) x86_64 GNU/Linux) lxde start needs more than 30sec from login till it is ready. before it was about 5sec, which is why i like lxde on my slow netbook. boot till login 19sec login till lxde 38sec i don't understand the syslog: May 6 18:01:32 st... | Take a look here: http://forums.debian.net/viewtopic.php? ... 4&start=30. This seems to solve the problem for most of us. |
Hello Guys, I'm an advanced beginner regarding to Debian, but relative new regarding to Linux booting from USB. While the installation I had problems while installing grub, so I skipped that. When I'm starting my laptop now, I can boot from efi file, and then everything is fine. But the USB Stick can't boot automatical... | verrain wrote:I had problems while installing grub, so I skipped that Which problems ? verrain wrote:When I'm starting my laptop now, I can boot from efi file, and then everything is fine. Then it looks like you did not completely skip the installation of GRUB. What EFI path/file do you select ? You say that sdb1 is th... |
Hi, do you know if there are recent tips to mount an Iphone on Debian 9? Unfortunately, official wikis and forum posts, do not allow me to do this operation, which is allowed on other distros. I thank you. | How are you 'not allowed'? Where does it fail? |
Hello everyone, I am a happy user of Debian for years now, but I am not an expert at all. I am running Debian Stretch (with gnome) along with Windows 10 (dual boot) on a Thinkpad X220, and my system is frequently updated. Everything was running smoothly till this afternoon, when I faced a problem I have difficulties to... | One thing that can cause this sort of issue is a lack of space, you can use a console (press Ctrl+Alt+F1 at your blank screen) and then login and then you can check what free space is available using df and if any of them are 90% used or higher it might help to either resize that partition or remove any surplus files. ... |
First as all of you know I am running testing. Well maybe not everyone knows that. I did some google searching and nothing has turned up about this so far. I went to launch synaptic from my menu and nothing happened. I thought this is weird. So I opened up a terminal and launched it and it said command not found. Well ... | It's only a guess, but are you in the sudo group? or do you even have sudo installed? I'm not at all sure this would make a difference, but I would imagine pkexec has to get it's authorization from somewhere and sudo is the "normal" way a user gets authorized to run root commands. I'm not saying you "should" install su... |
Hello, hello, I normally use Ubuntu or CentOS, but I need to install the latest Debian on a server. I've done that once before (8.5) and besides a nonfree driver issue, I didn't run into issues. But here: impossible. I've put the nonfree 9.4 ISO on a USB key, I boot and start the install process. When comes time for th... | Have you re-accomplished RAID setup on the SSD's by clearing the partition tables and creating new raid partitions? |
I installed apache 2, mysql server and php my admin without problems. Problem is that when starting php my admin, it requests user and password and I don't know where to set those. | Maybe give a little better details, How exactly did you install phpmyadmin ? What OS is it ? or Debian version, if it is Debian ,... Usually the default user is "root" and the default password is "admin" This might help : https://askubuntu.com/questions/118772/ ... phpmyadmin If not, there is plenty of tutorials and in... |
I made a bad mistake when setting up my zfs pool, used sd? instead of wwn-... for the zfs drives. Now I found I have the problem that every time when I boot with some thumb drive plugged in, the thumb drive gets allocated a sd? number inbetween the sd? spinning drives. This in turn makes the zfs volume mount fail at bo... | Meow wrote:I made a bad mistake when setting up my zfs pool, used sd? instead of wwn-... for the zfs drives. What do you mean exactly ? Do /dev/sd* names appear in some config files ? A feature of modern GNU/Linux systems is that disk block device numbering and naming is not persistent by design, and IMO should not be ... |
I am currently using 4.9.0-0.bpo.4-686-pae #1 SMP Debian 4.9.65-3+deb9u1~bpo8+1. I noticed in some searches regarding Stretch that 4.9.0-0.bpo.5-686-pae #1 SMP Debian 4.9.65-3+deb9u2~bpo8+1 has been patched to mitigate the Meltdown vulnerability. I also noticed that the same version is available in jessie-backports. So... | Look at the changelog on the pkg page. https://packages.debian.org/jessie-back ... .5-686-pae |
I have an old wheezy installation (on a VM) I use to cross-compile software for an ARM box. Today I did an "aptitude update" followed by "aptitude upgrade" to refresh the installed packages (there were mainly security updates). However, after I installed all the updates and rebooted, now the boot process (whichever ker... | "LV not available" just means that the LV has not been activated yet, because the initramfs does not feel like it should activate the LV. The problem seems to be in the root= parameter passed by GRUB to the kernel command line as defined in /boot/grub/grub.cfg. When the root file system is on an LV, the root parameter ... |
Code: Select allW: http://security.debian.org/dists/stretch/updates/InRelease: The key(s) in the keyring /etc/apt/trusted.gpg are ignored as the file is not readable by user '_apt' executing apt-key. W: http://ftp.us.debian.org/debian/dists/stretch-updates/InRelease: The key(s) in the keyring /etc/apt/trusted.gpg are i... | Did a quick search to try to help. I don't know if you did any searching or not but you should try. Then tell us what you tried with Code: Select all captures showing results. Anyway I don't know if this will help but you have nothing to lose: [url]http://forums.debian.net/viewtopic.php?t=130558[/url] |
Hi!II am a Debian newbie having installed Debian 9 Stretch 64 bit. When I run apt-get update I get output errors below W: GPG error: https://dl.bintray.com/resin-io/debian stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 379CE192D401AB61 W: The repository ... | Did you "See apt-secure(8) manpage"? It explains your issue and how to solve it. |
Hi!I am a Debian newbie having installed Debian 9 Stretch 64 bit 2 months ago.I updated the /etc/apt/sources.list with the following repositories as per document link below https://wiki.debian.org/SourcesList deb http://deb.debian.org/debian stretch main deb-src http://deb.debian.org/debian stretch main deb http://deb.... | It tells you what line numbers are duplicated. |
Hi!I am a Debian newbie having installed Debian 9 Stretch 64 bit.I have tried installing google earth first by adding the following repository below on /etc/apt/sources.list deb http://dl.google.com/linux/earth/deb/ stable main Next I installed the 2 packages below apt-get install googleearth-package apt-get install ls... | http://forums.debian.net/viewtopic.php?t=130229 Nobody can figure out your desktop menu, or what the pkg you installed will do better than you can. The reason is because nobody can guess what desktop or menu system you are using. Most packages have a readme file, or a man page, or some other documentation. I often use ... |
this seems to be a recent malady.... on system start-up my Dropbox daemon doesn't start i can go in with command line Code: Select alldropbox stop dropboxd dropbox start dropboxd -- that starts it -- but -- I shouldn't need to do this: it's in the startup list ***this problem has only been happening recently -- 10 days... | 0) How did you install Dropbox? You didn't use the .deb for Ubuntu, did you? 1) What did you do when the problems started? Did you upgrade anything? Use this to find out: Code: Select allless /var/log/apt/history.log 2)What are you using? Stable/testing/unstable, Stretch/Jessie/Lenny/Older/Something else than Debian? C... |
I have three systems running Buster. All are updated regularly with "apt upgrade". One of them is on kernel-image 4.14 the other two updated to kernel-image 4.15 sometime ago. What gives? I was under the impression the default kernel would be 4.14 since that's LTS. | Post the output of Code: Select allapt-cache policy linux-image-amd64 on all boxes. I bet the one running 4.14 doesn't have the kernel metapackage. |
I previously asked for assistance here: https://reddit.com/r/linuxquestions/com ... onnection/ I seem to have some problems getting a second-hand machine (HP Elite 8200) to properly connect. The connection is very unstable, many times not being able to load any pages in the browser, getting pings over 200ms, and gettin... | Dai_trying wrote:Also I noticed you mentioned something about gigabit connection in the reddit post which makes me think you might need the tg3 firmware which I believe is in the package firmware-misc-nonfree andoru wrote:Network: Card: Intel 82579LM Gigabit Network Connection driver: e1000e IF: eno1 state: up speed: 1... |
Hi All If I install a package with apt, then it deletes the .deb file immediately after it installs the package. If I install the package with apt-get or aptitude then the .deb file is kept. How do I change this? I would like apt to keep the .deb file for a bit, until I run an apt autoclean every few weeks. Thanks in a... | from /usr/share/doc/apt/NEWS.Debian.gz [ Automatic removal of debs after install ] After packages are successfully installed by apt(8), the corresponding .deb package files will be removed from the /var/cache/apt/archives cache directory. This can be changed by setting the apt configuration option "Binary::apt::APT::Ke... |
I am on Debian Testing, not sure if that makes a difference here though. I am still researching this problem but haven't found a solution yet. Tried messing with /etc/hosts /etc/sudoers /etc/resolv.conf /etc/hostname All of these things seem fine. What happens is when I first open a terminal and type sudo apt-get updat... | dcihon wrote:when I first open a terminal and type sudo apt-get update there is a delay after entering my password and the command runs Try using this in another terminal before you run the `sudo` command: Code: Select allsudo journalctl -fx This will show a "live" log of the systemd journal and any errors with `sudo` ... |
Hi, I'm trying to create a custom tasksel task. This is the task (copied from the official README file of tasksel git repository): File /usr/share/tasksel/mytask.desc: Code: Select allTask: graphical-games Relevance: 9 Parent: games Section: user Description: Graphical games This task provides a variety of graphical ga... | from /usr/share/doc/tasksel/README.gz The Key field lists packages that are essential to the task. If those packages are not available, then the task will not be available either. Code: Select all $ apt policy x-window-system-core x-window-system-core: Installed: (none) Candidate: (none) Version table: |
This post is directed to debiman He wrote this in response to a forum post: fwiw, i dropped apache for nginx on my small server because it's overkill. I have built a debian server running stable 9 to run a mail server called iredmail: https://www.iredmail.org/ I have been working with their forum trying to resolve an i... | The ssl error just looks like one of the bots that trawl the net looking for servers offering the old insecure version. Ignore that. The 'file not found' shows where you have told nginx to look for iredmailadmin - where is it really? |
For about the last 6 weeks apt-get update generated the following error message: E: Failed to fetch http://security.debian.org/dists/stretc ... slation-en Could not open file /var/lib/apt/lists/partial/security.debian.org_dists_stretch_updates_main_i18n_Translation-en.bz2 - open (13: Permission denied) [IP: 128.101.240... | Does it work any better if you try to fetch: http://security.debian.org/dists/stretc ... ion-en.bz2 from a different mirror? |
Refresh in Synaptic: Code: Select allW: http://deb.debian.org/debian/dists/stretch/Release.gpg: The key(s) in the keyring /etc/apt/trusted.gpg are ignored as the file is not readable by user '_apt' executing apt-key. W: http://security.debian.org/debian-security/dists/stretch/updates/InRelease: The key(s) in the keyrin... | Seems like I have seen this asked quite a few times, so I tries a search. From some search results:The key(s) in the keyring /etc/apt/trusted.gpg are ignored as the file is not readable by user =================================== http://forums.debian.net/viewtopic.php?t=130558#p629511 Be sure to read the entire thread,... |
Hi!!!!! This is my first post, i use Debian "Buster" on a PC with a Geforce 1050ti and a laptop Lenovo g580 (Geforce 635M). On both of them i play with Filghtgear and Urbanterror but I get only troubles with the Lenovo, everything goes smooth with the PC. When i launch flightgear with (antialiasing 2x, nothing else): C... | Even that this is not directly related to Debian itself, take a look at the own game forum about that mobile video card: https://forum.flightgear.org/viewtopic.php?f=37&t=31186 |
Using grub2 here is my 40_custom: Code: Select all #!/bin/sh exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. # path to the partition holding ISO images (using UUID) p... | francois.e wrote:Here is my grub: This looks like the contents of the config file /etc/default/grub. You want to look at the result of update-grub in /boot/grub/grub.cfg. Running update-initramfs is irrelevant. |
Alright guys, don't make fun of me, but I'd like to know how to change the name of my linux install. My story: I installed Tanglu GNU/Linux originally when it was based directly on Debian, but about two years ago I switched all my sources to Debian Sid. The problem I am having now is that "Tanglu" occasionally still po... | RWIndiana wrote:Is there a way to change it to Debian instead of Tanglu? Install Debian. http://forums.debian.net/viewtopic.php? ... 15#p542283 |
Just to let everyone else here know, after few Debian 9.3 clean installs, I've verified a huge problem with the new upstream kernel. More on Reddit, together with an image: GNOME crashes Reddit Mine was the same problem. TL;DR: GNOME would flicker after opening new terminal window, and then crash after few minutes. It ... | Similar issues described here. From what I have gathered, there is a regression related to either Intel GPUs or 5th gen Broadwell CPUs. I've seen kernel regressions getting fixed in regular security updates. Fingers crossed |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.