prompt
stringlengths
1
63.6k
completion
stringlengths
1
53.1k
Had no problems going from Wheezy to Jessie, but Samba broke with the upgrade to Stretch. Anybody else have this problem? I have two servers. Samba runs standalone on both. One is my primary server and the one I did the upgrade on is a backup server. Upgrade was pretty uneventful. Username/Password is same on my Windows PC (win-7) as the Debian servers. Also same for Samba. When I try to connect from my PC, I get prompted for a username/password. I type in valid info, but keeps prompting. Been googling and fighting this for two days now. Any ideas? TIA
A little more information... Samba versions is 4.2.14 on Jessie. The upgrade to Stitch upgraded Samba to 4.5.12
Hello, I have a 312.0 GB disk while Debian installer shows it's 335.0 GB. After partitioning with Debian installer, I again get size errors after running Code: Select allfdisk -l and Code: Select alllsblk. I make: /boot 1.0 GB / 30.0 GB /home 100.0 GB /var 200.0 GB After installtion fdisk-l shows: Code: Select allDisk /dev/vda: 312 GiB, 335007449088 bytes, 654311424 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x88fe9297 Device Boot Start End Sectors Size Id Type /dev/vda1 * 2048 1953791 1951744 953M 83 Linux /dev/vda2 1955838 646483967 644528130 307.3G 5 Extended /dev/vda5 1955840 60547071 58591232 28G 83 Linux /dev/vda6 60549120 255858687 195309568 93.1G 83 Linux /dev/vda7 255860736 646483967 390623232 186.3G 83 Linux and lsblk shows: Code: Select allNAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sr0 11:0 1 1024M 0 rom vda 254:0 0 312G 0 disk ├─vda1 254:1 0 953M 0 part /boot ├─vda2 254:2 0 1K 0 part ├─vda5 254:5 0 28G 0 part / ├─vda6 254:6 0 93.1G 0 part /home └─vda7 254:7 0 186.3G 0 part /var How come installer fails to make properly sized partitions?
I do not see any error in what you report. Do you mean size mismatch ? Your disk size is 335 GB = 312 GiB. 1 GB = 1 000 000 000 bytes 1 GiB = 1 073 741 824 bytes Disk manufacturers and the Debian installer display disk sizes in gigabytes (GB), i.e. decimal SI prefixes. Some other software such as fdisk display disk sizes in gibibytes (GiB), i.e. binary non-SI prefixes. Unfortunately, for historical reasons they often forget to display the "i" indicating the use of a binary prefix. This has created and will continue to create much confusion as long as all software won't be fixed.
Hello I have an external 1TB hard disk with 1 ext4 partition. After trying to mount it on Windows with Ext2explore and Ext2fsd something happend and I can not mount it anymore. I tried all I know and found but nothing seems to work, this is what I've done: The disk is /dev/sdb and the broken partition /dev/sdb1 Code: Select allroot@HP:/tmp/mount0# fdisk -l /dev/sdb Disk /dev/sdb: 931.5 GiB, 1000204885504 bytes, 1953525167 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0xfce82c18 Device Boot Start End Sectors Size Id Type /dev/sdb1 2048 1953525166 1953523119 931.5G 85 Linux extended Code: Select allroot@HP:/tmp/mount0# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 931.5G 0 disk ├─sda1 8:1 0 199M 0 part ├─sda2 8:2 0 459.4G 0 part /media/windows ├─sda4 8:4 0 1K 0 part ├─sda5 8:5 0 1.9G 0 part [SWAP] ├─sda6 8:6 0 61.7G 0 part / ├─sda7 8:7 0 476M 0 part /boot └─sda8 8:8 0 407.9G 0 part /home sdb 8:16 0 931.5G 0 disk └─sdb1 8:17 0 1K 0 part sr0 11:0 1 1024M 0 rom fdisk -l returns the right (I think) partition table but lsblk doesn't. When I try to mount: Code: Select allroot@HP:/tmp/mount0# mount /dev/sdb1 /tmp/mount0/. mount: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so. This is dmesg after trying to mount: Code: Select allroot@HP:/tmp/mount0# dmesg | tail -3 [ 8975.092042] EXT4-fs (sdb1): unable to read superblock [ 8975.092511] EXT4-fs (sdb1): unable to read superblock [ 8975.092984] EXT4-fs (sdb1): unable to read superblock So I tried to check the disk with some tools but none worked: Code: Select allroot@HP:/tmp/mount0# dumpe2fs /dev/sdb1 dumpe2fs 1.43.4 (31-Jan-2017) dumpe2fs: Attempt to read block from filesystem resulted in short read while trying to open /dev/sdb1 Couldn't find valid filesystem superblock. Code: Select allroot@HP:/tmp/mount0# e2fsck -pc /dev/sdb1 e2fsck: Attempt to read block from filesystem resulted in short read while trying to open /dev/sdb1 Could this be a zero-length partition? I tried also with e2fsck -pc -b 32768 /dev/sdb1 and other superblocks possible locations guessed with mke2fs -n -v /dev/sdb Code: Select allroot@HP:/tmp/mount0# parted /dev/sdb GNU Parted 3.2 Using /dev/sdb Welcome to GNU Parted! Type 'help' to view a list of commands. (parted) rescue Error: Invalid partition table on /dev/sdb -- wrong signature 0. Ignore/Cancel? i Start? 2048 End? 1953525166 (parted) print Error: Invalid partition table on /dev/sdb -- wrong signature 0. Ignore/Cancel? i Model: Seagate Expansion (scsi) Disk /dev/sdb: 1000GB Sector size (logical/physical): 512B/512B Partition Table: msdos Disk Flags: Number Start End Size Type File system Flags 1 1049kB 1000GB 1000GB extended (parted)q root@HP:/tmp/mount0# dmesg | tail [12567.537628] sd 6:0:0:0: [sdb] tag#0 FAILED Result: hostbyte=DID_ERROR driverbyte=DRIVER_SENSE [12567.537634] sd 6:0:0:0: [sdb] tag#0 Sense Key : Hardware Error [current] [descriptor] [12567.537638] sd 6:0:0:0: [sdb] tag#0 Add. Sense: No additional sense information [12567.537643] sd 6:0:0:0: [sdb] tag#0 CDB: ATA command pass through(16) 85 06 20 00 00 00 00 00 00 00 00 00 00 00 e5 00 [12568.021560] sd 6:0:0:0: [sdb] tag#0 FAILED Result: hostbyte=DID_ERROR driverbyte=DRIVER_SENSE [12568.021569] sd 6:0:0:0: [sdb] tag#0 Sense Key : Hardware Error [current] [descriptor] [12568.021574] sd 6:0:0:0: [sdb] tag#0 Add. Sense: No additional sense information [12568.021581] sd 6:0:0:0: [sdb] tag#0 CDB: ATA command pass through(12)/Blank a1 06 20 da 00 00 4f c2 00 b0 00 00 I also performed a full scan with gpart, it lasted more than 24 hours, output was: Code: Select all** Error: invalid extended ptbl found at sector(2048). dev(/dev/sdb) mss(512) chs(121601/255/63)(LBA) #s(1953525167) size(953869mb) Primary partition(1) type: 133(0x85)(Extended Linux) size: 953868mb #s(1953523119) s(2048-1953525166) chs: (0/32/33)-(1023/254/63)d (0/32/33)-(121601/80/62)r hex: 00 20 21 00 85 FE FF FF 00 08 00 00 AF 65 70 74 Logical partition Primary partition(2) type: 000(0x00)(unused) size: 0mb #s(0) s(0-0) chs: (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Primary partition(3) type: 000(0x00)(unused) size: 0mb #s(0) s(0-0) chs: (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Primary partition(4) type: 000(0x00)(unused) size: 0mb #s(0) s(0-0) chs: (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Begin scan... Possible partition(Windows NT/W2K FS), size(953867mb), offset(0mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 953867mb #s(1953520001) s(63-1953520063) chs: (0/1/1)-(1023/254/63)d (0/1/1)-(121600/254/62)r hex: 00 01 01 00 07 FE FF FF 3F 00 00 00 81 59 70 74 Possible partition(Linux ext2), size(953868mb), offset(1mb) <---------------- I think it's this one type: 131(0x83)(Linux ext2 filesystem) size: 953868mb #s(1953523112) s(2048-1953525159) chs: (0/32/33)-(1023/254/63)d (0/32/33)-(121601/80/55)r hex: 00 20 21 00 83 FE FF FF 00 08 00 00 A8 65 70 74 Possible partition(Windows NT/W2K FS), size(5117mb), offset(211764mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 5117mb #s(10481663) s(433692920-444174582) chs: (1023/254/63)-(1023/254/63)d (26996/34/39)-(27648/150/13)r hex: 00 FE FF FF 07 FE FF FF F8 A0 D9 19 FF EF 9F 00 Possible partition(Windows NT/W2K FS), size(3mb), offset(327070mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 3mb #s(6173) s(669841348-669847520) chs: (1023/254/63)-(1023/254/63)d (41695/177/23)-(41696/20/21)r hex: 00 FE FF FF 07 FE FF FF C4 F7 EC 27 1D 18 00 00 Possible partition(Windows NT/W2K FS), size(0mb), offset(572036mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 0mb #s(1) s(1171530569-1171530569) chs: (1023/254/63)-(1023/254/63)d (72924/103/21)-(72924/103/21)r hex: 00 FE FF FF 07 FE FF FF 49 23 D4 45 01 00 00 00 Possible partition(Windows NT/W2K FS), size(3mb), offset(574733mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 3mb #s(6173) s(1177053372-1177059544) chs: (1023/254/63)-(1023/254/63)d (73268/46/55)-(73268/144/53)r hex: 00 FE FF FF 07 FE FF FF BC 68 28 46 1D 18 00 00 Possible partition(Windows NT/W2K FS), size(3mb), offset(591087mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 3mb #s(6173) s(1210547388-1210553560) chs: (1023/254/63)-(1023/254/63)d (75353/22/58)-(75353/120/56)r hex: 00 FE FF FF 07 FE FF FF BC 7C 27 48 1D 18 00 00 Possible partition(Windows NT/W2K FS), size(0mb), offset(673022mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 0mb #s(1) s(1378350037-1378350037) chs: (1023/254/63)-(1023/254/63)d (85798/82/2)-(85798/82/2)r hex: 00 FE FF FF 07 FE FF FF D5 F3 27 52 01 00 00 00 Possible partition(Windows NT/W2K FS), size(0mb), offset(743710mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 0mb #s(1) s(1523120037-1523120037) chs: (1023/254/63)-(1023/254/63)d (94809/213/34)-(94809/213/34)r hex: 00 FE FF FF 07 FE FF FF A5 F7 C8 5A 01 00 00 00 Possible partition(Windows NT/W2K FS), size(0mb), offset(743752mb) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 0mb #s(1) s(1523204101-1523204101) chs: (1023/254/63)-(1023/254/63)d (94815/17/56)-(94815/17/56)r hex: 00 FE FF FF 07 FE FF FF 05 40 CA 5A 01 00 00 00 End scan. Checking partitions... * Warning: Discarded 9 overlapping partition guesses. Partition(OS/2 HPFS, NTFS, QNX or Advanced UNIX): primary Ok. Guessed primary partition table: Primary partition(1) type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX) size: 953867mb #s(1953520001) s(63-1953520063) chs: (0/1/1)-(1023/254/63)d (0/1/1)-(121600/254/62)r hex: 00 01 01 00 07 FE FF FF 3F 00 00 00 81 59 70 74 Primary partition(2) type: 000(0x00)(unused) size: 0mb #s(0) s(0-0) chs: (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Primary partition(3) type: 000(0x00)(unused) size: 0mb #s(0) s(0-0) chs: (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Primary partition(4) type: 000(0x00)(unused) size: 0mb #s(0) s(0-0) chs: (0/0/0)-(0/0/0)d (0/0/0)-(0/0/0)r hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 And these are the first 512 bytes: Code: Select allroot@HP:/tmp/mount0# dd if=/dev/sdb bs=512 count=1 | hexdump -C 00000000 33 c0 8e d0 bc 00 7c 8e c0 8e d8 be 00 7c bf 00 |3.....|......|..| 00000010 06 b9 00 02 fc f3 a4 50 68 1c 06 cb fb b9 04 00 |.......Ph.......| 00000020 bd be 07 80 7e 00 00 7c 0b 0f 85 0e 01 83 c5 10 |....~..|........| 00000030 e2 f1 cd 18 88 56 00 55 c6 46 11 05 c6 46 10 00 |.....V.U.F...F..| 00000040 b4 41 bb aa 55 cd 13 5d 72 0f 81 fb 55 aa 75 09 |.A..U..]r...U.u.| 00000050 f7 c1 01 00 74 03 fe 46 10 66 60 80 7e 10 00 74 |....t..F.f`.~..t| 00000060 26 66 68 00 00 00 00 66 ff 76 08 68 00 00 68 00 |&fh....f.v.h..h.| 00000070 7c 68 01 00 68 10 00 b4 42 8a 56 00 8b f4 cd 13 ||h..h...B.V.....| 00000080 9f 83 c4 10 9e eb 14 b8 01 02 bb 00 7c 8a 56 00 |............|.V.| 00000090 8a 76 01 8a 4e 02 8a 6e 03 cd 13 66 61 73 1c fe |.v..N..n...fas..| 000000a0 4e 11 75 0c 80 7e 00 80 0f 84 8a 00 b2 80 eb 84 |N.u..~..........| 000000b0 55 32 e4 8a 56 00 cd 13 5d eb 9e 81 3e fe 7d 55 |U2..V...]...>.}U| 000000c0 aa 75 6e ff 76 00 e8 8d 00 75 17 fa b0 d1 e6 64 |.un.v....u.....d| 000000d0 e8 83 00 b0 df e6 60 e8 7c 00 b0 ff e6 64 e8 75 |......`.|....d.u| 000000e0 00 fb b8 00 bb cd 1a 66 23 c0 75 3b 66 81 fb 54 |.......f#.u;f..T| 000000f0 43 50 41 75 32 81 f9 02 01 72 2c 66 68 07 bb 00 |CPAu2....r,fh...| 00000100 00 66 68 00 02 00 00 66 68 08 00 00 00 66 53 66 |.fh....fh....fSf| 00000110 53 66 55 66 68 00 00 00 00 66 68 00 7c 00 00 66 |SfUfh....fh.|..f| 00000120 61 68 00 00 07 cd 1a 5a 32 f6 ea 00 7c 00 00 cd |ah.....Z2...|...| 00000130 18 a0 b7 07 eb 08 a0 b6 07 eb 03 a0 b5 07 32 e4 |..............2.| 00000140 05 00 07 8b f0 ac 3c 00 74 09 bb 07 00 b4 0e cd |......<.t.......| 00000150 10 eb f2 f4 eb fd 2b c9 e4 64 eb 00 24 02 e0 f8 |......+..d..$...| 00000160 24 02 c3 49 6e 76 61 6c 69 64 20 70 61 72 74 69 |$..Invalid parti| 00000170 74 69 6f 6e 20 74 61 62 6c 65 00 45 72 72 6f 72 |tion table.Error| 00000180 20 6c 6f 61 64 69 6e 67 20 6f 70 65 72 61 74 69 | loading operati| 00000190 6e 67 20 73 79 73 74 65 6d 00 4d 69 73 73 69 6e |ng system.Missin| 000001a0 67 20 6f 70 65 72 61 74 69 6e 67 20 73 79 73 74 |g operating syst| 000001b0 65 6d 00 00 00 63 7b 9a 18 2c e8 fc 00 00 00 20 |em...c{..,..... | 000001c0 21 00 85 fe ff ff 00 08 00 00 af 65 70 74 00 00 |!..........ept..| 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.| 00000200 I really have no idea what to do, I can't understand if all my datas are gone forever or just some partition table trick to do. Please, there's my job in that hard disk. Thank you
None1975 wrote:bw123 wrote:Never used this (85) for partition code, what's it do? This code means that it is Linux extended. IMO, "Linux extended" is not so explicit. Usually GNU/Linux does not care much about partition codes, but 85h appears to be special. The Linux kernel interprets this code in the same way as 05, i.e. as an extended partition. The first sector of an extended partition (EBR) is supposed to contain an extended partition table describing the first logical partition and the next nested extended partition (not shown by most partition tools). The way the Linux kernel handles an extended partition is a bit special : it creates a block device /dev/sdb1 as for any partition, but its size is limited to 1 KiB regardless of the actual partition size, as can be seen in the output of lsblk (or in /proc/partitions). This prevents to read it beyond the first EBR, leading to "short read" errors as in the original post. Thus I second the idea to change the type back to any code that is not interpreted in a special way, such as 83h. Segfault wrote:The title was partition recovery, now you are investigating what happened instead of fixing it. Understanding what happened is often a good way to know how to fix things, or at least know if things can be fixed.
Debian 9.3 Xfce. Acer Aspire V3-372 series. 40-libinput.conf in folder /X11/xorg.conf.d with this content: Code: Select allSection "InputClass" Identifier "libinput touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Driver "libinput" Option "Tapping" "on" EndSection All work perfect after reboot, until I configure, from xfce, the left handed option for the touchpad. Now the touchpad tap act as a right click. How to solve? Thanks.
Configure it in your libinput.conf https://www.mankier.com/4/libinput
So far, I have used a separate computer for banking services and other websites where I need my personal certificate. My old computer broke up. Is there in Debian program that allows you to use a personal certificate from USB, some sort of Client to use with USB.
This is a more hardware specific problem, it is possible that your key do have a linux driver, but you must ask your bank if they support the OS also, so they don't think it is an attack. Take a look into the documentation over it, in my country this is a place to start: http://loja.certificadodigital.com.br/S ... s/449b.pdf
I have used GNU/Linux exclusively for about 5 years, mostly Debian and Debian-based distros. I know stable is the recommended distro, but I would like to use sid after previously using only stable or testing. I so far have not been able to successfully install it. My method has been to first install stable from the Xcfe CD (twice) or from a netinst CD (once - takes a long time on my slow internet connection), then change all instances of stable in the sources list to sid, and finally update all. This has failed three times. My sources in stable have been: deb http://deb.debian.org/debian stretch main deb-src http://deb.debian.org/debian stretch main deb http://deb.debian.org/debian stretch-updates main deb-src http://deb.debian.org/debian stretch-updates main deb http://security.debian.org/ stretch/updates main deb-src http://security.debian.org/ stretch/updates main Is the problem that I don't need all these lines, or must I first go to testing, then to sid, perhaps? Should I add applications I plan to use (libreoffice, etc.) before changing the sources list? I want to experiment with sid because I want to see how unstable it really is (friends are telling me it is pretty stable overall), I want to use firefox 57, and I believe sid may actually get faster security updates than testing. Any input would be appreciated. Thanks.
I want to see how unstable it really is (friends are telling me it is pretty stable overall) Ask them how they installed it? -or- check the wiki https://wiki.debian.org/DebianUnstable
I've been looking for a way of doing this and can't find anything. There used to be a utility called Skype Call Recorder, but since Skype came out of Linux beta it no longer works [that means all those articles telling you to use it up until mid 2017 can be ignored]. I'm posting this on the offchance that someone knows something about how to do this - to record voice calls in Skype of Facebook - but apparently it can't be done in Linux at all. Maybe in a VM but I don't own a copy of Windows.
Lysander wrote:I'm posting this on the offchance that someone knows something about how to do this - to record voice calls in Skype of Facebook I would give Open Broadcaster Software a shot. https://packages.debian.org/stretch/obs-studio
I've been running Testing (amd64) for several months on an Intel NUC5i5ryh, that I use as a HTPC, and am really pleased with everything. However, I keep reading where Testing might break in the very near future as developers try to get new code in to the system before the freeze. Sure don't want to be without the HTPC but I also don't like not keeping the system up to date. I rarely use the NUC for anything besides watching movies via Kodi so there should be minimal security risks (not zero however). So my question is: Should I stop doing upgrades until such time as it is released as Stretch?
@ticojohn Probably can run apt-get dist-upgrade Things a changing from apt-get to apt. Look closer at dibl's post...
Hello I want set cron to execute program on first wednesday on month I try: Code: Select allcat /etc/crontab 30 13 1-7 * 3 root script.sh but http://cron.schlitt.info say: 2017-12-01 13:30:00 2017-12-02 13:30:00 2017-12-03 13:30:00 2017-12-04 13:30:00 2017-12-05 13:30:00 2017-12-06 13:30:00 2017-12-07 13:30:00 2017-12-13 13:30:00 2017-12-20 13:30:00 2017-12-27 13:30:00 Someone have a idea
Use a timer. for example Code: Select all OnCalendar=Wed *-*-01..07 12:00:00 Would run every first - seventh day of the month at noon, but only if it is a Wednesday see more in the manual: https://manpages.debian.org/stretch/sys ... .5.en.html You can add how ever many other conditions you want. Also, if the computer is off, it will run first when you turn it back on (if you want, that is. This cannot be done at all with cron). Or have it run on Wednesdays after 13:30 whenever the computer becomes idle.
Since my wetware is getting sluggish to remember past CLI commands accurately, and Linux keeps only the last couple of thousand commands without removing redundances, I was thinking about the possibility of a package existing that efficiently keeps a lean record of such commands. So, in effect such a package should look into .bash_history and similarly used files to save a list of all used commands without unnecessary repetitions.
edbarx wrote:Linux keeps only the last couple of thousand commands without removing redundances bash history settings are adjustable. my history is HUGE, and it makes me happy relevant settings in .bashrc: Code: Select allHISTSIZE=50000 HISTFILESIZE=2000000 # unix.stackexchange.com/a/18443 # history: erase duplicates... HISTCONTROL=ignoredups:erasedups shopt -s histappend
When I click on the speaker icon (under Pronunciation) on this page, no sound is played: http://humanum.arts.cuhk.edu.hk/Lexis/l ... p?q=%A4%EB I have VLC Web Plugin and it is set to Always Activated on my Jessie Stable. Firefox is version 48 from Jessie backports. However, on my Debian Testing partition, the sound does play without issue. Thanks in advance for any help.
doesn't work on my ff either. doesn't work on qupzilla either. works on dwb. works on brave (chromium-based).
i have a Quest ? don't wana use ubuntu because i like debian realy now after 2 years working on i like this linux. only thing i have problem with is a'm helping on some BIONC project's a'm not a wiz kid but i wana make use of my RX480 GPU in debian, gaming works good (amd-firmware) , but boinc need that AMD-GPU pack of the site off AMD. any how i get this thing running, or will be using CPU power here in debian, maybe go for a treaddripper setup ? Thanks
What, you want spoon feeding? A step-by-step tutorial? Sheesh. If you have opencl working with your GPU driver, it should be as simple as installing the boinc-client-opencl metapackage. What have you tried to get this working, what drivers do you have installed, and what error messages do you get from BOINC?
I'm running into an error from python-protobuf when installing yowsup-cli Code: Select all$ sudo apt-get install yowsup-cli Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: python-axolotl python-axolotl-curve25519 python-yowsup The following NEW packages will be installed: python-axolotl python-axolotl-curve25519 python-yowsup yowsup-cli 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. Need to get 0 B/208 kB of archives. After this operation, 1,268 kB of additional disk space will be used. Do you want to continue? [Y/n] Selecting previously unselected package python-axolotl-curve25519. (Reading database ... 328272 files and directories currently installed.) Preparing to unpack .../python-axolotl-curve25519_0.1-3_amd64.deb ... Unpacking python-axolotl-curve25519 (0.1-3) ... Selecting previously unselected package python-axolotl. Preparing to unpack .../python-axolotl_0.1.35-3_all.deb ... Unpacking python-axolotl (0.1.35-3) ... Selecting previously unselected package python-yowsup. Preparing to unpack .../python-yowsup_2.5.0~git20160904.d69c1ff-1_all.deb ... Unpacking python-yowsup (2.5.0~git20160904.d69c1ff-1) ... Selecting previously unselected package yowsup-cli. Preparing to unpack .../yowsup-cli_2.5.0~git20160904.d69c1ff-1_all.deb ... Unpacking yowsup-cli (2.5.0~git20160904.d69c1ff-1) ... Setting up python-axolotl-curve25519 (0.1-3) ... Setting up python-protobuf (3.0.0-9) ... Traceback (most recent call last): File "/usr/bin/pycompile", line 35, in <module> from debpython.version import SUPPORTED, debsorted, vrepr, \ File "/usr/share/python/debpython/version.py", line 24, in <module> from ConfigParser import SafeConfigParser ImportError: No module named 'ConfigParser' dpkg: error processing package python-protobuf (--configure): subprocess installed post-installation script returned error exit status 1 Processing triggers for man-db (2.7.6.1-2) ... dpkg: dependency problems prevent configuration of python-axolotl: python-axolotl depends on python-protobuf (>= 3.0.0); however: Package python-protobuf is not configured yet. dpkg: error processing package python-axolotl (--configure): dependency problems - leaving unconfigured dpkg: dependency problems prevent configuration of yowsup-cli: yowsup-cli depends on python-axolotl (>= 0.1.35); however: Package python-axolotl is not configured yet. dpkg: error processing package yowsup-cli (--configure): dependency problems - leaving unconfigured dpkg: dependency problems prevent configuration of python-yowsup: python-yowsup depends on python-axolotl; however: Package python-axolotl is not configured yet. dpkg: error processing package python-yowsup (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: python-protobuf python-axolotl yowsup-cli python-yowsup E: Sub-process /usr/bin/dpkg returned an error code (1) I can apt-get purge yowsup-cli, but still left with the errors from python-protobuf and can't figure out how to resolve the issue. Any ideas? Thanks.
ERROR: type should be string, got "https://duckduckgo.com/?q=ImportError%3 ... fpas&ia=qa Looks like a python 2.7 vs python 3 issue. What is your setup?"
Hi, I'm still using old HP DL380 G5 for my lab. Debian 9 only boots with acpi=off since acpi seems to be broken somehow (latest available BIOS installed). Everything works except with acpi=off I'm not longer able to power off the device. Server shuts down, last message "System halted". Is there any way to power off the server even with acpi=off. Or is there probably a better solution to acpi=off? I tried these: Code: Select allnolapic noapic acpi_osi=“Linux” acpi_osi=“Windows” acpi=ht pci=noacpi acpi=noirq pnpacpi=off but only acpi=off works. Any ideas?
Try getting the kernel to report that it is a Windows version while using ACPI, sometimes this helps. Or look for fixed / fix your DSDT. See here: https://wiki.archlinux.org/index.php/DSDT I would personally try the kernel reporting first. That or start digging into hardware, it's odd that an HP actual server machine is having major issues, so I would either suspect misbehaving hardware or a kernel regression ( if it is a regression a bug should be filed ).
I recently installed Stretch on a partition of my desktop and it shows it as Stretch 9.2. However I did an upgrade and a dist-upgrade on my NUC and it still shows it as 9.1. Am I missing something?
ticojohn wrote:I did an upgrade and a dist-upgrade on my NUC and it still shows it as 9.1. Am I missing something? Code: Select all# apt update If you already did that then show us Code: Select allapt-cache policy lsb_release -a cat /etc/debian_version And also the full output of `apt update && apt upgrade`, thank you please
Dear debian users, df -h says that my root partition is full, while du -sh fails to show that Code: Select allroot@PIGE:/media# df -h Filesystem Size Used Avail Use% Mounted on udev 1.9G 0 1.9G 0% /dev tmpfs 383M 42M 342M 11% /run /dev/sda5 37G 35G 0 100% / tmpfs 1.9G 84K 1.9G 1% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup /dev/sda7 176G 125G 43G 75% /var /dev/mapper/isw_cjeajaiadh_DATA 3.6T 2.8T 579G 84% /media/pige/Data tmpfs 383M 8.0K 383M 1% /run/user/1000 root@PIGE:/media# du -h --max-depth=1 --exclude='/proc/*' / | sort -h 0 /proc 0 /sys 4.0K /cdrom 4.0K /lib64 4.0K /opt 4.0K /snap 4.0K /srv 16K /lost+found 48K /mnt 52K /tmp 84K /dev 664K /root 9.6M /etc 13M /bin 14M /sbin 42M /run 107M /boot 587M /lib 588M /home 2.8G /usr 125G /var 2.8T /media 3.0T / root@PIGE:/media# - /media/pige/Data and /var are separate partitions, - /media itself is empty (contains only pige/Data which is on another parition), What remains on / is : Code: Select all107M /boot 587M /lib 588M /home 2.8G /usr We're far away from the 35Go advertised by df -h. Any ideas on how to correctly troubleshoot this ?
Try Code: Select allapt-get clean The usual problem is that Apt has filled up /root.
Code: Select all#uname -a Linux debian 4.9.0-4-amd64 #1 SMP Debian 4.9.51-1 (2017-09-28) x86_64 GNU/Linux #/etc/init.d/ssh status ● ssh.service - OpenBSD Secure Shell server Loaded: loaded (/lib/systemd/system/ssh.service; enabled; vendor preset: enabled) Active: active (running) since Wed 2017-11-29 19:25:17 EST; 2h 9min ago Main PID: 1531 (sshd) CGroup: /system.slice/ssh.service └─1531 /usr/sbin/sshd -D Nov 29 19:27:04 debian sshd[1560]: Accepted password for eaglez from 192.168.1.2 port 1066 ssh2 Nov 29 19:27:04 debian sshd[1560]: pam_unix(sshd:session): session opened for user eaglez by (uid=0) Nov 29 19:30:52 debian sshd[1597]: Accepted password for eaglez from 192.168.1.2 port 1148 ssh2 Nov 29 19:30:52 debian sshd[1597]: pam_unix(sshd:session): session opened for user eaglez by (uid=0) Nov 29 21:21:02 debian sshd[1900]: Connection closed by ::1 port 37648 [preauth] Nov 29 21:21:35 debian sshd[1904]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=::1 user=eaglez Nov 29 21:21:37 debian sshd[1904]: Failed password for eaglez from ::1 port 37650 ssh2 Nov 29 21:21:38 debian sshd[1904]: Connection closed by ::1 port 37650 [preauth] Nov 29 21:22:01 debian sshd[1912]: Accepted password for eaglez from ::1 port 37652 ssh2 Nov 29 21:22:01 debian sshd[1912]: pam_unix(sshd:session): session opened for user eaglez by (uid=0) The debian is running as a guest of virtualbox. So far so good, but SmarTTY running on Wndows cannot scp any files to it without any messages. BTW, there is a scp menu in SmarTTY. Regards!
The debian is running as a guest of virtualbox. And the host OS is ? Without a example of exactly how you are typing the 'scp' command it is hard to guess why it is not working, ; Example : (this is the command I used, and it worked, to transfer a file named "scp-output.txt " from Debian on a VM , to the host. and my home dir /home/garry ) Code: Select allgarry@debian:~$ scp scp-output.txt garry@192.168.42.207:/home/garry/ garry@192.168.42.207's password: scp-output.txt 100% 180 0.2KB/s 00:00 garry@debian:~$ There are more examples on using the command here: http://www.hypexr.org/linux_scp_help.php Also : Code: Select all man scp SYNOPSIS scp [-346BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file] [-l limit] [-o ssh_option] [-P port] [-S program] [[user@]host1:]file1 ... [[user@]host2:]file2 Not sure about "smartTTY", never heard of it, I just type the command in at the prompt, as needed. If I am not sure, a quick search to find a example of the correct syntax or SYNOPSIS ============= another example=== This uses 'scp' to copy the images from the PC to the server: Code: Select all$ scp *.JPG myusername@serverIP:/path/to/destination/directory/images/ myusername@serverIP's password: SAM_1945.JPG 100% 317KB 157.4KB/s 00:02 SAM_1946.JPG 100% 316KB 314.3KB/s 00:01 SAM_1947.JPG 100% 319KB 327.7KB/s 00:00 SAM_1948.JPG 100% 318KB 352.4KB/s 00:00 SAM_1949.JPG 100% 316KB 331.4KB/s 00:00 a-bryan.JPG 100% 316KB 333.8KB/s 00:00 a-george.JPG 100% 317KB 354.5KB/s 00:00 a-panchito.JPG 100% 311KB 309.1KB/s 00:01 b-bryan.JPG 100% 313KB 311.0KB/s 00:01 bryan-11-2017.JPG 100% 320KB 159.1KB/s 00:02 bryan-a-11-2017.JPG 100% 313KB 312.2KB/s 00:01 c-bryan.JPG 100% 316KB 315.2KB/s 00:01 mickyandmini-innest.JPG 100% 319KB 318.4KB/s 00:01 mini-in-nest.JPG 100% 316KB 314.1KB/s 00:01 $ ==== edited ==== I did a search to see what smarTTY is,Key words: ""what is smarTTY"" Sorry, I can not help on this, but that explains why I had never heard of it. Download. You can download the latest version below. Download. System Requirements. Microsoft Windows 8/7/2008/Vista/2003/XP. Installation Instructions.
Hi, I'm at a loss for what is happening with my computer. I run Debian Jessie in text mode and handles all my files and downloads. It is an AMD A4-6300 3.7GHz with 8Gig RAM an SSD containing the OS and programs. There are also 5.5 TB in a Raid 10 Array that is 4.6 TB full. It should have plenty of horsepower but something is slowing it down. Over the past month or 2 every 10 minutes on the dot. On the 3's... the hard drive cycles and accesses for a good 5-10 seconds which is an eternity when it hold all the files I stream. It locks everything up until it does whatever it is doing. Even after I restart it is still occurring on the 3's so it isn't 10 minutes after it starts up. This computer has been running since Jessie has been stable and I haven't installed any new programs since it has started acting up. Just standard updates. I believe I have shutdown every server that is running on this computer and it still continues. I have checked cron and nothing is setup. I have checked 'ps aux' and 'top' when it lags but it doesn't appear to be a program or a CPU overuse issue, which leads me to believe it is a hard-drive issue. I have shutdown mdadm monitor, thinking that might have been the issue but it still persists. My next thought was there was some sort of power management powering it down and then immediately powering it up but I don't believe anything comes default with debian and I install hdparm to shutdown any power management on the drives but that hasn't made a difference either. Although I'm not sure if I can shut down power management on a RAID drive. Any suggestions would be appreciated or point me at the logs I can look at to see what is running. The only thing I haven't shutdown is mysql database but I looked at the databases and they are smaller than 100MB. Cheers
Anything in dmesg when it happens? Maybe install iotop and see what process is involved.
Hi, I have a problem with Windows10-1709 (a.k.a. "Fall Creators Update") installation on a dual boot machine with Debian jessie. My dual boot configuration was set up in 2014 with Windows8. Then I upgraded to Win8.1, Win10, [...] and recently to Win10-1703 (Creators Update). Everything was working fine with Windows (I had to repair grub a few times, but this is just a "normal operation" for a linux user that uses dual boot ). But when I upgraded to Win10-1709 (Fall Creators Update) few days ago, the upgrade process crashed at the very end. I have checked my hard disk with smartctl (long test), everything is fine. Then I decided to re-install windows from a ISO image (Win10_1709_FrenchCanadian_x64.iso), freshly downloaded from the Microsoft website. The installation from the CD image was going well, until the very end (just before the first reboot) where I got a blue screen with "KMODE EXCEPTION NOT HANDLED". One should note that I have not modified my EFI partition before starting to install windows. So I decided to wipe all "windows remains" from my hard disk and start with a new EFI partition: - deleted "microsoft reserved partition" - deleted old system partition (over which I tried to re-installed windows with the ISO image) - deleted Windows Restore partition - created a blank ntfs partition with the resulting free space - reformatted my /dev/sda1 EFI partition (fat32) - reinstalled grub with SystemRescueCD (with chroot, grub-install and update-grub, secure boot is disabled in the EFI settings) - updated /etc/fstab for the boot partition (since I have a new UUID) and my Debian installation still boots and works fine. My EFI partition now only contains one file: /boot/efi/EFI/debian/grubx64.efi At that point, it's like if I had a linux-only installation and I wanted to add Windows. I should be able to follow this simple procedure: https://unix.stackexchange.com/question ... -installed However, when I started to install windows from the same ISO image, I got the same blue screen as before, but this time at the very beginning of the installation. It's like if Windows10-1709 is not able to handle a pre-existing EFI partiton ! For my next test, I will try to re-fromat my EFI partition in fat32 without reinstalling grub, but I would like to know your comments/advices about this problem. I know this is a problem with Windows, not debian, but it could affect other dual-boot users. Thank you in advance
Just a couple of notes : - Windows requires a "Microsoft Reserved Partition" when installed on a GPT disk (in EFI mode). So creating an NTFS partition using all the disk space may not please the Windows installer. My advice is to leave the disk space unallocated and allocate the space the during the Windows installation. - There can be multiple EFI system partitions on a disk. So you could create one for Debian and leave the Windows installer create another one for Windows. If you install Windows after Debian, change the partition type so that Windows does not see it as an EFI system partition and does not try to use it.
Hi everyone! Pretty soon I am going to format my laptop (Debian 8 Gnome) and install Debian 9 Gnome with full disk encryption thanks to the netinstaller. I would like to create a separate partition for home, in case I need to reinstall Debian (as if Debian ever needed to be reinstalled) but is it (easily) possible with full disk encryption and using Debian netinstaller? Also, is it possible to resize those partitions? I know that gparted does not work with LUKS and gnome-disks utility cannot resize partitions. I know almost nothing about manipulating partitions with command lines. Is it possible to use system-config-lvm for that purpose? I have never used logical volumes before. If all of this is impossible, I will simply use a single partition. Thank you for your help!
f.r3d wrote:So apparently it is still impossible for the Debian netinstaller (and any other I guess) to reuse an encrypted logical volume to reinstall the system. Yes, it is a flaw of the Debian installer. But it is not totally impossible. There are workarounds using the installer embedded shell. Open the encrypted device with cryptsetup luksOpen. Activate logical volumes with vgchange -ay. Create /target/etc/crypttab. Go back to the installer interface to assign mountpoints to the volumes, proceed with the installation Before rebooting, install cryptsetup with apt-install.
Before debian 9 was released I had read that there is a new firewall command instead of iptable but I didn't remember this command and I didn't found it anywhere in the documentation.does someone knows something about it? or the name of this command to do a "man"?
IPtables works just fine. I don't know one way or the other about a replacement. An alternative is the firewall in your router/modem; set it as tight as you can live with.
Hi I recently installed newest Debian on one machine with all default settings, and i dont know why but in /home/ from what i remember there is only 2 folder like "Download" and "Desktop", im missing folders like "Pictures" or "Videos", any idea why?
Simple answer: no. Have you changed file managers? They aren't all the same.
Grub2 is used to manage a multi-boot system, and Grub2 is installed on debian stable. This is a UEFI system; the EFI is installed at /boot/efi/EFI/debian/grubx64.efi. One of the installs on the same machine is Arch. Executing update-grub runs the os-prober script (which searches for other operating systems), and it correctly finds the Arch installation, then adds it to the grub menu. But, because Arch requires an intel-ucode.img file to be loaded in addition to the initramfs-linux.img file, update-grub does not add the intel-ucode.img to the initrd line of grub.cfg. Instead the initrd line looks like this: Code: Select allinitrd /initramfs-linux.img I can manually modify grub.cfg so the line correctly reads: Code: Select allinitrd /intel-ucode.img /initramfs-linux.img Then, Arch loads the microcode correctly, but I would rather avoid having to do manual updates each time I run update-grub. Can the grub configuration be changed so that update-grub will add the intel-ucode.img file to the initrd line?
Use /etc/grub.d/40_custom to add a menuentry for Arch with the correct details.
Hi, I'm having about half minute of delay between grub screen (after executing selection) and the time "journalctl -b" starts logging. How can i find the root cause?
it might be that the things that run before systemd starts take half a minute. kernel log? isn't that 'dmesg'? bootlog?
I can't update my packages, because the public key is not available. The problem must have arisen somewhere between last week and today, because I could do this a week ago. The only things that might have caused this were adding 2 PPAs that i've since then removed(by unchecking and deleting the entries with software-properties-gtk). I tried running Code: Select allsudo apt update And it gives the following output: Code: Select allIgn:1 http://deb.debian.org/debian stretch InRelease Ign:2 http://deb.debian.org/debian stretch/updates InRelease Get:3 http://deb.debian.org/debian stretch-updates InRelease [91.0 kB] Err:3 http://deb.debian.org/debian stretch-updates InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553 NO_PUBKEY 7638D0442B90D010 Get:5 http://deb.debian.org/debian stretch Release [118 kB] Get:4 http://security.debian.org stretch/updates InRelease [62.9 kB] Err:6 http://deb.debian.org/debian stretch/updates Release 404 Not Found [IP: 151.101.4.204 80] Err:4 http://security.debian.org stretch/updates InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY 8B48AD6246925553 Get:7 http://deb.debian.org/debian stretch Release.gpg [2479 B] Ign:7 http://deb.debian.org/debian stretch Release.gpg Reading package lists... Done W: GPG error: http://deb.debian.org/debian stretch-updates InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553 NO_PUBKEY 7638D0442B90D010 E: The repository 'http://deb.debian.org/debian stretch-updates InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. E: The repository 'http://deb.debian.org/debian stretch/updates Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. W: GPG error: http://security.debian.org stretch/updates InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY 8B48AD6246925553 E: The repository 'http://security.debian.org stretch/updates InRelease' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. W: GPG error: http://deb.debian.org/debian stretch Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 8B48AD6246925553 NO_PUBKEY 7638D0442B90D010 NO_PUBKEY EF0F382A1A7B6500 E: The repository 'http://deb.debian.org/debian stretch Release' is not signed. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. But running Code: Select allsudo apt keylist shows that i do have the keys Code: Select all[sudo] password for lv: /etc/apt/trusted.gpg.d/debian-archive-jessie-automatic.gpg ---------------------------------------------------------- pub rsa4096 2014-11-21 [SC] [expires: 2022-11-19] 126C 0D24 BD8A 2942 CC7D F8AC 7638 D044 2B90 D010 uid [ unknown] Debian Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org> /etc/apt/trusted.gpg.d/debian-archive-jessie-security-automatic.gpg ------------------------------------------------------------------- pub rsa4096 2014-11-21 [SC] [expires: 2022-11-19] D211 6914 1CEC D440 F2EB 8DDA 9D6D 8F6B C857 C906 uid [ unknown] Debian Security Archive Automatic Signing Key (8/jessie) <ftpmaster@debian.org> /etc/apt/trusted.gpg.d/debian-archive-jessie-stable.gpg ------------------------------------------------------- pub rsa4096 2013-08-17 [SC] [expires: 2021-08-15] 75DD C3C4 A499 F1A1 8CB5 F3C8 CBF8 D6FD 518E 17E1 uid [ unknown] Jessie Stable Release Key <debian-release@lists.debian.org> /etc/apt/trusted.gpg.d/debian-archive-stretch-automatic.gpg ----------------------------------------------------------- pub rsa4096 2017-05-22 [SC] [expires: 2025-05-20] E1CF 20DD FFE4 B89E 8026 58F1 E0B1 1894 F66A EC98 uid [ unknown] Debian Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org> sub rsa4096 2017-05-22 [S] [expires: 2025-05-20] /etc/apt/trusted.gpg.d/debian-archive-stretch-security-automatic.gpg -------------------------------------------------------------------- pub rsa4096 2017-05-22 [SC] [expires: 2025-05-20] 6ED6 F5CB 5FA6 FB2F 460A E88E EDA0 D238 8AE2 2BA9 uid [ unknown] Debian Security Archive Automatic Signing Key (9/stretch) <ftpmaster@debian.org> sub rsa4096 2017-05-22 [S] [expires: 2025-05-20] /etc/apt/trusted.gpg.d/debian-archive-stretch-stable.gpg -------------------------------------------------------- pub rsa4096 2017-05-20 [SC] [expires: 2025-05-18] 067E 3C45 6BAE 240A CEE8 8F6F EF0F 382A 1A7B 6500 uid [ unknown] Debian Stable Release Key (9/stretch) <debian-release@lists.debian.org> /etc/apt/trusted.gpg.d/debian-archive-wheezy-automatic.gpg ---------------------------------------------------------- pub rsa4096 2012-04-27 [SC] [expires: 2020-04-25] A1BD 8E9D 78F7 FE5C 3E65 D8AF 8B48 AD62 4692 5553 uid [ unknown] Debian Archive Automatic Signing Key (7.0/wheezy) <ftpmaster@debian.org> /etc/apt/trusted.gpg.d/debian-archive-wheezy-stable.gpg ------------------------------------------------------- pub rsa4096 2012-05-08 [SC] [expires: 2019-05-07] ED6D 6527 1AAC F0FF 15D1 2303 6FB2 A1C2 65FF B764 uid [ unknown] Wheezy Stable Release Key <debian-release@lists.debian.org> This is the output of Code: Select allcat /etc/apt/sources.list && ls /etc/apt/sources.list.d/ for anyone interested Code: Select all deb http://deb.debian.org/debian/ stretch main contrib non-free deb-src http://deb.debian.org/debian/ stretch main contrib non-free deb http://deb.debian.org/debian/ stretch/updates main contrib non-free deb-src http://deb.debian.org/debian/ stretch/updates main contrib non-free deb http://security.debian.org/ stretch/updates contrib main non-free deb http://deb.debian.org/debian/ stretch-updates contrib main non-free alessandro-strada-ubuntu-ppa-artful.list skype-stable.list I have tried the following to resolve this: Installing the debian-keyring and debian-archive-keyring Code: Select allsudo apt-get install debian-keyring debian-archive-keyring The installation of this went without errors, i rebooted, but tryiny to update still had the same problem. installing the keys from https://ftp-master.debian.org/keys.html with Code: Select allwget -O - https://link/to/key.asc | apt-key add - The following variations Code: Select allwget -O - https://ftp-master.debian.org/keys/archive-key-8.asc | apt-key add - sudo wget -O - https://ftp-master.debian.org/keys/archive-key-8.asc | apt-key add - sudo -i wget -O - https://ftp-master.debian.org/keys/archive-key-8.asc | apt-key add - all gave this output Code: Select all--2017-10-21 09:08:09-- https://ftp-master.debian.org/keys/archive-key-8.asc Resolving ftp-master.debian.org (ftp-master.debian.org)... E: This command can only be used by root. 138.16.160.17 Connecting to ftp-master.debian.org (ftp-master.debian.org)|138.16.160.17|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 7012 (6.8K) [text/plain] Saving to: 'STDOUT' - 0%[ ] 0 --.-KB/s in 0.03s Cannot write to '-' (Broken pipe). and Code: Select allsudo su wget -O - https://ftp-master.debian.org/keys/archive-key-8.asc | apt-key add - gave this Code: Select all--2017-10-21 09:12:10-- https://ftp-master.debian.org/keys/archive-key-8.asc Resolving ftp-master.debian.org (ftp-master.debian.org)... 138.16.160.17 Connecting to ftp-master.debian.org (ftp-master.debian.org)|138.16.160.17|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 7012 (6.8K) [text/plain] Saving to: 'STDOUT' - 100%[=====================================================================================================>] 6.85K --.-KB/s in 0.03s 2017-10-21 09:12:11 (269 KB/s) - written to stdout [7012/7012] gpg: WARNING: nothing exported gpg: no valid OpenPGP data found. gpg: Total number processed: 0 What can I do to resolve this?
Can we see the output of: Code: Select allapt-cache policy debian-keyring Have you tried adding the key directly, without the pipe (download the .asc file and place in the working directory beforehand): Code: Select all# apt-key add archive-key-8.asc
This is an issue I've been dealing with for 3 months now and I have found no solution, I had my Debian stretch install for 4 months but I don't know if it was after an update or so that Debian is doing very weird things, first of all wine32 & playonlinux don't work at all like steam, (idk what the i386 packaging team is doing that is messing up everything). But now the problem seems a little odd, at first I thought I broke the system but now I think it is a direct problem from Debian, I liked some lutris games but I didn't want to add the repo so I downloaded the source packages for the games, I tried redeclipse, simutrains and other games but when I tried to execute them I always got the "no such file or directory" error, I downloaded the game am2r and the same problem exists, to prove my point i've taken some screenshots: https://pasteboard.co/GPZ6395.png and trying to execute it manually (directly from dir) https://pasteboard.co/GPZ6pZr.png If a few more details are needed, yes, the files DO have the correct permissions, in one occasion I did the chmod 777 & the chown things, but they did not work, I'm using Debian 9.2 but right now I havent found any log errors or so, Is my 5th install this week broken? or is Debian having some "internal" problems? Edit: Solution: Run the Code: Select allfile <filename> command where you have your program & check for the architecture, in this case the output was: Code: Select allam2r: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.24, BuildID[sha1]=18ff50b7dc4a1abd6653dda0dd5f720e91ad7593, stripped If the executable does not come with a dependencies text file you can run the Code: Select allobjdump -x <file_name> and search for the "NEEDED" section to see on what libraries does your program depend
This isn't a Debian problem, it's a user problem. If you try and launch a program from the command line, it will only work if the executable is in your PATH. Otherwise you have to type the complete path to the executable. If you want to launch it from the directory where the executable is, you have to put './' in front of the executable name, e.g.: Code: Select all./myprogram If you build the program from source, you need to make sure that the executable is marked as executable. Using chmod 777.. doesn't help. What you need to do is Code: Select allchmod +x <path to executable>
Hi!, Not sure if general questions is the correct place, so I apologise in advance if not the case. I have a headless server running Jessie and OpenMediaVault 3. Root filesystem is btrfs, and it has grown until it fills a whole 240 GB SSD. I'm absolutely uncapable to understand where the free space has gone. I have no snapshots, and although Docker has lots of subvolumes, all but a few space is eaten by the root subvolume. But the weird thing is btrfs fi du only shows 25,40 GB used. I tried to find anything related to my problem but so far unsuccessfully, either on google, the Debian forums or wiki. Most solutions seem to rely on balance, defrag or other btrfs maintenance options, and although my diagnostics seem to show otherwise, I tried them. Unsuccesfully, of course. I suppose I could try reformatting to ext4 and reinstalling all software, but I'd like to avoid it. In the worst case, I have a backup from a previous working state, but I'd like to avoid it, too, if possible. Here follow some diagnostics: btrfs fi sh: Code: Select all# btrfs fi sh Label: none uuid: 952a3691-b40c-4996-b408-317644ffe94f Total devices 1 FS bytes used 214.13GiB devid 1 size 215.57GiB used 215.56GiB path /dev/sda2 Label: 'nas2' uuid: 3af75ca8-e28b-46e8-9afa-4095e3a67763 Total devices 1 FS bytes used 15.37GiB devid 1 size 3.64TiB used 18.06GiB path /dev/mapper/vgnas-nas2lv Label: 'backup' uuid: 1da0c5f8-a9fc-4ee8-ab80-79ec3a83e359 Total devices 2 FS bytes used 1.57TiB devid 1 size 3.64TiB used 1.57TiB path /dev/sdb1 devid 2 size 3.64TiB used 1.57TiB path /dev/sdc1 Label: 'nas1' uuid: fefaad79-68e5-447a-90de-e0334ff827e0 Total devices 1 FS bytes used 4.59TiB devid 1 size 5.46TiB used 4.65TiB path /dev/mapper/vgnas-nas1lv btrfs fi df / shows more or less the same thing: Code: Select all# btrfs fi df / Data, single: total=213.53GiB, used=213.53GiB System, single: total=32.00MiB, used=48.00KiB Metadata, single: total=2.00GiB, used=609.06MiB GlobalReserve, single: total=238.91MiB, used=0.00B Or btrfs qgroup show -reF /: Code: Select all# btrfs qgroup show -reF / qgroupid rfer excl max_rfer max_excl -------- ---- ---- -------- -------- 0/5 212.75GiB 212.75GiB none none btrfs qgroup show /: Code: Select all# btrfs qgroup show / qgroupid rfer excl -------- ---- ---- 0/5 212.75GiB 212.75GiB 0/260 4.33MiB 328.00KiB 0/261 24.48MiB 1.77MiB 0/262 24.48MiB 1.77MiB 0/263 25.22MiB 1.78MiB 0/264 25.22MiB 1.78MiB 0/273 25.22MiB 1.78MiB 0/274 25.23MiB 1.86MiB 0/276 120.39MiB 4.36MiB 0/277 120.39MiB 4.34MiB 0/278 99.22MiB 4.34MiB 0/279 99.22MiB 4.34MiB 0/280 99.22MiB 4.36MiB 0/281 99.22MiB 4.36MiB 0/282 127.50MiB 6.94MiB 0/283 127.50MiB 6.92MiB 0/284 391.58MiB 8.80MiB 0/286 391.58MiB 8.80MiB 0/292 16.00KiB 16.00KiB 0/293 16.00KiB 16.00KiB 0/294 391.59MiB 8.83MiB 0/295 391.64MiB 9.42MiB 0/304 4.32MiB 312.00KiB 0/305 24.47MiB 1.78MiB 0/306 24.47MiB 1.78MiB 0/307 137.77MiB 4.16MiB 0/308 201.66MiB 6.55MiB 0/309 201.66MiB 6.55MiB 0/312 201.66MiB 6.55MiB 0/313 523.83MiB 332.89MiB 0/317 41.12MiB 1.91MiB 0/318 41.14MiB 1.91MiB 0/319 41.14MiB 1.91MiB 0/320 48.47MiB 9.33MiB 0/342 152.89MiB 5.45MiB 0/343 152.89MiB 5.45MiB 0/347 152.89MiB 5.45MiB 0/348 158.17MiB 12.01MiB 0/3015 0.00B 0.00B 0/3043 16.00KiB 0.00B 0/3068 2.94MiB 0.00B But, the strange thing is: btrfs fi du / -s: Code: Select allbtrfs fi du / -s Total Exclusive Set shared Filename 25.40GiB 21.45GiB 643.47MiB / If we develop it: Code: Select all# btrfs fi du / -s Total Exclusive Set shared Filename 25.40GiB 21.45GiB 643.47MiB / root@oriolnas:~# btrfs fi du /* -s Total Exclusive Set shared Filename 13.37MiB 13.37MiB 0.00B /bin 57.54MiB 57.54MiB 0.00B /boot ERROR: cannot check space of '/dev': Inappropriate ioctl for device 19.19MiB 19.19MiB 0.00B /etc 0.00B 0.00B 0.00B /export 0.00B 0.00B 0.00B /home 18.15MiB 18.15MiB 0.00B /initrd.img 16.04MiB 16.04MiB 0.00B /initrd.img.old 386.39MiB 386.39MiB 0.00B /lib 3.50MiB 3.50MiB 0.00B /lib32 0.00B 0.00B 0.00B /lib64 0.00B 0.00B 0.00B /media 0.00B 0.00B 0.00B /mnt 0.00B 0.00B 0.00B /opt ERROR: cannot check space of '/proc': Inappropriate ioctl for device 8.29GiB 8.29GiB 0.00B /root ERROR: cannot check space of '/run': Inappropriate ioctl for device 12.61MiB 12.61MiB 0.00B /sbin 15.31GiB 15.31GiB 0.00B /srv ERROR: cannot check space of '/sys': Inappropriate ioctl for device ERROR: cannot check space of '/tmp': Inappropriate ioctl for device 1.49GiB 1.49GiB 0.00B /usr 15.13GiB 11.18GiB 643.47MiB /var 3.86MiB 3.86MiB 0.00B /vmlinuz 2.98MiB 2.98MiB 0.00B /vmlinuz.old 0.00B 0.00B 0.00B /webmin-setup.out It is strange that /srv shows a 15,31 GB usage, as the only subdir that is hosted on / fs is /srv/ftp, currently empty. I also tried a classic du, hoping the "inappropiate ioctl for device" for the /dev fs or similar could hide some drive usage. Here is the output: Code: Select all# du -sh /* 14M /bin 59M /boot 0 /dev 27M /etc 0 /export 20K /home 4,0K /initrd.img 4,0K /initrd.img.old 388M /lib 3,6M /lib32 4,0K /lib64 0 /media 0 /mnt 0 /opt du: no s’ha pogut accedir a «/proc/29690/task/29690/fd/3»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/proc/29690/task/29690/fdinfo/3»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/proc/29690/fd/3»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/proc/29690/fdinfo/3»: El fitxer o directori no existeix 0 /proc 8,4G /root 148M /run 13M /sbin du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/384»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/385»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/386»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/387»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/388»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/389»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/390»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/391»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/392»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/393»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/394»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/395»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/396»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/397»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/398»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/399»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/400»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/401»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/402»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/403»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/405»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/406»: El fitxer o directori no existeix du: no s’ha pogut accedir a «/srv/dev-disk-by-label-nas1/.snapshots/407»: El fitxer o directori no existeix 139T /srv 0 /sys 8,0K /tmp 1,6G /usr 16G /var 4,0K /vmlinuz 4,0K /vmlinuz.old 4,0K /webmin-setup.out The 139T in /srv account for the various snapshots in the filesystems hosted on my mechanical drives. But, so far, no hints on where my space is being eaten. Sorry for the long post, and my apologies if this has already been asked or I'm making another obviously stupid error. Thanks in advance for any suggestion. Cheers!
Have you seen https://btrfs.wiki.kernel.org/index.php ... k_space.21? See also http://marc.merlins.org/perso/btrfs/pos ... blems.html Personally, I find that removing old subvolumes usually clears things but your outputs are a little strange, for example: Code: Select all# btrfs qgroup show / qgroupid rfer excl -------- ---- ---- 0/5 212.75GiB 212.75GiB Here is mine: Code: Select allroot@Xanadu:~ # btrfs qgroup show / qgroupid rfer excl -------- ---- ---- 0/5 16.00KiB 16.00KiB Not sure what this actually means though, sorry.
Updated Debian 9: 9.2 released press@debian.org wrote:As a special case for this point release, those using the "apt-get" tool to perform the upgrade will need to ensure that the "dist-upgrade" command is used, in order to update to the latest kernel packages. Users of other tools such as "apt" and "aptitude" should use the "upgrade" command. Miscellaneous Bugfixes ---------------------- Due to an oversight while preparing the point release, the usual update to the "base-files" package to reflect the new version was unfortunately not included. An updated package will be made available via "stretch-updates" in the near future. Does this mean the following needs to be done: 1) Make sure you use a debian mirror, as in: cat /etc/apt/sources.list | grep 'debian stretch contrib main" Code: Select alldeb http://ftp.us.debian.org/debian stretch contrib main followed by apt-get update; apt-get dist-upgrade When I do that, I see (as mentioned), no base-files package update. Does that matter, or is this message really premature, and a full and safe upgrade is not possible at all until the next "stretch-update" in the near future, as stated?
It just means that you have to run dist-upgrade to install packages that either will cause other packages to be un-installed, or have to pull in other packages as depends. In this case, without digging into the why from any mailing lists or anything, it seems it's from the kernel. My VMs the kernel gets held back on a normal upgrade and three specific kernel packages get pulled in as depends on dist-upgrade ( hence the needing dist-upgrade ). As a side note: as long as you are pretty recent on keeping your system up to date you can usually just run dist-upgrade, as long as you are not actually trying to move to a different major point release.
Hello, I have just compiled a kernel on debian 9.1, and am surprised because I work on an HPC intel, and after compiling the kernel in 64 bit it generates me * amd64.deb image files. This makes that I can not with the dpkg command install my new kernel. Here is my command line after the menuconfig: nice -n19 make -j3 deb-pkg LOCALVERSION = -nixventure, how is it that it does not generate image files * i386.deb at compilation output, while I specified that I work with Xeon, in the menuconfig? Regards Philippe
amd64 is the name of the 64-bit architecture in x86-compatible computers, so your kernel is OK. check with dpkg --print-architecture it should print "amd64"
Hi, Changing fonts through Leafpad preferences for normal user works while Leafpad is open, but once I close it reverts to Monospace 12. Changing the same when Leafpad is opened via term and root is the same. If I edit the Leafpad preference file (.config/Leafpad) via root term and change the font, save etc., then the changes persist, but only for root user. This has no effect on normal user which is still Monospace 12! How can I change the font permanently? I want Noto Mono 10 in Leafpad for all users.. I have changed fonts everywhere in LXDE Debian Stretch to the Noto Sans family, in line with my wishes, but this has no effect on Leafpad font. My normal user is already in sudoer file. Can someone advise? It's driving me batty. Thanks.
wizard10000 wrote:DO NOT edit leafpad's config in your home directory as root - the resulting breakage will make you sad That's exactly what I think I've been doing, but I always reverted the changes. I'll try what you suggest later on. Thanks.
After the last update, when I restarted the system, it went to a graphical login but the resolution was wrong (more like 1080 x 700 instead of 1440 x 900) and the keyboard was totally unresponsive. (Even the capslock key does not make the caps-lock-on indicator light appear.) So I tried booting into recovery mode and that gives me the message that the root account is locked and to look up the man page for sulogin. Did that, tried what it said, accomplished nothing. So I searched around and found info about removing ! from root line in /etc/ passwd and /etc/shadow. Still the same problem on reboot. (I'm able to access the files because I have Jessie on another partition and can mount my Sid partition from there.) So I'm completely stuck. I don't see a lot of other people with this problem post-update. I have a Lenovo Thinkpad x201s with intel graphics.
I've been using sid-based distros (currently siduction Plasma 5) for years and would never do an upgrade without making a full backup first. I think it's only been needed to restore twice. See my sig. Sid has been through tumultuous changes recently. Perl transition, Qt transition, Python transition, Plasma 5.10. It's pretty scary and I've avoided upgrading for a few weeks but will attempt today (after making a backup) as only 1 package shows to be removed. siduction forum has an Upgrade Warnings thread which helps to avoid disasters. I don't know how to fix your issue but wish you luck.
Hi, I found this page https://wiki.debian.org/VirtualBox#Debi ... Stretch.22 which states that VirtualBox is not available in Stretch and asks us to use the third party repository, Code: Select alldeb http://download.virtualbox.org/virtualbox/debian stretch contrib So I did that, so no surprise to find: Code: Select allsudo apt-cache policy virtualbox-5.1 virtualbox-5.1: インストールされているバージョン: (なし) 候補: 5.1.26-117224~Debian~stretch バージョンテーブル: 5.1.26-117224~Debian~stretch 500 500 http://download.virtualbox.org/virtualbox/debian stretch/contrib amd64 Packages 100 /var/lib/dpkg/status However, I also find: Code: Select allsudo apt-cache policy virtualbox virtualbox: インストールされているバージョン: (なし) 候補: 5.1.26-dfsg-2 バージョンテーブル: 5.1.26-dfsg-2 900 900 http://httpredir.debian.org/debian testing/contrib amd64 Packages 5.1.26-dfsg-2~bpo9+1 100 100 http://ftp.jp.debian.org/debian stretch-backports/contrib amd64 Packages (Please ignore Japanese characters) Since the version, 5.1.26 is the same, I am inclined to use the Stretch Backport repository to install, especially since it is DFSG and also that's the only way Synaptic will allow me to install virtualbox-guest-additions-iso which I need. Any objections or thoughts on this? Kendew
https://wiki.debian.org/KVM
I installed Skype using the .deb file from the website, and after I created a new Skype account I got a prompt along the lines of "the application wants to create a new keyring called 'Default keyring'", asking me to choose a password for the keyring. Could someone explain to me exactly what this keyring does and what I'll need the password for? And is it a system-wide keyring that will be used by other applications in the future, or is it only used by Skype? Thanks! Edit: This has been solved. Here's a tl;dr: tl;dr Some applications may use GNOME Keyring (package gnome-keyring) to store passwords in 'Default keyring', even if you don't use the GNOME desktop environment. Seahorse (package seahorse) can be used to manage GNOME Keyring, including changing the 'Default keyring' password, deleting keys, and deleting keyrings.
It's doubtful anyone here can explain exactly what it does because it's non-free software which has nothing to do with Debian and everything to do with Microsoft. Stallman's Reasons not to use Skype may not dissuade you from using it but the wiki.debian.org FAQ gives a link should you wish "to jail it so it can't freely access your files."
Before you ask: no, I do not have a rogue line pulling Sid/Stretch/Buster to Jessie in my sources.list(.d), and yes, I'm aware that KDE is built on an ungodly number of dependencies. I wanted to try backporting a package (kdeconnect) from stretch to jessie. I know I could upgrade to stretch, but I'd really rather not at the moment. Also, I think this question general is enough to disregard the solve-all of "upgrade to the next version," because it could apply to any version, including backporting buster -> stretch. I've read all the wiki pages and tried to go with the formal build route: using sbuild, but (for the time being, at least,) disregarding the version changes, like "dch --bpo". (By the way, as a fun fact, on jessie, one has to use the backported sbuild for anything to work properly.) For now, I don't mind an almost-formal backport, as I'm still learning the general approach. However, I also see the value in creating a formal backport, so I don't want to ignore an approach that might one day be of use. With that said, here's the issue. Stretch's kdeconnect compiles and all, but it does nothing for the dependencies; and I know that the wiki says to pass --extra-package <absolute-path-to-deb-file>, but it also requires one to "build them as described above," which means building dependencies for dependencies [for dependencies], and I assume that means sitting at the keyboard until death. Aside from upgrading, or just not using the newest version of kdeconnect, is there a better way to automate the dependency resolution and building for a dependency-rich package?
kdeconnect is in Jessie repo. Instead of trying to backport the whole of Plasma 5 (and Qt and KDE Frameworks) to Jessie, it's the option I would use.
Hi created the following folder to share with VirtualBox /MyTemp (drwxrwxrwx 2 root vboxusers 4096 Sep 1 22:48 MyTemp) It automounts in my Virtualbox but when I try and access it I get, "This location could not be displayed. You do not have the permissions necessary to view the contents of "sf_MyTemp" Guest Additions are installed.
You need to add your user to the virtualbox share group In the guest. Code: Select allsudo usermod -aG vboxsf username
I recently encountered a problem that, after solving it, was repeated again and began to worry. Consider a fresh Debian installation where I've an exclusive partition to / and another to / home. Later I decided to create with gparted an ext4 extra partition to use as backup of my most sensitive information, to which I didn't assign any function or flag. At first it worked without problems, until from one moment to the other didn't allow me to mount it anymore. Analyzing the partitions I got Code: Select all# fdisk -l /dev/sda1 2048 923647 921600 450M Windows Recovery /dev/sda2 923648 1128447 204800 100M EFI System /dev/sda3 1128448 1161215 32768 16M Reserved for Microsoft /dev/sda4 1161216 628491121 627329906 299,1G Microsoft Basic Data /dev/sda5 628492288 630194175 1701888 831M Windows Recovery Environment /dev/sda6 630194176 747380735 117186560 55,9G Linux file system /dev/sda7 747380736 1020817407 273436672 130,4G Linux file system /dev/sda8 1020817408 1953523711 932706304 444,8G Linux file system The /sda8 partition was created by gparted and isn't mounted at startup by itself, but I should mount it when I want it. When doing so, the system returns the following message: Error mounting /dev/sda8 at /media/elbraca/Data: Command-line `mount -t "ext4" -o "uhelper=udisks2,nodev,nosuid" "/dev/sda8" "/media/elbraca/Data"' exited with non-zero exit status 32: mount: mounting /dev/sda8 in /media/gbraca/Data failed: The structure needs cleaning The first time I solved the issue by doing Code: Select allsudo fsck.ext4 /dev/sda8letting me mount it without problems, although it showed as output that I had fixed some problems with i-nodes. However, after restarting the issue appeared again and it doesn't seem to me to be any more casual. I've never had a problem with GNU Linux partitions, although I've never used an ext4 in this way since I always assign a mount point (/, / home, etc.) and I'm not sure if the root of the problem can come from there. By the way, I haven't used the same solution since I understand it has been a "patch" that didn't completely solve it. I'm worried about losing the information on that partition, so I hope I can find some permanent solution for this. Has anyone else had this issue?
So, you are making a backup of a disk to another area on the same disk? Have you checked that the disk is ok (S.M.A.R.T?)
I have the thunar plugin already, and it works well. If I remove nautilus and associated Dropbox elements, will it break Dropbox / thunar? Thanks. Sent from my Lenovo P2a42 using Tapatalk
The easy way to find out is to rename the elements you refer to and restart your X session. Renaming is reversible. If you tag your username on the end like this Code: Select allmv nautilus-dropbox nautilus-dropbox.ted it will be easy to identify when you go looking for it later.
Hi, Just a cosmetic annoyance really, but why does my shutdown screen look like this, all tabbed out awkwardly? http://imgur.com/a/YGrfz Is there a way to make it more pretty? Thanks.
Install plymouth?
I noticed the newest (53.3) Firefox browser is out, but Debian Stretch is using ESR. How can one install 53.3 and replace ESR? Are there reasons not to do so, or potential problems with Debian? Does anyone know if the stable release will include the latest Firefox?
supusr wrote:Does anyone know if the stable release will include the latest Firefox? The stable release will use firefox-esr. Version 52 is in experimental, I am hoping they will transition that over at some point. https://packages.debian.org/experimental/firefox-esr I'm using that version in my stretch system with no problems (so far). Are there reasons not to do so, or potential problems with Debian? Non-standard repositories (or .debs) always have the potential to cause problems and should probably only be used as a last resort. Debian stable sticks to the extended support release because the new features introduced by the mainline version inevitably introduce new bugs and vulnerabilities and may also cause API/ABI changes that are not compatible with the release paradigm. Apart from that it should be fine
Hi guys! I have tried a couple of times to add a ppa repository and get a similar error? Code: Select allsudo add-apt-repository ppa:atareao/atareao You are about to add the following PPA to your system: Applications from atareao More info: https://launchpad.net/~atareao/+archive/ubuntu/atareao Press [ENTER] to continue or ctrl-c to cancel adding it gpg: /tmp/tmp5_wq_q0_/secring.gpg: nyckelring skapad gpg: /tmp/tmp5_wq_q0_/pubring.gpg: nyckelring skapad gpg: begär nyckeln 36FD5529 från hkp-servern keyserver.ubuntu.com gpg: /tmp/tmp5_wq_q0_/trustdb.gpg: tillitsdatabas skapad gpg: nyckel 36FD5529: publika nyckeln "Launchpad PPA for atareao" importerades gpg: Totalt antal behandlade enheter: 1 gpg: importerade: 1 (RSA: 1) OK I then run: Code: Select all$ Sudo apt-get update (and get the following) Failed to fetch http://ppa.launchpad.net/atareao/atareao/ubuntu/dists/jessie/main/binary-amd64/Packages 404 Not Found E: Some index files failed to download. They have been ignored, or old ones used instead. am I missing something here? bookie
What are you trying to install?
Hi guys, I have something to ask but I must explain before a bunch of things to explain the reason why. I would like to use Retroarch on one of my older laptop, unfortunately it seems the laptop is not performing very well so I thought I could shrink the home partition and installing a distro called Lakka (which is Retroarch on top of openElec), then I decided that I would prefer installing a Debian minimal version with RetroArch and without any DE, so I did. I created a virtual machine which loads only RetroArch, cool. But eventually I thought that I don't even need to shrink the partition and install another instance of Debian, I could just create a customized session with the minimum requirements I need to keep the session lean and light. I haven't find good documentation about that just a bunch of links: https://wiki.ubuntu.com/CustomXSession https://journalxtra.com/linux/how-to-ma ... on-script/ https://wiki.archlinux.org/index.php/Li ... 2F.xinitrc https://wiki.debian.org/LightDM#User_configuration https://wiki.debian.org/Xsession (new) http://www.jfc.org.uk/software/lwm-FAQ.html (new) Do you have any better documentation to provide? I would have available just the minimum like the internet connection or whatever I need to have Retroarch fully working. Thanks
Ok guys I did a buch of proofs. I created a file /usr/share/xsessions/retroarc.desktop with: Code: Select all[Desktop Entry] Name=RetroArch Exec=/etc/X11/Xsession And a file with .xinitrc with the combinations below, each combination was a different version of the file: Code: Select allProof #01 #!/usr/bin/env bash retroarch & Proof #02 #!/usr/bin/env bash /usr/bin/retroarch & Proof #03 #!/usr/bin/env bash startx /usr/bin/retroarch & Proof #04 #!/usr/bin/env bash /usr/bin/startx /usr/bin/retroarch & Proof #05 #!/usr/bin/env bash DISPLAY=:0 /usr/bin/retroarch & Proof #06 #!/usr/bin/env bash "DISPLAY=:0 /usr/bin/retroarch &" Proof #07 #!/usr/bin/env bash exec DISPLAY=:0 /usr/bin/retroarch & Proof #08 #!/usr/bin/env bash exec 'DISPLAY=:0 /usr/bin/retroarch &' Proof #09 #!/usr/bin/env bash exec /usr/bin/retroarch &' Proof #10 #!/usr/bin/env bash exec retroarch &' Proof #11 at least for having a working shell #!/usr/bin/env bash No one of these proofs worked, I found only this segmentation fault: Code: Select alldebian kernel: [ 74.740681] retroarch[1117]: segfault at 0 ip (null) sp 000077ffdd99a2f1a8 error 14 in retroarch[561499853000+1bc000] To be complete I am doing these proofs on a virtual machine, however when I did the proof on minimal Debian I used slim as login manager that allows you to launch special command so I was able to launch RetroArch without DE. By the way any suggestions?
I have alacarte installed, and it seems to be able to run one command just fine, but I would like it to run two commands: one command, and then another once it has finished. Here is the command I want to run: Code: Select all/bin/rm -rf /home/user/sandbox/epiphany/.[bcXl]*; /usr/bin/firejail --private=/home/user/sandbox/epiphany --dns=8.8.8.8 --dns=8.8.4.4 /usr/bin/epiphany -i It deletes the contents of a ramfs directory each time it starts up, and then it opens epiphany up in a container. This works when executed from the terminal; I have confirmed that it deletes the contents as well, but it will not run when inserted in menu via alacarte or when I edit a .desktop file. Both commands do not run. I cannot see the output so I don't know what's going on. Any ideas?
wizard10000 wrote:This should work in a .desktop file - Code: Select allbash -c "/bin/rm -rf /home/user/sandbox/epiphany/.[bcXl]*; /usr/bin/firejail --private=/home/user/sandbox/epiphany --dns=8.8.8.8 --dns=8.8.4.4 /usr/bin/epiphany -i" Hope this helps - Works like a charm! I have used the command 'bash -c' in the past, but for some reason hadn't thought to use it in this case. Makes sense why it works! SOLVED!
I upgraded my Debian installation to Stretch and so far I'm annoyed by a few things; most annoying being my WiFi adapter not working. It appears when I run Code: Select allip link show but when I try to use something like wicd-curses no networks show up. Even when I try to set it up through the command line it fails to connect. It previously worked so what happened? SOLUTION: The interface worked after installing the firmware-ralink package. This may/may not have been due to user error as well, because my driver is normally built into the kernel. Worth a shot if you're having trouble.
I'm sure we had a similar topic to this just very recently. Seems to be an ongoing issue, not just with Debian, but many Linux distros. Anyway, I use wired internet so have no experience of this directly, but if you enter the query into a search engine, you will see quite a few results, some of which, I'm sure, would assist you. https://lmsptfy.com/?q=wifi%20not%20wor ... %20stretch http://lmgtfy.com/?q=wifi+not+working+debian+stretch
Hi I am trying to install Debian 9 on old Asus K50IJ, i just replaced the drive to SSD, and BIOS can see the drive (its empty drive formatted under Mac OS). I tried doing the Debian USB installer a few times already, first i did it on Mac OS using "dd" command, then using ISO2Disc under Win10 (and selecting MBR for legacy mode). When i boot the USB i get error "An operating system wasn't found". by the way im using net netinst iso.
So a better title for this thread would be "Having trouble creating a Debian install USB pendrive"? Try Rufus or Etcher on Win10 to create a bootable USB. Rufus seems to have a couple different options if the first try doesn't work out, too.
Hello everyone ! Since few days, I can't upgrade my debian desktop because of a conflict between two different version of libc6 , when I run Code: Select allsudo apt-get upgrade. I get this error : Code: Select allPreconfiguring packages ... dpkg: error processing package libc6:amd64 (--configure): package libc6:amd64 2.19-18+deb8u10 cannot be configured because libc6:i386 is at a different version (2.19-18+deb8u9) Errors were encountered while processing: libc6:amd64 I don't really know how to handle this problem, I would like to replace this old libc6:i386 package by the 64 bit version of it. If you have any advice on how to simply do it, I would be very grateful !! Thanks in advance !
# apt-get autoremove && apt-get install -f What does that show?
I recently migrated from Jessie to Stretch. My favorite game (Pharaoh, under WINE) wouldn't work, and nvidia-detect suggested I install nvidia-driver, so I did. My Power management options are set to Put computer to sleep when inactive for 10 minutes, and Put display to sleep when inactive for 10 minutes. So I walk away from my computer for at least that long, and then all is quiet. But when I come back and press Ctrl, the processor box clicks and whirrs, with blue lights coming active, but the monitor stays dark. I can only get out of this state with the reset button. There was a new strange bootup message: [FAILED] Failed to start Load Kernel Modules. A Google search suggested the command systemctl status systemd-modules-load.service which yielded, among other messages, modprobe: FATAL: module nvidia-current-modeset not found in directory /lib/modules/4.9.0-3-amd64 modprobe: FATAL: module nvidia-current-drm not found in directory /lib/modules/4.9.0-3-amd64 I could not find any binaries with those names but I did find folders named nvidia-modeset and nvidia-drm under /var/lib/dkms/nvidia-current/375.66/source. Does that mean I'm looking at building from source? I've done that before but I'm not really comfortable with it. Prior to installing nvidia-driver, allowing the computer to fall asleep and then waking it up worked fine. I could even shut the power at the power strip, turn it back on later, and wake the computer up (does this mean it was hibernating rather than just sleeping?) Under Jessie (without nvidia-driver) I had no problem letting it hibernate and then waking it up again. But I couldn't tell it to hibernate now, that never worked -- I had to let it put itself to bed after 10 minutes. Possibly related: another game, Quadrapassel, worked before I installed nvidia-driver, but now that I've installed it, Quadrapassel won't work at all. (But Pharaoh under WINE works fine now.) I took system backups just before installing nvidia-driver so unupgrading this change is no problem. But I really want to get Pharaoh to work, and it's been a long time since this driver was upgraded, so I do want to make that happen. Any suggestions? Caitlin
stivencox wrote:If I have any problem with PC I always re-install OS. It solves everything usually I just buy a new car whenever the old one needs an oil change.
Currently, I am running Fedora as my host and Debian as my VM, as Fedora has support for virgl. I would like to run virgl in Debian and make Debian my host and my VM. Then I saw this page: https://tracker.debian.org/pkg/virglrenderer It seems that virgl has been rejected and pulled due to bugs. I would still like to give it a go, if that is possible. I am running Debian 9 on VM (working excellent btw, and will keep) to test it; I'd rather not ditch my working host to just 'try it out.' It would be running in straight qemu and libvirt with no virt-manager front-end and would be using an SDL or GTK display. I have a working script already made, so that's not an issue... I tried installing virgl from backports by issuing: Code: Select allapt-get -t stretch-backports install virglrenderer ... and it comes back as package not found. I admit that I don't know much about how backports work in Debian. Any ideas? I understand what I am asking is a bit of a stretch, as I would like stability, but I also want to use a package that is quite new, but there are so many things I like about Debian that make it worth it, if it could be done.
bedtime wrote:It seems that virgl has been rejected and pulled due to bugs. I would still like to give it a go, if that is possible. Not as part of a Stable system. If running buggy software is important to you, then you've already chosen an ideal distro (Fedora). Then too, "bugs" is a serious mischaracterization of a dozen serious security vulnerabilities. Why you'd want to "give it a go" is beyond me, but hey, it's your rig to ruin. bedtime wrote:I tried installing virgl from backports... [snip] I admit that I don't know much about how backports work in Debian. Backports are newer versions of popular software compiled for a specific release. Packages with RC bugs are not allowed in Backports. bedtime wrote:Any ideas? The package you're looking for is available in Jessie backports, if your keen devotion to software trendiness would allow you to run ( ) Debian 8 instead of Debian 9. bedtime wrote:I understand what I am asking is a bit of a stretch... s/bit of a stretch/self-contradictory/ (Fixed that for you )
Hello. After my Jessie install decided to end-it-all yesterday after an update, I installed Stretch and was pleasantly surprised to find that Plasma 5 window management now works correctly with multiple-monitors. I'm configuring everything again from scratch rather than try to import all my previous stuff. Now trying to install VirtualBox as per the wiki and I'm getting this: Code: Select all$ sudo apt-key add oracle_vbox_2016.asc gpg: WARNING: nothing exported gpg: no valid OpenPGP data found. gpg: Total number processed: 0 I then found this post and tried: Code: Select allsudo apt-get install debian-keyring debian-archive-keyring... but still no success. Also found this which suggests it may be a corrupt (/etc/apt/trusted.gpg) but I've had no success follow the instructions by the author. Can anyone assist here? Thanks.
You might try: Code: Select allwget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - From the Oracle instructions here: https://www.virtualbox.org/wiki/Linux_Downloads
How do I get updates for my stretch release candidate installations? They aren't happening that I am aware of, but I am not the one using those computers most of the time. Here is my sources.list Code: Select alldeb http://ftp.us.debian.org/debian stretch main contrib non-free deb-src http://ftp.us.debian.org/debian stretch main contrib non-free deb http://ftp.us.debian.org/debian stretch-updates main contrib non-free deb-src http://ftp.us.debian.org/debian stretch-updates main contrib non-free deb http://security.debian.org/ stretch/updates main contrib non-free deb-src http://security.debian.org/ stretch/updates main contrib non-free I've been researching how the sources are supposed to be set up for stretch, but I haven't figured it out yet. Am I doing something wrong? I've also googled this without finding the answer. uname -a Code: Select allLinux intelkitdeb9rc3 4.9.0-3-amd64 #1 SMP Debian 4.9.30-2+deb9u2 (2017-06-26) x86_64 GNU/Linux Am I correct in thinking that the kernel has not updated in two weeks? It is July 7th today, so shouldn't the kernel be newer than June 26th?
There are no updates yet because no updates have been released. I would strongly suggest you check the first link in my sig. As for your kernel, 4.9 has been decided as the kernel for Stretch. It won't update. Likewise 3.16 is the kernel for Jessie [Debian 8] and has remained so since 2015.
Hi I need help figuring out a memory problem on a debian server. The servers main purose is hosting 30 Ruby web apps. I upgraded to stretch yesterday and a couple of hours later I started getting notifications from Monit about low system memory. The apps themselves arent using more memory than normal. I've never seen this issue on jessie or wheezy and so far Im at a loss. I've upgraded 3 other systems to stretch and not seen the same problem. I replaced the RAM chips and upgraded from 8GB to 12GB just in case, but that only delayed the system from running out of memory from 2 hours to 4 hours. After 7-8 hours the system starts killing processes. So far the only solution is to reboot the system. Looking at the output from "ps aux" I dont see anything that's eating up memory. In /var/log/syslog I see periodic errors about "page allocation failure": Code: Select allJul 15 23:30:21 odin kernel: [36637.127915] ruby: page allocation failure: order:4, mode:0x26040c0(GFP_KERNEL|__GFP_COMP|__GFP_NOTRACK) Jul 15 23:30:22 odin kernel: [36637.127924] CPU: 8 PID: 9800 Comm: ruby Tainted: G I 4.9.0-3-amd64 #1 Debian 4.9.30-2+deb9u2 Jul 15 23:30:22 odin kernel: [36637.127925] Hardware name: HP ProLiant ML350 G6, BIOS D22 01/30/2011 Jul 15 23:30:22 odin kernel: [36637.127927] 0000000000000000 ffffffff98d28414 ffffffff993feb20 ffffc22bc350fa18 Jul 15 23:30:22 odin kernel: [36637.127929] ffffffff98b84f3a 026040c0026040c0 ffffffff993feb20 ffffc22bc350f9b8 Jul 15 23:30:22 odin kernel: [36637.127931] ffffa06000000010 ffffc22bc350fa28 ffffc22bc350f9d8 fa32a9a5fc8c2ebd Jul 15 23:30:22 odin kernel: [36637.127934] Call Trace: Jul 15 23:30:22 odin kernel: [36637.127940] [<ffffffff98d28414>] ? dump_stack+0x5c/0x78 Jul 15 23:30:22 odin kernel: [36637.127943] [<ffffffff98b84f3a>] ? warn_alloc+0x13a/0x160 Jul 15 23:30:22 odin kernel: [36637.127945] [<ffffffff98b84c7a>] ? __alloc_pages_direct_compact+0x4a/0xf0 Jul 15 23:30:22 odin kernel: [36637.127947] [<ffffffff98b85264>] ? __alloc_pages_slowpath+0x294/0xbc0 Jul 15 23:30:22 odin kernel: [36637.127948] [<ffffffff98b85264>] ? __alloc_pages_slowpath+0x294/0xbc0 Jul 15 23:30:22 odin kernel: [36637.127950] [<ffffffff98b85d8e>] ? __alloc_pages_nodemask+0x1fe/0x260 Jul 15 23:30:22 odin kernel: [36637.127954] [<ffffffff98bde16d>] ? cache_grow_begin+0x9d/0x550 Jul 15 23:30:22 odin kernel: [36637.127955] [<ffffffff98bde16d>] ? cache_grow_begin+0x9d/0x550 Jul 15 23:30:22 odin kernel: [36637.127956] [<ffffffff98bde8d1>] ? fallback_alloc+0x161/0x200 Jul 15 23:30:22 odin kernel: [36637.127960] [<ffffffff98c91eea>] ? SYSC_semtimedop+0x58a/0xcd0 Jul 15 23:30:22 odin kernel: [36637.127961] [<ffffffff98bdf761>] ? __kmalloc+0x1e1/0x560 Jul 15 23:30:22 odin kernel: [36637.127963] [<ffffffff98c91eea>] ? SYSC_semtimedop+0x58a/0xcd0 Jul 15 23:30:22 odin kernel: [36637.127967] [<ffffffff98ee6de0>] ? release_sock+0x40/0x90 Jul 15 23:30:22 odin kernel: [36637.127969] [<ffffffff98f51c6f>] ? tcp_sendmsg+0x8bf/0xc00 Jul 15 23:30:22 odin kernel: [36637.127971] [<ffffffff98d31414>] ? timerqueue_add+0x54/0xa0 Jul 15 23:30:22 odin kernel: [36637.127973] [<ffffffff98ae5b98>] ? enqueue_hrtimer+0x38/0x80 Jul 15 23:30:22 odin kernel: [36637.127974] [<ffffffff98ae6464>] ? hrtimer_start_range_ns+0x194/0x360 Jul 15 23:30:22 odin kernel: [36637.127976] [<ffffffff98ae7532>] ? do_setitimer+0x1d2/0x230 Jul 15 23:30:22 odin kernel: [36637.127977] [<ffffffff98ae76b2>] ? SyS_setitimer+0x92/0x120 Jul 15 23:30:22 odin kernel: [36637.127980] [<ffffffff9900627b>] ? system_call_fast_compare_end+0xc/0x9b Jul 15 23:30:22 odin kernel: [36637.127981] Mem-Info: Jul 15 23:30:22 odin kernel: [36637.127985] active_anon:531660 inactive_anon:132876 isolated_anon:61 Jul 15 23:30:22 odin kernel: [36637.127985] active_file:9801 inactive_file:9856 isolated_file:0 Jul 15 23:30:22 odin kernel: [36637.127985] unevictable:0 dirty:0 writeback:353 unstable:0 Jul 15 23:30:22 odin kernel: [36637.127985] slab_reclaimable:19576 slab_unreclaimable:15771 Jul 15 23:30:22 odin kernel: [36637.127985] mapped:7837 shmem:178 pagetables:6100 bounce:0 Jul 15 23:30:22 odin kernel: [36637.127985] free:30650 free_pcp:11 free_cma:0 Jul 15 23:30:22 odin kernel: [36637.127989] Node 0 active_anon:2126640kB inactive_anon:531504kB active_file:39204kB inactive_file:39424kB unevictable:0kB isolated(anon):244kB isolated(file):0kB mapped:31348kB dirty:0kB writeback:1412kB shmem:712kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 0kB writeback_tmp:0kB unstable:0kB pages_scanned:0 all_unreclaimable? no Jul 15 23:30:22 odin kernel: [36637.127990] Node 0 DMA free:15908kB min:84kB low:104kB high:124kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15992kB managed:15908kB mlocked:0kB slab_reclaimable:0kB slab_unreclaimable:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB Jul 15 23:30:22 odin kernel: [36637.127993] lowmem_reserve[]: 0 3076 11967 11967 11967 Jul 15 23:30:22 odin kernel: [36637.127996] Node 0 DMA32 free:52868kB min:17352kB low:21688kB high:26024kB active_anon:27820kB inactive_anon:8080kB active_file:144kB inactive_file:524kB unevictable:0kB writepending:0kB present:3250368kB managed:3173852kB mlocked:0kB slab_reclaimable:1068kB slab_unreclaimable:5784kB kernel_stack:16kB pagetables:96kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB Jul 15 23:30:22 odin kernel: [36637.128000] lowmem_reserve[]: 0 0 8890 8890 8890 Jul 15 23:30:22 odin kernel: [36637.128002] Node 0 Normal free:53824kB min:50140kB low:62672kB high:75204kB active_anon:2098820kB inactive_anon:523424kB active_file:39060kB inactive_file:38900kB unevictable:0kB writepending:1412kB present:9306108kB managed:9104276kB mlocked:0kB slab_reclaimable:77236kB slab_unreclaimable:57300kB kernel_stack:5360kB pagetables:24304kB bounce:0kB free_pcp:44kB local_pcp:0kB free_cma:0kB Jul 15 23:30:22 odin kernel: [36637.128006] lowmem_reserve[]: 0 0 0 0 0 Jul 15 23:30:22 odin kernel: [36637.128008] Node 0 DMA: 1*4kB (U) 0*8kB 0*16kB 1*32kB (U) 2*64kB (U) 1*128kB (U) 1*256kB (U) 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15908kB Jul 15 23:30:22 odin kernel: [36637.128017] Node 0 DMA32: 45*4kB (UME) 294*8kB (ME) 430*16kB (ME) 470*32kB (UME) 226*64kB (UME) 85*128kB (UME) 8*256kB (ME) 0*512kB 1*1024kB (E) 0*2048kB 0*4096kB = 52868kB Jul 15 23:30:22 odin kernel: [36637.128026] Node 0 Normal: 1794*4kB (UME) 5789*8kB (UME) 36*16kB (UM) 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 54064kB Jul 15 23:30:22 odin kernel: [36637.128034] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB Jul 15 23:30:22 odin kernel: [36637.128034] 93118 total pagecache pages Jul 15 23:30:22 odin kernel: [36637.128035] 73394 pages in swap cache Jul 15 23:30:22 odin kernel: [36637.128036] Swap cache stats: add 14111506, delete 14038112, find 8508247/13062492 Jul 15 23:30:22 odin kernel: [36637.128037] Free swap = 4632260kB Jul 15 23:30:22 odin kernel: [36637.128037] Total swap = 5846012kB Jul 15 23:30:22 odin kernel: [36637.128038] 3143117 pages RAM Jul 15 23:30:22 odin kernel: [36637.128038] 0 pages HighMem/MovableOnly Jul 15 23:30:22 odin kernel: [36637.128039] 69608 pages reserved Jul 15 23:30:22 odin kernel: [36637.128040] 0 pages hwpoisoned Any help on how to investigate this further would be appreciated. I'll quote some outputs below. Code: Select all$ top Tasks: 189 total, 2 running, 187 sleeping, 0 stopped, 0 zombie %Cpu(s): 11.6 us, 3.7 sy, 0.0 ni, 55.2 id, 29.2 wa, 0.0 hi, 0.3 si, 0.0 st KiB Mem : 12294036 total, 124468 free, 12004288 used, 165280 buff/cache KiB Swap: 5846012 total, 4392540 free, 1453472 used. 53360 avail Mem Code: Select all$ cat /proc/meminfo MemTotal: 12294036 kB MemFree: 120960 kB MemAvailable: 28484 kB Buffers: 27140 kB Cached: 37904 kB SwapCached: 244056 kB Active: 2108308 kB Inactive: 548892 kB Active(anon): 2074920 kB Inactive(anon): 518556 kB Active(file): 33388 kB Inactive(file): 30336 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 5846012 kB SwapFree: 4491776 kB Dirty: 0 kB Writeback: 2148 kB AnonPages: 2443316 kB Mapped: 26856 kB Shmem: 1304 kB Slab: 120544 kB SReclaimable: 56712 kB SUnreclaim: 63832 kB KernelStack: 5376 kB PageTables: 25216 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 11993028 kB Committed_AS: 4735892 kB VmallocTotal: 34359738367 kB VmallocUsed: 0 kB VmallocChunk: 0 kB HardwareCorrupted: 0 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB DirectMap4k: 88252 kB DirectMap2M: 12484608 kB Code: Select all$ vmstat -s 12294036 K total memory 12012524 K used memory 2067832 K active memory 535264 K inactive memory 167376 K free memory 27756 K buffer memory 86380 K swap cache 5846012 K total swap 1279912 K used swap 4566100 K free swap 1741799 non-nice user cpu ticks 0 nice user cpu ticks 553504 system cpu ticks 8201481 idle cpu ticks 4685975 IO-wait cpu ticks 0 IRQ cpu ticks 42823 softirq cpu ticks 0 stolen cpu ticks 72478199 pages paged in 35891576 pages paged out 7177475 pages swapped in 8365758 pages swapped out 56148095 interrupts 69385724 CPU context switches 1500117582 boot time 173809 forks Code: Select all$ ps aux --sort rss USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 2 0.0 0.0 0 0 ? S 13:19 0:00 [kthreadd] root 3 0.0 0.0 0 0 ? S 13:19 0:36 [ksoftirqd/0] root 5 0.0 0.0 0 0 ? S< 13:19 0:00 [kworker/0:0H] root 7 0.1 0.0 0 0 ? S 13:19 0:51 [rcu_sched] root 8 0.0 0.0 0 0 ? S 13:19 0:00 [rcu_bh] root 9 0.0 0.0 0 0 ? S 13:19 0:00 [migration/0] root 10 0.0 0.0 0 0 ? S< 13:19 0:00 [lru-add-drain] root 11 0.0 0.0 0 0 ? S 13:19 0:00 [watchdog/0] root 12 0.0 0.0 0 0 ? S 13:19 0:00 [cpuhp/0] root 13 0.0 0.0 0 0 ? S 13:19 0:00 [cpuhp/4] root 14 0.0 0.0 0 0 ? S 13:19 0:00 [watchdog/4] root 15 0.0 0.0 0 0 ? S 13:19 0:00 [migration/4] root 16 0.0 0.0 0 0 ? S 13:19 0:34 [ksoftirqd/4] root 18 0.0 0.0 0 0 ? S< 13:19 0:00 [kworker/4:0H] root 19 0.0 0.0 0 0 ? S 13:19 0:00 [cpuhp/8] root 20 0.0 0.0 0 0 ? S 13:19 0:00 [watchdog/8] root 21 0.0 0.0 0 0 ? S 13:19 0:00 [migration/8] root 22 0.0 0.0 0 0 ? S 13:19 0:36 [ksoftirqd/8] root 24 0.0 0.0 0 0 ? S< 13:19 0:00 [kworker/8:0H] root 25 0.0 0.0 0 0 ? S 13:19 0:00 [cpuhp/12] root 26 0.0 0.0 0 0 ? S 13:19 0:00 [watchdog/12] root 27 0.0 0.0 0 0 ? S 13:19 0:00 [migration/12] root 28 0.0 0.0 0 0 ? S 13:19 0:36 [ksoftirqd/12] root 30 0.0 0.0 0 0 ? S< 13:19 0:00 [kworker/12:0H] root 31 0.0 0.0 0 0 ? S 13:19 0:00 [kdevtmpfs] root 32 0.0 0.0 0 0 ? S< 13:19 0:00 [netns] root 33 0.0 0.0 0 0 ? S 13:19 0:00 [khungtaskd] root 34 0.0 0.0 0 0 ? S 13:19 0:00 [oom_reaper] root 35 0.0 0.0 0 0 ? S< 13:19 0:00 [writeback] root 36 0.0 0.0 0 0 ? S 13:19 0:00 [kcompactd0] root 37 0.0 0.0 0 0 ? S 13:19 0:00 [kworker/0:1] root 38 0.0 0.0 0 0 ? SN 13:19 0:00 [ksmd] root 39 0.0 0.0 0 0 ? SN 13:19 0:00 [khugepaged] root 40 0.0 0.0 0 0 ? S< 13:19 0:00 [crypto] root 41 0.0 0.0 0 0 ? S< 13:19 0:00 [kintegrityd] root 42 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 43 0.0 0.0 0 0 ? S< 13:19 0:00 [kblockd] root 44 0.0 0.0 0 0 ? S< 13:19 0:00 [devfreq_wq] root 45 0.0 0.0 0 0 ? S< 13:19 0:00 [watchdogd] root 49 0.4 0.0 0 0 ? D 13:19 2:41 [kswapd0] root 50 0.0 0.0 0 0 ? S< 13:19 0:00 [vmstat] root 62 0.0 0.0 0 0 ? S< 13:19 0:00 [kthrotld] root 63 0.0 0.0 0 0 ? S< 13:19 0:00 [ipv6_addrconf] root 64 0.3 0.0 0 0 ? S 13:19 2:13 [kworker/0:2] root 97 0.0 0.0 0 0 ? S< 13:19 0:00 [acpi_thermal_pm] root 107 0.0 0.0 0 0 ? S< 13:19 0:00 [ata_sff] root 114 0.0 0.0 0 0 ? S 13:19 0:00 [scsi_eh_0] root 116 0.0 0.0 0 0 ? S< 13:19 0:00 [scsi_tmf_0] root 118 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 119 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 120 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 121 0.0 0.0 0 0 ? S 13:19 0:00 [scsi_eh_1] root 122 0.0 0.0 0 0 ? S< 13:19 0:00 [scsi_tmf_1] root 123 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 125 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 126 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 127 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 130 0.0 0.0 0 0 ? S< 13:19 0:00 [kworker/0:1H] root 131 0.0 0.0 0 0 ? S 13:19 0:00 [scsi_eh_2] root 132 0.0 0.0 0 0 ? S< 13:19 0:00 [scsi_tmf_2] root 133 0.0 0.0 0 0 ? S 13:19 0:00 [scsi_eh_3] root 134 0.0 0.0 0 0 ? S< 13:19 0:00 [scsi_tmf_3] root 138 0.0 0.0 0 0 ? S< 13:19 0:06 [kworker/4:1H] root 140 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 142 0.0 0.0 0 0 ? S< 13:19 0:00 [kworker/8:1H] root 144 0.0 0.0 0 0 ? S 13:19 0:00 [scsi_eh_4] root 145 0.0 0.0 0 0 ? S< 13:19 0:00 [scsi_tmf_4] root 146 0.0 0.0 0 0 ? S 13:19 0:00 [usb-storage] root 148 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 149 0.0 0.0 0 0 ? S< 13:19 0:00 [bioset] root 151 0.0 0.0 0 0 ? S< 13:19 0:01 [kworker/12:1H] root 195 0.0 0.0 0 0 ? S 13:19 0:01 [jbd2/sda1-8] root 196 0.0 0.0 0 0 ? S< 13:19 0:00 [ext4-rsv-conver] root 237 0.0 0.0 0 0 ? S 13:19 0:00 [kauditd] root 254 0.0 0.0 0 0 ? S< 13:19 0:00 [rpciod] root 255 0.0 0.0 0 0 ? S< 13:19 0:00 [xprtiod] root 283 0.1 0.0 0 0 ? S 13:19 0:59 [kworker/12:3] root 320 0.0 0.0 0 0 ? S< 13:19 0:00 [edac-poller] message+ 364 0.0 0.0 45460 0 ? Ss 13:19 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation root 376 0.0 0.0 4216 0 ? Ss 13:19 0:00 /usr/sbin/acpid root 407 0.0 0.0 0 0 ? S< 13:19 0:00 [ttm_swap] root 522 0.0 0.0 443760 0 ? Ssl 13:19 0:07 /usr/local/bin/junglediskserver sysadmin 632 0.0 0.0 82916 0 ? S 13:19 0:00 (sd-pam) root 764 0.0 0.0 0 0 ? S< 13:19 0:00 [cifsiod] root 765 0.0 0.0 0 0 ? S< 13:19 0:00 [cifsoplockd] root 786 0.0 0.0 0 0 ? S 13:19 0:00 [cifsd] root 792 0.0 0.0 16072 0 tty1 Ss+ 13:19 0:00 /sbin/agetty --noclear tty1 linux root 4378 0.1 0.0 0 0 ? S 18:17 0:32 [kworker/8:2] root 5689 0.0 0.0 0 0 ? S 22:44 0:00 [kworker/u64:3] root 7100 0.0 0.0 0 0 ? S 22:57 0:00 [kworker/u64:1] root 9809 0.0 0.0 0 0 ? D 23:25 0:00 [kworker/u64:0] root 11159 0.0 0.0 0 0 ? S 23:38 0:00 [kworker/4:2] root 11396 0.0 0.0 0 0 ? S 23:41 0:00 [kworker/u64:2] root 11398 0.0 0.0 0 0 ? S 23:41 0:00 [kworker/u64:4] root 11592 0.0 0.0 0 0 ? S 23:43 0:00 [kworker/4:0] root 14633 0.1 0.0 0 0 ? S 13:54 0:48 [kworker/8:0] root 15179 0.1 0.0 0 0 ? S 18:51 0:27 [kworker/12:1] root 30176 0.0 0.0 0 0 ? S 21:49 0:04 [kworker/4:1] root 367 0.0 0.0 250116 20 ? Ssl 13:19 0:00 /usr/sbin/rsyslogd -n sysadmin 624 0.0 0.0 64868 32 ? Ss 13:19 0:00 /lib/systemd/systemd --user root 324 0.0 0.0 49868 60 ? Ss 13:19 0:00 /sbin/rpcbind -f -w postfix 1780 0.0 0.0 83396 76 ? S 13:20 0:00 qmgr -l -t unix -u postfix 9094 0.0 0.0 83228 84 ? S 23:17 0:00 pickup -l -t unix -u -c sysadmin 10337 0.0 0.0 96864 84 ? S 23:30 0:00 sshd: sysadmin@pts/0 root 1775 0.0 0.0 81164 88 ? Ss 13:20 0:00 /usr/lib/postfix/sbin/master -w root 372 0.0 0.0 27992 96 ? Ss 13:19 0:00 /usr/sbin/cron -f root 674 0.0 0.0 11400 96 ? Ss 13:19 0:00 /sbin/mount.ntfs /dev/sdb1 /mybook -o rw root 264 0.0 0.0 46864 112 ? Ss 13:19 0:01 /lib/systemd/systemd-udevd ntp 598 0.0 0.0 102064 152 ? Ssl 13:19 0:02 /usr/sbin/ntpd -p /var/run/ntpd.pid -g -u 108:113 root 368 0.0 0.0 46804 160 ? Ss 13:19 0:00 /lib/systemd/systemd-logind root 371 0.0 0.0 35900 172 ? Ss 13:19 0:01 /usr/sbin/irqbalance --foreground daemon 365 0.0 0.0 27964 204 ? Ss 13:19 0:00 /usr/sbin/atd -f root 427 0.0 0.0 69940 260 ? Ss 13:19 0:00 /usr/sbin/sshd -D root 14632 0.0 0.0 43408 264 ? S 13:54 0:04 /usr/bin/monit -c /etc/monit/monitrc root 1 0.0 0.0 57492 340 ? Ss 13:19 0:01 /sbin/init root 10303 0.0 0.0 95168 536 ? Ss 23:30 0:00 sshd: sysadmin [priv] root 612 0.0 0.0 48180 732 ? Ss 13:19 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on; root 228 0.0 0.0 46216 1112 ? Ss 13:19 0:01 /lib/systemd/systemd-journald sysadmin 10338 0.0 0.0 22952 1832 pts/0 Ss 23:30 0:00 -bash sysadmin 2089 0.0 0.0 159712 2148 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app1/current/config/unicorn.rb -E production sysadmin 2149 0.0 0.0 159284 2160 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app2/current/config/unicorn.rb -E production sysadmin 2155 0.0 0.0 159304 2192 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app3/current/config/unicorn.rb -E production sysadmin 2202 0.0 0.0 159408 2220 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app4/current/config/unicorn.rb -E production sysadmin 2781 0.0 0.0 159540 2316 ? Sl 13:22 0:00 unicorn_bin master -D -c /apps/app5/current/config/unicorn.rb -E production sysadmin 4449 0.0 0.0 159288 2316 ? Sl 18:17 0:00 unicorn_bin master -D -c /apps/app6/current/config/unicorn.rb -E production sysadmin 15205 0.0 0.0 159540 2360 ? Sl 13:56 0:00 unicorn_bin master -D -c /apps/app7/current/config/unicorn.rb -E production sysadmin 2027 0.0 0.0 159316 2368 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app8/current/config/unicorn.rb -E production sysadmin 2012 0.0 0.0 159400 2404 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app9/current/config/unicorn.rb -E production sysadmin 2179 0.0 0.0 159372 2408 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app10/current/config/unicorn.rb -E production sysadmin 2131 0.0 0.0 159396 2420 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app11/current/config/unicorn.rb -E production sysadmin 2119 0.0 0.0 159360 2516 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app12/current/config/unicorn.rb -E production sysadmin 2113 0.0 0.0 159352 2520 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app13/current/config/unicorn.rb -E production sysadmin 2125 0.0 0.0 158772 2520 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app14/current/config/unicorn.rb -E production sysadmin 2053 0.0 0.0 159420 2528 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app15/current/config/unicorn.rb -E production sysadmin 2059 0.0 0.0 159128 2528 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app16/current/config/unicorn.rb -E production sysadmin 2101 0.0 0.0 159448 2532 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app17/current/config/unicorn.rb -E production sysadmin 2185 0.0 0.0 160228 2540 ? Sl 13:20 0:06 unicorn_bin master -D -c /apps/app18/current/config/unicorn.rb -E production sysadmin 2047 0.0 0.0 159376 2556 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app19/current/config/unicorn.rb -E production sysadmin 2065 0.0 0.0 159432 2556 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app20/current/config/unicorn.rb -E production sysadmin 2143 0.0 0.0 159488 2560 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app21/current/config/unicorn.rb -E production sysadmin 2167 0.0 0.0 159368 2568 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app22/current/config/unicorn.rb -E production sysadmin 2021 0.0 0.0 159472 2768 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app23/current/config/unicorn.rb -E production www-data 613 0.1 0.0 49312 2780 ? S 13:19 0:48 nginx: worker process sysadmin 2192 0.0 0.0 159380 3036 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app24/current/config/unicorn.rb -E production sysadmin 2041 0.0 0.0 159172 3096 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app25/current/config/unicorn.rb -E production sysadmin 2034 0.0 0.0 159372 3220 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app26/current/config/unicorn.rb -E production sysadmin 2107 0.0 0.0 159584 3260 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app27/current/config/unicorn.rb -E production sysadmin 2006 0.0 0.0 159420 3264 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app28/current/config/unicorn.rb -E production sysadmin 2083 0.0 0.0 159000 3272 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app29/current/config/unicorn.rb -E production sysadmin 2095 0.0 0.0 159376 3284 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app30/current/config/unicorn.rb -E production sysadmin 11801 0.6 0.0 40152 3316 pts/0 R+ 23:46 0:00 ps aux --sort rss sysadmin 2071 0.0 0.0 158964 3360 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app31/current/config/unicorn.rb -E production sysadmin 2137 0.0 0.0 159296 3396 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app32/current/config/unicorn.rb -E production sysadmin 2161 0.0 0.0 159388 3656 ? Sl 13:20 0:00 unicorn_bin master -D -c /apps/app33/current/config/unicorn.rb -E production mongodb 538 0.2 0.0 2001460 4700 ? Sl 13:19 1:52 /usr/bin/mongod --config /etc/mongodb.conf sysadmin 11772 0.1 0.0 159388 6060 ? Dl 23:45 0:00 unicorn_bin worker[0] -D -c /apps/app33/current/config/unicorn.rb -E production sysadmin 11687 0.1 0.0 159096 9816 ? Dl 23:45 0:00 unicorn_bin worker[0] -D -c /apps/app31/current/config/unicorn.rb -E production sysadmin 10700 0.6 0.1 349848 13296 ? Sl 23:34 0:04 unicorn_bin worker[0] -D -c /apps/app1/current/config/unicorn.rb -E production sysadmin 11576 0.1 0.1 164972 19784 ? Dl 23:43 0:00 unicorn_bin worker[0] -D -c /apps/app28/current/config/unicorn.rb -E production sysadmin 11596 0.3 0.1 169660 23240 ? Dl 23:43 0:00 unicorn_bin worker[0] -D -c /apps/app30/current/config/unicorn.rb -E production sysadmin 11510 0.7 0.4 210316 49828 ? Dl 23:42 0:01 unicorn_bin worker[0] -D -c /apps/app27/current/config/unicorn.rb -E production sysadmin 11488 0.7 0.4 215252 53172 ? Dl 23:42 0:01 unicorn_bin worker[0] -D -c /apps/app26/current/config/unicorn.rb -E production sysadmin 10790 0.7 0.4 363380 53748 ? Sl 23:35 0:05 unicorn_bin worker[0] -D -c /apps/app7/current/config/unicorn.rb -E production sysadmin 9639 0.5 0.4 372832 56308 ? Sl 23:23 0:06 unicorn_bin worker[1] -D -c /apps/app16/current/config/unicorn.rb -E production sysadmin 10217 0.5 0.4 437220 57072 ? Dl 23:29 0:05 unicorn_bin worker[0] -D -c /apps/app21/current/config/unicorn.rb -E production sysadmin 10442 0.6 0.4 371012 59192 ? Sl 23:31 0:06 unicorn_bin worker[0] -D -c /apps/app9/current/config/unicorn.rb -E production sysadmin 10521 0.7 0.5 371792 63568 ? Sl 23:32 0:06 unicorn_bin worker[0] -D -c /apps/app19/current/config/unicorn.rb -E production sysadmin 10674 0.7 0.5 356400 65540 ? Sl 23:34 0:05 unicorn_bin worker[0] -D -c /apps/app16/current/config/unicorn.rb -E production sysadmin 11102 1.1 0.5 432420 65560 ? Sl 23:38 0:05 unicorn_bin worker[0] -D -c /apps/app20/current/config/unicorn.rb -E production sysadmin 10611 0.9 0.5 372992 67856 ? Sl 23:33 0:06 unicorn_bin worker[0] -D -c /apps/app13/current/config/unicorn.rb -E production sysadmin 11089 1.1 0.5 365200 70340 ? Sl 23:37 0:05 unicorn_bin worker[0] -D -c /apps/app17/current/config/unicorn.rb -E production sysadmin 11427 1.0 0.5 295068 72612 ? Dl 23:42 0:02 unicorn_bin worker[0] -D -c /apps/app32/current/config/unicorn.rb -E production sysadmin 11288 0.8 0.5 298980 73360 ? Dl 23:40 0:02 unicorn_bin worker[0] -D -c /apps/app10/current/config/unicorn.rb -E production sysadmin 11170 1.1 0.6 363160 74384 ? Sl 23:38 0:05 unicorn_bin worker[0] -D -c /apps/app11/current/config/unicorn.rb -E production sysadmin 10588 0.9 0.6 493632 75100 ? Dl 23:33 0:07 unicorn_bin worker[0] -D -c /apps/app14/current/config/unicorn.rb -E production sysadmin 11106 1.2 0.6 364900 81756 ? Sl 23:38 0:05 unicorn_bin worker[0] -D -c /apps/app12/current/config/unicorn.rb -E production sysadmin 11178 1.2 0.7 361828 88628 ? Sl 23:38 0:05 unicorn_bin worker[0] -D -c /apps/app23/current/config/unicorn.rb -E production sysadmin 11409 1.4 0.7 349048 88840 ? Dl 23:41 0:03 unicorn_bin worker[0] -D -c /apps/app29/current/config/unicorn.rb -E production sysadmin 11400 1.7 0.7 355636 93176 ? Dl 23:41 0:04 unicorn_bin worker[0] -D -c /apps/app25/current/config/unicorn.rb -E production sysadmin 11175 0.8 0.7 322132 95716 ? Dl 23:38 0:03 unicorn_bin worker[0] -D -c /apps/app6/current/config/unicorn.rb -E production sysadmin 11252 0.9 0.7 322268 95880 ? Dl 23:39 0:03 unicorn_bin worker[0] -D -c /apps/app22/current/config/unicorn.rb -E production sysadmin 11169 1.2 0.7 362224 97484 ? Sl 23:38 0:05 unicorn_bin worker[0] -D -c /apps/app15/current/config/unicorn.rb -E production sysadmin 10993 1.3 0.8 386516 103752 ? Sl 23:37 0:07 unicorn_bin worker[1] -D -c /apps/app25/current/config/unicorn.rb -E production sysadmin 11047 0.8 0.8 354136 106652 ? Dl 23:37 0:04 unicorn_bin worker[0] -D -c /apps/app18/current/config/unicorn.rb -E production sysadmin 10555 1.2 0.8 469496 109208 ? Sl 23:32 0:10 unicorn_bin worker[0] -D -c /apps/app5/current/config/unicorn.rb -E production sysadmin 11282 1.8 0.9 380480 114992 ? Sl 23:40 0:06 unicorn_bin worker[0] -D -c /apps/app8/current/config/unicorn.rb -E production sysadmin 11210 1.0 0.9 343824 117296 ? Dl 23:39 0:04 unicorn_bin worker[0] -D -c /apps/app4/current/config/unicorn.rb -E production sysadmin 10897 1.6 1.0 467556 123780 ? Sl 23:36 0:10 unicorn_bin worker[0] -D -c /apps/app3/current/config/unicorn.rb -E production sysadmin 11027 1.9 1.1 470524 141648 ? Sl 23:37 0:10 unicorn_bin worker[0] -D -c /apps/app2/current/config/unicorn.rb -E production sysadmin 10784 1.6 1.1 470824 145132 ? Sl 23:35 0:11 unicorn_bin worker[0] -D -c /apps/app24/current/config/unicorn.rb -E production
I've been investigating this all day and I still havent been able to figure out what the problem is. Something is eating 1-1.5GB of memory per hour and I cant determine what the source is. Nothing suspicious is coming up in top, slabtop, atop or htop. It looks like I'll have to bite the bullet and reinstall if I cant figure it out by tomorrow night.
I want to dual-boot, so I need to format a partition as NTFS. According to my research, I need to install package ntfsprogs and then use mkntfs to format the partition. But I can't find ntfsprogs using Synaptic. I searched both Google and this forum for information. Here is my sources.lst: Code: Select all# deb cdrom:[Debian GNU/Linux 9.0.0 _Stretch_ - Official amd64 DVD Binary-1 20170617-13:08]/ stretch main # deb cdrom:[Debian GNU/Linux 9.0.0 _Stretch_ - Official amd64 DVD Binary-1 20170617-13:08]/ stretch main # Line commented out by installer because it failed to verify: deb http://security.debian.org/debian-security/ stretch/updates main contrib non-free # Line commented out by installer because it failed to verify: # deb-src http://security.debian.org/debian-security/ stretch/updates main # stretch-updates, previously known as 'volatile' # A network mirror was not selected during install. The following entries # are provided as examples, but you should amend them as appropriate # for your mirror of choice. deb http://deb.debian.org/debian/ stretch-updates main contrib non-free # deb-src http://deb.debian.org/debian/ stretch-updates main # stretch-backports, previously on backports.debian.org # A network mirror was not selected during install. The following entries # are provided as examples, but you should amend them as appropriate # for your mirror of choice. deb http://deb.debian.org/debian/ stretch-backports main contrib non-free # deb-src http://deb.debian.org/debian/ stretch-backports main deb http://deb.debian.org/debian/ stretch main contrib non-free Caitlin
Can't you use GParted?
Hello, I just run "apt-get install thunderbird" on a freshly installed Stretch and got a strange mirror in the output: Code: Select allReading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: lightning Suggested packages: calendar-google-provider fonts-lyx apparmor The following NEW packages will be installed: lightning thunderbird 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 32.6 MB of archives. After this operation, 91.1 MB of additional disk space will be used. Do you want to continue? [Y/n] Get:2 http://ftp.fi.debian.org/debian stretch/main amd64 lightning amd64 1:45.8.0-3 [1,159 kB] Get:1 http://gemmei.ftp.acc.umu.se/debian stretch/main amd64 thunderbird amd64 1:45.8.0-3 [31.4 MB] Fetched 32.6 MB in 22s (1,448 kB/s) .... .... I haven't configured gemmei.ftp.acc.umu.se anywhere. Where does it come from and why did apt-get use it? This is my sources.list: Code: Select all# # deb cdrom:[Debian GNU/Linux 9.0.0 _Stretch_ - Official amd64 DVD Binary-1 20170617-13:08]/ stretch main deb http://ftp.fi.debian.org/debian/ stretch main non-free deb-src http://ftp.fi.debian.org/debian/ stretch main non-free deb http://security.debian.org/debian-security stretch/updates main deb-src http://security.debian.org/debian-security stretch/updates main # stretch-updates, previously known as 'volatile' # deb http://ftp.fi.debian.org/debian/ stretch-updates main deb-src http://ftp.fi.debian.org/debian/ stretch-updates main
A quick google of that web address makes me think it is a repository (or archive) for the non-free loaded iso and if that is the version you used to install that would explain why it is using it. You could also check any files in /etc/apt/sources.list.d/ to see if they contain the repository in question and if you wanted to could remove it to prevent it being used again (at your own risk of course )
http://imgur.com/a/GjcuK For some reason attachments doesn't work. cant add the image. here's what itt sorta looks like __________________________________ Authentication Required Authentication is required to mount WDC WD10EZEX-1234 (/dev/sda6) Administrator Password:_____ Sorry, that didn't work. Please try again _____________________________________ i tried pam.d in /etc. nothing there. my password works for sudo .
It looks like you will need to enter the root password, although I cannot guess exactly what you are doing because you do not say. If you are issuing a command in a terminal try using sudo (as you said that does work).
I tried searching for solution, but none worked. So, hope someone here can help. On debian desktop, I am running stretch. These are installed: Code: Select alllibimobiledevice-dev 1.2 libimobiledevice-utils 1.2 libimobiledevice6 libplist-dev 1.12 libplist3 1.12 ifuse 1.1.2 gvfs 1.30.4-1 When I connect ipad (lightning to usb) to debian, the ipad icon shows on my desktop (gnome). 2 items show on /home/documents 1. Documents on ipad 2. iPad (as a camera) when I click on iPad, it says folder is empty when I click on Documents on ipad Code: Select allUnable to access "Documents on ipad" Unhandles lockdown error (-3) This is the recommended solution when I google the web, but it does not work. I hope someone here has the know how and help. TIA
oldboy wrote:I tried searching for solution, but none worked. So, hope someone here can help. On debian desktop, I am running stretch. These are installed: Code: Select alllibimobiledevice-dev 1.2 libimobiledevice-utils 1.2 libimobiledevice6 libplist-dev 1.12 libplist3 1.12 When I connect ipad (lightning to usb) to debian, the ipad icon shows on my desktop (gnome). 2 items show on /home/documents 1. Documents on ipad 2. iPad (as a camera) when I click on iPad, it says folder is empty when I click on Documents on ipad Code: Select allUnable to access "Documents on ipad" Unhandles lockdown error (-3) This is the recommended solution when I google the web, but it does not work. I hope someone here has the know how and help. TIA I dunno diddly about iphone, but Google suggests that you stopped searching prematurely. When I Google your error message, I get a ton of hits. Of course, can't vouch for any of the answers, since I don't have an iphone. But I notice that the very first one says you also need to have the ifuse package installed. Lots more suggestions here: https://www.google.com/search?q=Unhandl ... error+(-3)
Good afternoon. I installed Debian Testing (Stretch) with gnome and activated the desktop in gnome tweak tool. But whenever I double click my "home" shortcut nothing will happen. However, if I open nautilus by any other method it will open multiple the number of times i clicked my "home" from the Desktop. No records appear in my syslog while I'm opening nautilus from the Desktop. Also, the Desktop icons take about 10 sec long to appear after booting. Any ideas? Should I wait for the full release of Debian Stretch? Thanks !! Here is a "grep nautilus /var/log/syslog" after starting a new session: Code: Select allJun 12 18:59:27 Commando-Linux org.gnome.Nautilus[1319]: Initializing nautilus-dropbox 2015.10.28 Jun 12 18:59:27 Commando-Linux nautilus[2352]: Could not establish a connection to Tracker: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Tracker1 was not provided by any .service files Jun 12 18:59:27 Commando-Linux nautilus[2352]: Could not establish a connection to Tracker: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Tracker1 was not provided by any .service files Jun 12 19:14:55 Commando-Linux nautilus-autostart.desktop[4312]: Initializing nautilus-dropbox 2015.10.28 Jun 12 19:15:20 Commando-Linux nautilus-deskto[4312]: Unable to create File Manager freedesktop proxy: Error calling StartServiceByName for org.freedesktop.FileManager1: Timeout was reached Jun 12 19:15:20 Commando-Linux nautilus-deskto[4312]: Can not calculate _NET_NUMBER_OF_DESKTOPS Jun 12 19:15:20 Commando-Linux nautilus-deskto[4312]: Can not calculate _NET_NUMBER_OF_DESKTOPS Jun 12 19:15:20 Commando-Linux nautilus-deskto[4312]: Can not get _NET_WORKAREA Jun 12 19:15:20 Commando-Linux nautilus-deskto[4312]: Can not determine workarea, guessing at layout Jun 12 19:16:31 Commando-Linux nautilus-autostart.desktop[4894]: Initializing nautilus-dropbox 2015.10.28 Jun 12 19:16:55 Commando-Linux nautilus-deskto[4894]: Unable to create File Manager freedesktop proxy: Error calling StartServiceByName for org.freedesktop.FileManager1: GDBus.Error:org.freedesktop.DBus.Error.TimedOut: Failed to activate service 'org.freedesktop.FileManager1': timed out EDIT: Disabling and enabling "Icons on Desktop" on gnome tweak tool seems to fix it temporarily
What about desktop launchers you add yourself? Do they work correctly?
Heloo! I'm trying to create a startup script but with no sucess. I tried everything, or almost. Here is the content of the script (disableCaps.sh): Code: Select all#!/bin/bash xmodmap -e 'clear Lock'& xmodmap -e 'keycode 66 = F15'& I added it to Startup Application and nothing. I tried adding only the command : "xmodmap -e 'clear Lock' && xmodmap -e 'keycode 66 = F15'" and nop! (note: I have done this before like 2 years ago and it worked!) I go to "~/.config/autostart/" and I see the file with the content: Code: Select all[Desktop Entry] Comment= Terminal=false Name=Disable Caps-Lock Exec=/home/silva/Scripts/disableCaps.sh Type=Application X-GNOME-Autostart-enabled=true NoDisplay=false Hidden=false Name[en_US]=Disable Caps-Lock Comment[en_US]= X-GNOME-Autostart-Delay=4 I followed this tutorial: https://debian-administration.org/artic ... ith_Debian and it didn't run as well. Maybe because update-rc.d is outdated ? I dunno I have applications like : dropbox, guake and transmition running at startup without any problem... The script/ command runs fine on the terminal. I as well gave the script permissions to run. I'm using Cinnamon Also, thanks!
Your desktop file Exec entry should begin with sh, i.e. sh /home/silva/Scripts/disableCaps.sh
Since the last ten years I've helped a friend with a Debian system. I tend to update it once or twice a year and it has run stretch since January 2017. About a month a ago there were some random freezes of the entire system but I didn't get the time to look at until now. The system ran LXDE and I've tried xfce and KDE too, but the crashes are still there. It is a low-end system w an old-ish AMD CPU and Radeon GPU and 2GB RAM. The computer is about five years old and as clean as new inside. I looked at dmesg , journalctl and syslog but could not see anything obvious. What else could I look at?
shabbythought wrote:About a month a ago there were some random freezes of the entire system but I didn't get the time to look at until now. The system ran LXDE and I've tried xfce and KDE too, but the crashes are still there. We're going to need a more detailed explanation of this part.
I'm running Stretch on several machines. After a recent update on one machine I am no longer able to access Debian repositories (I changed sources.list several times). I'm getting the classic "public key not found" error messages for ALL archives in the list. I'm using the exact same sources.list file on other machines and there is no problem. I reinstalled the debian-archive-keyring package but continue to receive the same error messages. I have no idea how to proceed from here.
Maybe this is a good place to start: https://lists.debian.org/debian-user/20 ... 00267.html
Hi everyone! Hope you're all having a nice life! Need some help here, I'm trying to install Debian 9 in virtualbox but the installer assistant returns an error about "this not a debian cd" or something like that, which is curious cause I'm writing from the live version and it works fine, so I don't know what's going on. Has anyone run into this problem too? I think maybe I should download it again but if someone knows of a fix. Thanks in advance for your answers.
There have been a few posts recently for this problem, it would appear there is a bug in the installer of the live-cd images which is currently being worked on and will hopefully get fixed sometime soon. Best advice is to use the live-cd to check everything works ok and then install using the netinst iso image.
How do you install ms ttf-corefonts? what is the command?
Code: Select allsudo apt-get install ttf-mscorefonts-installer
I just had a problem on installing steam, this is what I got from terminal root@debian:~# apt-get install steam Reading package lists... Done Building dependency tree Reading state information... Done Package steam is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'steam' has no installation candidate I don't know why this error has occurred, but all I know is I have modified my sources list by adding "contrib" and "non-free" behind each "main"(s) and updated by "apt-get update" command a couple minutes ago. I am missing my strife so bad, so hopefully you guys can help.. I run debian stretch 64 bit, a stable release one under gnome's roof.. Thank you for further notices and guidance
This is how I did it, it works. https://linuxconfig.org/how-to-install- ... etch-linux It's right there on Google.
Hi guys! I haven't changed any settings....just put on the computer today and no internet.... I can ping 8.8.8.8 no problems... I have the following ifconfig: Code: Select alleth0 Link encap:Ethernet HWaddr 68:05:ca:46:56:36 inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0 inet6 addr: fe80::6a05:caff:fe46:5636/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:58 errors:0 dropped:3 overruns:0 frame:0 TX packets:114 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:4377 (4.2 KiB) TX bytes:34219 (33.4 KiB) Interrupt:19 Memory:fddc0000-fdde0000 eth1 Link encap:Ethernet HWaddr 90:e2:ba:d8:a7:4e inet addr:192.168.10.254 Bcast:192.168.10.255 Mask:255.255.255.0 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:469 errors:0 dropped:0 overruns:0 frame:0 TX packets:469 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:40690 (39.7 KiB) TX bytes:40690 (39.7 KiB) vmnet1 Link encap:Ethernet HWaddr 00:50:56:c0:00:01 inet addr:192.168.143.1 Bcast:192.168.143.255 Mask:255.255.255.0 inet6 addr: fe80::250:56ff:fec0:1/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:62 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) vmnet8 Link encap:Ethernet HWaddr 00:50:56:c0:00:08 inet addr:192.168.245.1 Bcast:192.168.245.255 Mask:255.255.255.0 inet6 addr: fe80::250:56ff:fec0:8/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:61 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) I have set my network cards as follows: Code: Select all# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback #Network Interface My Internet Network auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1 dns-nameservers 192.168.1.1 8.8.8.8 8.8.4.4 #Clonezilla auto eth1 iface eth1 inet static address 192.168.10.254 netmask 255.255.255.0 When I last shut the computer it Internet was working OK....something about dns being overridden by another setting? bookie
bookie wrote:auto eth0 ..... dns-nameservers 192.168.1.1 8.8.8.8 8.8.4.4 (1) Have you installed any graphical desktop environment and NetworkManager? (2) Is the package resolvconf installed to read dns-nameservers from /etc/network/interfaces? (3) If the answer to (1) and (2) are both no, /etc/resolv.conf will be a static file. Check it to see if you've appointed a nameserver. bookie wrote:When I last shut the computer it Internet was working OK Is this the first time you shutdown the computer since Debian is installed?
Code: Select allA error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://http.debian.net wheezy-backports Release Huh? Code: Select allDebian Archive Automatic Signing Key (6.0/squeeze) <ftpmaster@debian.org> W: Failed to fetch http://http.debian.net/debian/dists/wheezy-backports/Release W: Some index files failed to download. They have been ignored, or old ones used instead.
Hmm. Seems that during the netinst, it automatically inserted an incorrect source for wheezy-backports. Code: Select alldeb http://http.debian.net/debian/ wheezy-backports main This is incorrect. The proper source can be found at http://backports.debian.org/ I simply updated it to the source listed on that site and the error went away. Prior to that I had not touched my sources.list after install.
Hello everyone. I'm starting in this wonderful linux world, with debian, off course. But I already screwed it up. what I had: -a debian stable version with MATE working like a charm. what I did: - replaced "stable" or "Jessie" with "testing" in /etc/apt/sources.list - sudo apt-get update - sudo apt-get upgrade something like 235MB were downloaded and a lot of packages updated, I went AFK for a while and when I got back: this happened. A black screen, but when I moved the mouse or pressed a key, the image came out for an instant. I waited a while and then just turn the machine off from the case button. the result: now, when debian boots, the user login prompt appears, it looks just fine, but after I enter my credentials, nothing happens, just black screen and pointer. ctrl+alt+f1 takes me to tty, system is working, but I have no clue how to fix (or even what did I break) * as a side note, grub now looks awfull, it had a nice splash and graphics, now it's blue and white (like non-graphical debian installation). Any advice will be appreciated.
You might look here: https://journalxtra.com/linux/desktop-r ... ktop-back/ Scroll down to: Solution Seven: switch to a basic graphics driver If you get things back you can maybe install your proprietary graphics driver again.
Hello! There's a problem that has been occurring in my Debian testing system for about two months now. Some apps such as Mirage, Thunar and Audacity tend to freeze occasionally. The freeze usually lasts for about 5 to 10 seconds, during which time the frozen window won't refresh or respond to mouse or keyboard input. One test case that seems to reproduce the problem rather predictably goes like this: 1. Open some directory in Thunar that contains a lot of image files, like more than 100. 2. Open one of the images in Mirage. 3. Launch Gimp and open some image there. It doesn't have to be from the same directory. 4. Start browsing the images in Mirage by stepping forward one image at a time (pressing the down arrow key). 5. At some point, Mirage freezes, and wakes up after five to ten seconds. Any further keypresses get buffered, so that when the freeze is over, Mirage jumps forward several images. I haven't been able to verify if Gimp always becomes similarly unresponsive at the same time as Mirage, but I've seen it happen at least on some occasions. When Gimp is not running, Mirage seems to work without any problem. The issue is much worse in Audacity, where the freezing is more frequent and is not affected by Gimp. One symptom in Audacity is that the playback of four track audio stops suddenly and resumes a couple of seconds later with the tracks playing out of sync. However, I have no idea if this is even caused by the same problem. My system: - OS: dual booting Debian stretch (Linux 4.9.0-2-amd64) and Windows 7 Professional - CPU: Intel Core i5-6400 2.70GHz - GPU: Asus GeForce GTX750Ti 2GB (running the proprietary nvidia driver) - RAM: Kingston 8GB 2400MHz DDR4 - Motherboard: ASUS H170M-PLUS LGA1151 - Hard drives: one 250GB SSD + one 250GB HDD Now, I know I need to narrow this down, but I don't really know where to look. Things I have tried: 1. If I run Mirage and Gimp from a terminal, neither of them output any error messages when the freeze occurs. 2. I thought there might be something wrong with my WM or DE (Xfce), so I installed jwm and tried Mirage + Gimp there. The same freeze happened. 3. It seemed that the problem had first appeared after the Linux kernel was upgraded from 4.8.0 to 4.9.0 in late January, so I booted 4.8.0, but that made no difference either. I haven't tried any earlier kernel version, because I'm fairly certain that at least Audacity worked perfectly in early January, when running the 4.8.0 kernel. There must be some log somewhere that I could look at, but I don't know where. I've tried `journalctl -b --no-pager`, `dmesg` and even `dbus-monitor --session`, but nothing comes up. I have also installed mcelog and it is running as a daemon, but `/var/log/mcelog` stays empty. There's nothing in `/var/log/Xorg.0.log` or `~/.xsession-errors` either. I'm worried this could be a hardware issue. I have seen Thunar sometimes freeze in a similar fashion when navigating to another directory, but this is very difficult to reproduce. I bought the PC in early 2016 and it used to run both Debian and Windows flawlessly for a year. I've got an SSD and and an HDD, and they both contain ext4 partitions as well as NTFS partitions. Debian's root and Windows are on the SSD; my /home is on the HDD. I have run `fsck` on the ext4 partitions and checked the NTFS partitions using ScanDisk (or whatever it's called) from Windows, and found no errors. There's also a strange crashing problem in Windows 7 that I think may have started happening around the same time the first of these freezes occurred in Debian. Windows just reboots the machine without warning, out of the blue, when I'm not even running any particularly demanding software. This has happened maybe four or five times. Debian never completely crashes on me, so I'm not sure this is related. Anyway, I think I should run memtest86+ as my next step. Is there anything else I could do to locate the source of the freezes? Please let me know what other information I could provide. I'm sorry this post is rather long, but I didn't want to sound like "Debian keeps freezing. Please help me fix it." Thank you for your help and patience!
Just to be sure, you could do a memtest. You could also try and see if some hard stressing (like with package stress or other similar) causes these freezes. Also, smart test. What i/o-scheduler are you using?
Hi, I've installed certbot a few months ago successfully in Debian and became a big fan, but now it keeps me giving the same error (see below) every time I try to install it. I'm using Debian 8.8 64 bit. In the two last weeks I've had to set up several servers and websites and had to use a recente Ubuntu server version, because of this. Ubuntu is great, and based on Debian, but I usually prefer Debian stable, especially on server installs. I understand this is the bug #861513, which is still open: https://bugs.debian.org/cgi-bin/bugrepo ... bug=861513 However, having googled then and now, I keep seeing some workarounds for other distros, like Arch, for example, but not for Debian. Could there be a solution for solving this? Here's what I've done: I edited /etc/apt/sources.list and added this line: deb http://ftp.debian.org/debian jessie-backports main #apt-get update #apt-get install python-certbot-apache -t jessie-backports # certbot --apache Traceback (most recent call last): File "/usr/bin/certbot", line 6, in <module> from pkg_resources import load_entry_point File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 3019, in <module> @_call_aside File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 3003, in _call_aside f(*args, **kwargs) File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 3032, in _initialize_master_working_set working_set = WorkingSet._build_master() File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 655, in _build_master ws.require(__requires__) File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 963, in require needed = self.resolve(parse_requirements(requirements)) File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 849, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'ndg-httpsclient' distribution was not found and is required by requests Any ideas?
How about Code: Select allapt-get install python-ndg-httpsclient -t jessie-backports
I am currently running Jessie. In fact i recently installed Jessie on a second drive so that I can use it as my experimental platform for upgrading. In my Jessie sources list I have included contrib, non-free and backports. Code: Select alldeb http://ftp.us.debian.org/debian/ jessie main contrib non-free deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free deb http://security.debian.org/ jessie/updates main contrib non-free deb-src http://security.debian.org/ jessie/updates main contrib non-free # jessie-updates, previously known as 'volatile' deb http://ftp.us.debian.org/debian/ jessie-updates main contrib non-free deb-src http://ftp.us.debian.org/debian/ jessie-updates main contrib non-free # backports deb http://ftp.debian.org/debian jessie-backports main contrib non-free My question are this: Should I remove contrib, non-free and backports before doing the upgrade? I read https://www.debian.org/releases/testing ... -upgrading and do not see any reference to my question. maybe I missed something.
My bad for not looking through all of the posts. My answer is probably found in this one http://forums.debian.net/viewtopic.php?f=10&t=133238 Consider this solved.
I'm trying to install a font package that is not available through the recommended sources (Debian Repositories) and according to the sources I've googled, I should have a .font folder in my user space. Which seems to be absent. Next course of action is to copy the font files to /usr/share/fonts. Yes? No? Can somebody spare 10 seconds to enlighten me?
In my user space I have .fonts.conf which I understand and can adjust as I see fit. Recently, something installed a directory, .font.config which contains four lines identified as le64.cache-3 fronted with long lines of assorted numbers & letters which I don't understand. Since my fonts look okay I leave them alone. Look up .fonts.conf. You may have to install it. There is also a long thread here on infinity fonts which might be of help. This should be a decent reference: https://wiki.debian.org/Fonts
I'm tryingto install Gimp 2.8.22 from the source code but every time that I configure it ./configure, it says: configure: error: Package requirements (gegl-0.2 >= 0.2.0) were not met: No package 'gegl-0.2' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GEGL_CFLAGS and GEGL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. I have installed the last version of gegl and also I tried with older versions. Sorry if my english isn't good.
Este es un foro de habla inglesa.
Hello, I've tried to read some webpages with instructions on how to install Sid packages on Jessie, but in this case there are some dependencies which I'm not sure wether or not will mess up with my stable system. So, I was wandering if someone could help me installing Gthumb 3.3.4 or later on Jessie (which uses 3.3.1). Regards
efrpcabo wrote:So, I was wandering if someone could help me installing Gthumb 3.3.4 or later on Jessie (which uses 3.3.1). No. Don't even bother trying. If you do it anyway, you get to keep all the pieces, and we get to laugh at you. You can, however, backport them to stable yourself...
Hello, Can somebody please confirm if this sources.list are alright for Debian Stretch (testing)? deb http://ftp.debian.org/debian/ stretch main contrib non-free deb-src http://ftp.debian.org/debian/ stretch main contrib non-free deb http://ftp.debian.org/debian/ stretch-updates main contrib non-free deb-src http://ftp.debian.org/debian/ stretch-updates main contrib non-free deb http://security.debian.org/ stretch/updates main contrib non-free deb-src http://security.debian.org/ stretch/updates main contrib non-free I'm moving from Debian Jessie (stable) to Debian Stretch, doing with a completely fresh install. My concern is related to security. All things equal, will I have a similar level of security with Stretch, using this sources.list, as I had with Jessie? I understand that Jessie is the stable branch, so maybe it will be unbeatable. But, I'd like to know your opinion.
Code: Select alldeb http://security.debian.org/ stretch/updates main contrib non-free deb-src http://security.debian.org/ stretch/updates main contrib non-free Security only has main ---not contrib and non-free.
Hello everyone! I'm on Debian Stretch and I'm trying to approach the framebuffer for the first time, just for fun. My final aim is to run framebuffer applications inside tmux. Here I've seen that the best way to do this is to run tmux inside fbterm (at least for Arch), so i installed fbterm from repos. The problem is that no framebuffer application seems to work inside fbterm, whereas they work perfectly fine outside fbterm both in X and in tty. For instance when i run w3m (with w3m-img) i can't see any image in any website, while i see them running w3m in a plain tty. Another example is running fbi in tty, which works out of the box in a simple tty shell, but if i run Code: Select allfbi image.jpg or Code: Select allfbi -d /dev/fb0 image.jpg I obtain ioctl VT_GETSTATE: Inappropriate ioctl for device (not a linux console?) I have the same issue running fbterm as root. Just for clarity, everything I tried so far is outside of tmux. Am I missing something? Thanks a lot!
I'm not sure about the root cause of your problem, but I myself had also found fbi to be problematic under fbterm. Instead, I use fbv. And to workaround that fbv does not have a Debian package, I'm using the archlinux package on Debian 9. Just unpack and put the binary executable into your $PATH. You can also build it yourself should you encounter any ABI or other library imcompatibilities under older Debian versions. As for w3m-img, see this unresolved bug report https://bugs.debian.org/cgi-bin/bugrepo ... bug=590668 for a workaround.
Solution in final post. System was reproducing, over and over again, an unusual dhclient error message, which decided to run constantly because of a lingering sendmail file. The clue was in htop's "red bars" (kernel threads), which signaled that the issue was probably deeper than a single process. Once that file was removed, the system worked as expected. My netbook, which functions as a small, unimpressive project "server," is reporting an abnormally high cpu load on the core and virtual core: between 50-60%, and not subsiding. On two-to-five-minute intervals, I hear the little fan whirr for a few seconds and subside. All of that would be fine, if I knew which program was consuming all the resources, but htop reports that only four programs are using cpu, and the values are ~4%, 2%, 1%, and 1%. Rebooting changed nothing. I'm looking for suggestions for narrowing the source of this issue.
What program is showing the high cpu load?
I would like to ask how I can further optimize QEMU to run Windows XP as guest. I am using QEMU version 1:2.8+dfsg-3. To start the guest (Windows XP), I use the command: Code: Select all/usr/bin/qemu-system-i386 -drive format=raw,file=win_xp.img -enable-kvm -machine type=pc,accel=kvm & This runs the virtual machine in the background. The above give quite a good performance but Windows XP says no graphics drivers are being used. Can I further improve the graphics performance? I also need the VM to have access to a USB oscilloscope. I used: Code: Select all-usb -device usb-host With the latter, the host OS denied the VM access to USB telling me libusb couldn't grant permission. Thanks.
Answer excluding improving graphics beyond their current state. I succeeded to have the Windows XP client recognise my USB oscilloscope but the speed of communication is unsatisfactory implying further time dedicated to solve is issue is more or less a waste of time. The reason for the client not being able to access USB devices was a permissions problem as udev does not give all other users permission to write to USB device files under /dev/bus/usb/00x/. I 'solved' the issue temporarily by changing any USB device files' permissions from o664 to o666. The command to bring up Windows XP running under QEMU was modified to: Code: Select all/usr/bin/qemu-system-i386 -drive format=raw,file=/home/edbarx/qemu/win_xp.img -enable-kvm -machine type=pc,accel=kvm -usb -usbdevice host:001.009 & host:001.009 mean USB bus 1, device name 009. For some weird reason, udev increments this number whenever a USB device is replugged. Probably the reason is to avoid having to check which numbers have been freed. I will keep the virtual machine installation of Windows XP to play its legacy games.
Hello here i need your help in that issue on my Debian Jessie, after apt-get update i have that errors, see below error codes and help to solve it please. Thanks in advanced. Code: Select allIgn http://httpredir.debian.org jessie InRelease Hit http://httpredir.debian.org jessie Release.gpg Hit http://httpredir.debian.org jessie Release Hit http://httpredir.debian.org jessie/main amd64 Packages Hit http://httpredir.debian.org jessie/contrib amd64 Packages Hit http://httpredir.debian.org jessie/non-free amd64 Packages Hit http://httpredir.debian.org jessie/contrib Translation-en Hit http://httpredir.debian.org jessie/main Translation-en Hit http://httpredir.debian.org jessie/non-free Translation-en Ign http://mozilla.debian.net jessie-backports InRelease Hit http://mozilla.debian.net jessie-backports Release.gpg Hit http://mozilla.debian.net jessie-backports Release Ign http://deb.debian.org stable InRelease Hit http://ftp.debian.org jessie-backports InRelease Ign http://mirrors.kernel.org jessie InRelease Ign http://deb.debian.org stable-updates InRelease Hit http://security.debian.org jessie/updates InRelease Hit http://mozilla.debian.net jessie-backports/firefox-release amd64 Packages Get:1 http://ftp.debian.org jessie-backports/main Sources/DiffIndex [27.8 kB] Hit http://mirrors.kernel.org jessie-updates InRelease Ign http://deb.debian.org stable/updates InRelease Ign http://deb.debian.org stable Release.gpg Get:2 http://ftp.debian.org jessie-backports/main amd64 Packages/DiffIndex [27.8 kB] Hit http://mirrors.kernel.org jessie Release.gpg Ign http://deb.debian.org stable-updates Release.gpg Get:3 http://ftp.debian.org jessie-backports/main Translation-en/DiffIndex [27.8 kB] Ign http://mozilla.debian.net jessie-backports/firefox-release Translation-en_US Ign http://deb.debian.org stable/updates Release.gpg Ign http://mozilla.debian.net jessie-backports/firefox-release Translation-en Get:4 http://mirrors.kernel.org jessie-updates/main amd64 Packages/DiffIndex [7,900 B] Ign http://deb.debian.org stable Release Get:5 http://mirrors.kernel.org jessie-updates/main Translation-en/DiffIndex [2,704 B] Ign http://deb.debian.org stable-updates Release Hit http://security.debian.org jessie/updates/main Sources Hit http://mirrors.kernel.org jessie Release Ign http://deb.debian.org stable/updates Release Hit http://security.debian.org jessie/updates/main amd64 Packages Hit http://mirrors.kernel.org jessie-updates/main Sources Hit http://security.debian.org jessie/updates/main Translation-en Hit http://mirrors.kernel.org jessie/main Sources Hit http://mirrors.kernel.org jessie/main amd64 Packages Hit http://mirrors.kernel.org jessie/main Translation-en Err http://deb.debian.org stable/main Sources 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable/contrib Sources 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable/main amd64 Packages 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable/contrib amd64 Packages 404 Not Found [IP: 149.20.4.15 80] Ign http://deb.debian.org stable/contrib Translation-en_US Ign http://deb.debian.org stable/contrib Translation-en Ign http://deb.debian.org stable/main Translation-en_US Ign http://deb.debian.org stable/main Translation-en Err http://deb.debian.org stable-updates/main Sources 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable-updates/contrib Sources 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable-updates/main amd64 Packages 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable-updates/contrib amd64 Packages 404 Not Found [IP: 149.20.4.15 80] Ign http://deb.debian.org stable-updates/contrib Translation-en_US Ign http://deb.debian.org stable-updates/contrib Translation-en Ign http://deb.debian.org stable-updates/main Translation-en_US Ign http://deb.debian.org stable-updates/main Translation-en Err http://deb.debian.org stable/updates/main Sources 404 Not Found [IP: 149.20.4.15 80] Err http://deb.debian.org stable/updates/main amd64 Packages 404 Not Found [IP: 149.20.4.15 80] Ign http://deb.debian.org stable/updates/main Translation-en_US Ign http://deb.debian.org stable/updates/main Translation-en Fetched 94.0 kB in 35s (2,655 B/s) W: Failed to fetch http://deb.debian.org/dists/stable/main/source/Sources 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable/contrib/source/Sources 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable/main/binary-amd64/Packages 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable/contrib/binary-amd64/Packages 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable-updates/main/source/Sources 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable-updates/contrib/source/Sources 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable-updates/main/binary-amd64/Packages 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/dists/stable-updates/contrib/binary-amd64/Packages 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/debian-secruity/dists/stable/updates/main/source/Sources 404 Not Found [IP: 149.20.4.15 80] W: Failed to fetch http://deb.debian.org/debian-secruity/dists/stable/updates/main/binary-amd64/Packages 404 Not Found [IP: 149.20.4.15 80] E: Some index files failed to download. They have been ignored, or old ones used instead.
Jessie doesn't use http://deb.debian.org. You should use http://ftp.debian.org instead.
UPDATE: It was a wrong character in the /etc/passwd file --------- Hi all I'd really like to have your advice. I'm pretty lost here. I have a Linode debian installation that I was tinkering with for the last months. It was working and all, until yesterday when I couldn't log in to any of the users no more. They were all disabled and I had to unlock + change their password. I'm not sure what caused it. The things I did just before: 1. Tried to chown/var/www/ to www-data 2. in /etc/passwd, edited to this line "www-data33:33:www-data:/var/www:/bin/bash", so I can open the shell => 1. Chronologically, as soon as I did it, I couldn't use the users no more 2. Using Lish, I could find out that the root/www-data/any new user I opened were locked out as soon as I rebooted the machine 3. Moreover, some of the directories are not visible to me, no more, like "/var/www/" when accessed via root (so, maybe the user altogether restored to some initial state?) 4. SSH keys are lost after reboot - the ~/.ssh/authorized_keys is empty again 5. Oh, and the sites still work.. meaning the files and stuff are still there ---- Some mounting information: Filesystem Type Size Used Avail Use% Mounted on tmpfs tmpfs 1.6G 1.1M 1.6G 1% /media/ramdisk /dev/sdh iso9660 160M 160M 0 100% /media/sdh /dev/loop0 squashfs 146M 146M 0 100% /media/compressed_root unionfs overlay 1.6G 1.1M 1.6G 1% / none proc 0 0 0 - /proc none sysfs 0 0 0 - /sys devtmpfs devtmpfs 10M 0 10M 0% /dev devpts devpts 0 0 0 - /dev/pts root@ttyS0:~# ^C All seems like there is some reset/new user process happening whenever I reboot the system Please help! Thanks in advance!
theglitch wrote:I have a Linode debian installation... You're asking volunteers to provide free tech support for a paid commercial service? What an interesting business model Linode seems to have: deploy FOSS, charge money but provide no tech support, refer folks to distro forums for assistance. Even if someone were willing to support Linode for free, no one here knows how Linode configures their servers. If you can reproduce your problem(s) on a stock Debian install, be sure to post back. Otherwise, maybe reconsider your choice of hosting providers; as they say in Spanish, "Lo barato sale caro."
I have some packages from Ubuntu 16.04. Can I install them into Jessie or Stretch ? How to know ?
Which packages?
Hi all, I have a very simple problem when running dpkg-buildpackage. The Makefile is not in the top level directory, it is located in make/gcc.mak. I made the following change to debian/rules: Code: Select alloverride_dh_auto_install: $(MAKE) -f make/gcc.mak install But now when I run dpkg-buildpackage it fails on the install step: Code: Select allinstall: cannot create regular file ‘//usr/bin/appname’: Permission denied It seems the "make install" step is trying to install the files in their intended locations in the file system, rather than using the fakeroot environment. I tried adding DESTDIR=debian/appname, but no joy: Code: Select alloverride_dh_auto_install: $(MAKE) -f make/gcc.mak install DESTDIR=debian/appname This happens with all apps I try, not just one. Any help would be appreciated, I have spent all day Googling and read a lot of documentation, but I don't seem to be able to solve this. It is infuriating being such a minor detail and seeing dpkg-buildpackage choke on it 100 times. Thanks.
Could you just stop the auto_install by leaving it blank and instead install files in a debian/install file, any symlinks in a debian/links file, extra docs such as README.md in a debian/docs file, and so on? It's not the most elegant way, though, but I can't help with the Makefile. Maybe if you copied it during the build as a Makefile into the root of the source, debhelper would work better with it.
Hi guys Have Debian Jessie Xfce and was wondering if one can change icon font colours? I have the ark-theme with faenza-icons but with my background the font colour isn't crisp.... How does one go about changing that? bookie
Maybe this helps - https://forum.xfce.org/extern.php?actio ... 3&type=rss
Hiya, I'm trying to compile some firmware for a router. The company that made the router kindly gave the source for the firmware plus their own building scripts so people could create their own firmware. I'm in the stage of attempting to get the unmodified firmware to compile using the provided build scripts and I'm running into a problem that seems to be stopping the firmware from producing a binary successfully. I'm using Debian Wheezy as my building environment. The part where it starts to all go awry is here: make -r -C hal/mips/pb42/current /home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/install/include/cyg/hal/plf_defs.inc make[2]: Entering directory `/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/hal/mips/pb42/current' mipsisa32-elf-gcc -finline-limit=7000 -mips32 -EB -msoft-float -Wall -Wpointer-arith -Wstrict-prototypes -Winline -Wundef -Woverloaded-virtual -g -O2 -ffunction-sections -fdata-sections -fno-rtti -fno-exceptions -G0 -mlong-calls -I/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/install/include -I/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/ecos/packages/hal/mips/pb42/current -I/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/ecos/packages/hal/mips/pb42/current/src -I/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/ecos/packages/hal/mips/pb42/current/tests -I. -Wp,-MD,plf_defs.tmp -o plf_mk_defs.tmp -S /home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/ecos/packages/hal/mips/pb42/current/src/plf_mk_defs.c fgrep .equ plf_mk_defs.tmp | sed s/#// > /home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/install/include/cyg/hal/plf_defs.inc tail: cannot open `+2' for reading: No such file or directory make[2]: *** [/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/install/include/cyg/hal/plf_defs.inc] Error 1 make[2]: Leaving directory `/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/hal/mips/pb42/current' make[1]: *** [build] Error 2 make[1]: Leaving directory `/home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld' /bin/sh: 1: cd: can't cd to /home/ellis/Documents/release_GPL/bootloader/ip1006aa_redboot_GPL_v102/rom_bld/install/bin mipsisa32-elf-objcopy: redboot.elf: No such file or directory cp: cannot stat `redboot.rom': No such file or directory make: *** [pb42_rom] Error 1 cp: cannot stat `./bootloader/ip1006aa_redboot_GPL_v102/rom_bld/install/bin/redboot.rom': No such file or directory And the trouble seems to start here: tail: cannot open `+2' for reading: No such file or directory Google has told me that my problem is that the building scripts are using an old, outdated syntax for the tail command. I've tried two fixes that I found from searching, but unfortunately neither of those fixes work. One of the solutions given for fixing this was to use the command "export _POSIX2_VERSION=199209" in bash. This didn't work, and the error message stayed exactly the same. Another method I tried was using "sed -i 's/"tail +"/"tail -n +"/g' *" in to change any instances of the phrase in the source files, but that doesn't seem to work - every time I try to compile again using the build script I get the exact same message. I've linked the complete build log here which may help provide some clues (very verbose). Anyone have any thoughts or ideas? I'm a bit lost and admittedly out of my depth here. Any help would be very much appreciated. Regards, fikasnus
i have noticed that 'tail' has an issue lately with filenames & directories that begin with certain alphanumeric characters, but i haven't explored that too much.
So I'm following the directions to install Steam according to https://wiki.debian.org/Steam#A64-bit_s ... 28amd64.29 - and when I go to install the 32-bit library, it warns me that it's going to remove a whole bunch of really important stuff: Code: Select allryan@kepler:~$ sudo aptitude install libgl1-nvidia-glx:i386 [sudo] password for ryan: The following NEW packages will be installed: glx-alternative-nvidia:i386{ab} glx-diversions:i386{ab} libatk1.0-0:i386{a} libaudit1:i386{a} libavahi-client3:i386{a} libavahi-common-data:i386{a} libavahi-common3:i386{a} libbz2-1.0:i386{a} libcairo2:i386{a} libcomerr2:i386{a} libcups2:i386{a} libdatrie1:i386{a} libdbus-1-3:i386{a} libegl1-mesa:i386{a} libegl1-mesa-drivers:i386{a} libegl1-nvidia:i386{a} libepoxy0:i386{ab} libfontconfig1:i386{a} libfontenc1:i386{a} libfreetype6:i386{a} libgbm1:i386{a} libgcrypt20:i386{a} libgdk-pixbuf2.0-0:i386{a} libgl1-nvidia-glx:i386 libgles1-nvidia:i386{a} libgles2-nvidia:i386{a} libglib2.0-0:i386{a} libgmp10:i386{a} libgnutls-deb0-28:i386{a} libgpg-error0:i386{a} libgraphite2-3:i386{a} libgssapi-krb5-2:i386{a} libgtk2.0-0:i386{a} libharfbuzz0b:i386{a} libhogweed2:i386{a} libjansson4:i386{a} libjasper1:i386{a} libjbig0:i386{a} libjpeg62-turbo:i386{a} libk5crypto3:i386{a} libkeyutils1:i386{a} libkrb5-3:i386{a} libkrb5support0:i386{a} liblzma5:i386{a} libnettle4:i386{a} libnvidia-eglcore:i386{ab} libnvidia-ml1:i386{ab} libopenvg1-mesa:i386{a} libp11-kit0:i386{a} libpango-1.0-0:i386{a} libpangocairo-1.0-0:i386{a} libpangoft2-1.0-0:i386{a} libpcre3:i386{a} libpixman-1-0:i386{a} libpng12-0:i386{a} libselinux1:i386{a} libtasn1-6:i386{a} libthai0:i386{a} libtiff5:i386{a} libvdpau1:i386{ab} libwayland-client0:i386{a} libwayland-egl1-mesa:i386{a} libwayland-server0:i386{a} libxcb-render0:i386{a} libxcb-shape0:i386{a} libxcb-shm0:i386{a} libxcb-xfixes0:i386{a} libxcomposite1:i386{a} libxcursor1:i386{a} libxfont1:i386{a} libxi6:i386{a} libxnvctrl0:i386{ab} libxrandr2:i386{a} libxrender1:i386{a} nvidia-alternative:i386{ab} nvidia-driver:i386{ab} nvidia-driver-bin:i386{ab} nvidia-kernel-common:i386{ab} nvidia-kernel-dkms:i386{ab} nvidia-modprobe:i386{ab} nvidia-settings:i386{ab} nvidia-vdpau-driver:i386{ab} pkg-config{a} xserver-xorg-core:i386{ab} xserver-xorg-video-nvidia:i386{ab} 0 packages upgraded, 85 newly installed, 0 to remove and 0 not upgraded. Need to get 49.5 MB of archives. After unpacking 183 MB will be used. The following packages have unmet dependencies: nvidia-alternative : Breaks: nvidia-driver:i386 (< 343.22-2~) but 340.101-1 is to be installed. Conflicts: nvidia-alternative:i386 but 340.101-1 is to be installed. nvidia-alternative:i386 : Conflicts: nvidia-alternative but 375.26-1~bpo8+1 is installed. libnvidia-cfg1 : Breaks: libgl1-nvidia-glx:i386 (< 355.11-5) but 340.101-1 is to be installed. nvidia-driver : Conflicts: nvidia-driver:i386 but 340.101-1 is to be installed. nvidia-driver:i386 : Conflicts: nvidia-driver but 375.26-1~bpo8+1 is installed. libepoxy0 : Conflicts: libepoxy0:i386 but 1.2-1 is to be installed. libepoxy0:i386 : Conflicts: libepoxy0 but 1.2-1 is installed. libegl1-glvnd-nvidia : Conflicts: libegl1-nvidia:i386 but 340.101-1 is to be installed. xserver-xorg-video-nvidia : Breaks: glx-alternative-nvidia (< 0.6.91) but 0.7.3~bpo8+1 is installed. Breaks: glx-alternative-nvidia:i386 (< 0.6.91) but 0.5.1 is to be installed. Conflicts: xserver-xorg-video-nvidia:i386 but 340.101-1 is to be installed. xserver-xorg-video-nvidia:i386 : Conflicts: xserver-xorg-video-nvidia but 375.26-1~bpo8+1 is installed. nvidia-settings : Conflicts: nvidia-settings:i386 but 340.46-2 is to be installed. nvidia-settings:i386 : Conflicts: nvidia-settings but 375.26-3~bpo8+1 is installed. libnvidia-glcore : Breaks: libgl1-nvidia-glx:i386 (< 355.11-5) but 340.101-1 is to be installed. nvidia-modprobe : Conflicts: nvidia-modprobe:i386 but 340.46-1 is to be installed. nvidia-modprobe:i386 : Conflicts: nvidia-modprobe but 358.09-1~bpo8+1 is installed. xserver-xorg-core : Conflicts: xserver-xorg-core:i386 but 2:1.16.4-1 is to be installed. xserver-xorg-core:i386 : Conflicts: xserver-xorg-core but 2:1.16.4-1 is installed. libgles1-glvnd-nvidia : Breaks: libgles1-nvidia:i386 (< 361) but 340.101-1 is to be installed. nvidia-kernel-support : Breaks: glx-alternative-nvidia (< 0.6.91) but 0.7.3~bpo8+1 is installed. Breaks: glx-alternative-nvidia:i386 (< 0.6.91) but 0.5.1 is to be installed. libgles2-glvnd-nvidia : Breaks: libgles2-nvidia:i386 (< 361) but 340.101-1 is to be installed. glx-diversions : Conflicts: glx-diversions:i386 but 0.5.1 is to be installed. glx-diversions:i386 : Conflicts: glx-diversions but 0.7.3~bpo8+1 is installed. nvidia-kernel-dkms : Conflicts: nvidia-kernel-dkms:i386 but 340.101-1 is to be installed. nvidia-kernel-dkms:i386 : Conflicts: nvidia-kernel-dkms but 375.26-1~bpo8+1 is installed. libnvidia-ml1 : Breaks: libnvidia-ml1:i386 (!= 375.26-1~bpo8+1) but 340.101-1 is to be installed. libnvidia-ml1:i386 : Breaks: libnvidia-ml1 (!= 340.101-1) but 375.26-1~bpo8+1 is installed. glx-alternative-nvidia : Breaks: nvidia-alternative (< 341) but 375.26-1~bpo8+1 is installed. Breaks: nvidia-alternative:i386 (< 341) but 340.101-1 is to be installed. Conflicts: glx-alternative-nvidia:i386 but 0.5.1 is to be installed. glx-alternative-nvidia:i386 : Conflicts: glx-alternative-nvidia but 0.7.3~bpo8+1 is installed. nvidia-vdpau-driver : Breaks: nvidia-vdpau-driver:i386 (!= 375.26-1~bpo8+1) but 340.101-1 is to be installed. nvidia-vdpau-driver:i386 : Breaks: nvidia-vdpau-driver (!= 340.101-1) but 375.26-1~bpo8+1 is installed. nvidia-driver-bin : Breaks: nvidia-driver:i386 (< 343.22-2~) but 340.101-1 is to be installed. Conflicts: nvidia-driver-bin:i386 but 340.101-1 is to be installed. nvidia-driver-bin:i386 : Conflicts: nvidia-driver-bin but 375.26-1~bpo8+1 is installed. nvidia-kernel-common : Conflicts: nvidia-kernel-common:i386 but 20141201+1 is to be installed. nvidia-kernel-common:i386 : Conflicts: nvidia-kernel-common but 20151021+1~bpo8+1 is installed. libvdpau1 : Breaks: libvdpau1:i386 (!= 1.1.1-1~bpo8+1) but 0.8-3+deb8u2 is to be installed. libvdpau1:i386 : Breaks: libvdpau1 (!= 0.8-3+deb8u2) but 1.1.1-1~bpo8+1 is installed. libgl1-glvnd-nvidia-glx : Conflicts: libgl1-nvidia-glx:i386 but 340.101-1 is to be installed. libnvidia-eglcore : Breaks: libnvidia-eglcore:i386 (!= 375.26-1~bpo8+1) but 340.101-1 is to be installed. libnvidia-eglcore:i386 : Breaks: libnvidia-eglcore (!= 340.101-1) but 375.26-1~bpo8+1 is installed. libxnvctrl0 : Breaks: libxnvctrl0:i386 (!= 375.26-3~bpo8+1) but 340.46-2 is to be installed. libxnvctrl0:i386 : Conflicts: libxnvctrl0 but 375.26-3~bpo8+1 is installed. The following actions will resolve these dependencies: Remove the following packages: 1) libepoxy0 2) nvidia-driver 3) nvidia-kernel-common 4) nvidia-kernel-dkms 5) nvidia-kernel-support 6) nvidia-modprobe 7) task-desktop 8) task-lxde-desktop 9) xorg 10) xserver-xorg 11) xserver-xorg-core 12) xserver-xorg-input-all 13) xserver-xorg-input-evdev 14) xserver-xorg-input-mouse 15) xserver-xorg-input-synaptics 16) xserver-xorg-input-vmmouse 17) xserver-xorg-input-wacom 18) xserver-xorg-video-all 19) xserver-xorg-video-ati 20) xserver-xorg-video-cirrus 21) xserver-xorg-video-fbdev 22) xserver-xorg-video-intel 23) xserver-xorg-video-mach64 24) xserver-xorg-video-mga 25) xserver-xorg-video-modesetting 26) xserver-xorg-video-neomagic 27) xserver-xorg-video-nouveau 28) xserver-xorg-video-nvidia 29) xserver-xorg-video-openchrome 30) xserver-xorg-video-qxl 31) xserver-xorg-video-r128 32) xserver-xorg-video-radeon 33) xserver-xorg-video-savage 34) xserver-xorg-video-siliconmotion 35) xserver-xorg-video-sisusb 36) xserver-xorg-video-tdfx 37) xserver-xorg-video-trident 38) xserver-xorg-video-vesa 39) xserver-xorg-video-vmware Keep the following packages at their current version: 40) glx-alternative-nvidia:i386 [Not Installed] 41) glx-diversions:i386 [Not Installed] 42) libegl1-nvidia:i386 [Not Installed] 43) libgl1-nvidia-glx:i386 [Not Installed] 44) libgles1-nvidia:i386 [Not Installed] 45) libgles2-nvidia:i386 [Not Installed] 46) libnvidia-eglcore:i386 [Not Installed] 47) libnvidia-ml1:i386 [Not Installed] 48) libvdpau1:i386 [Not Installed] 49) libxnvctrl0:i386 [Not Installed] 50) nvidia-alternative:i386 [Not Installed] 51) nvidia-driver:i386 [Not Installed] 52) nvidia-driver-bin:i386 [Not Installed] 53) nvidia-settings:i386 [Not Installed] 54) nvidia-vdpau-driver:i386 [Not Installed] 55) xserver-xorg-video-nvidia:i386 [Not Installed] Leave the following dependencies unresolved: 56) lightdm recommends xserver-xorg 57) lxde recommends xserver-xorg 58) xinit recommends xserver-xorg | xserver 59) xserver-xorg-input-all recommends xserver-xorg-input-wacom 60) nvidia-driver-bin recommends nvidia-driver 61) nvidia-kernel-dkms recommends nvidia-driver (>= 375.26) | libcuda1 (>= 375.26) 62) nvidia-vdpau-driver recommends nvidia-kernel-dkms (= 375.26-1~bpo8+1) | nvidia-kernel-375.26 63) nvidia-settings:i386 recommends libgl1-nvidia-glx:i386 64) nvidia-driver-bin:i386 recommends nvidia-driver:i386 65) nvidia-kernel-dkms:i386 recommends nvidia-driver:i386 (>= 340.101) | libcuda1:i386 (>= 340.101) 66) xserver-xorg-video-nvidia:i386 recommends nvidia-driver:i386 (>= 340.101) Accept this solution? [Y/n/q/?] That doesn't seem right......can someone who knows a little more of what they're doing than I do help out? I don't want to screw up my system, especially after I just spent a couple hours figuring out how to get my displays to work properly & create an xorg.conf etc.. Any advice?
The following packages have unmet dependencies: nvidia-alternative : Breaks: nvidia-driver:i386 (< 343.22-2~) but 340.101-1 is to be installed. Conflicts: nvidia-alternative:i386 but 340.101-1 is to be installed. nvidia-alternative:i386 : Conflicts: nvidia-alternative but 375.26-1~bpo8+1 is installed. libnvidia-cfg1 : Breaks: libgl1-nvidia-glx:i386 (< 355.11-5) but 340.101-1 is to be installed It looks like you have messed around with jessie-backports, so what version of the Nvidia driver did you end up installing on 64-bit? Also, aptitude offers multiple solutions to work around a mess with multiple versions, so try a few more before giving up.
The xfce iso link on the unofficial/non-free Debian LiveCD web page ... downloads a gnome desktop version !!! All of those were updated a month or two back to 8.7.1 ... perhaps no one has noticed as of yet.
Can you confirm that this is the ISO in question: https://cdimage.debian.org/cdimage/unof ... onfree.iso
Hello I recently instelld debian 9 stretch and after the installation i keep getting Window unresponsive like the image above and its so annoying if someone know how to fix it? thanks.
its happening to every window that i'm opening after some sort of time the window is stopping responding.
The computer occasionally hangs during shutdown. When it finally shuts down, after maybe 2 minutes, the messages on the screen flash by so fast that I don't get a chance to see where the problem is. I tried journalctl on the next boot but there is no journal information available. I also looked at systemctl but nothing is obvious to me, mainly because none of the info in systemctl is dated so I have no idea when things occurred. So what tool, or what options for journalctl, can I use to see what happened at the last shutdown. UPDATE: I tried using Code: Select all journalctl --since=2017-04-05 and there are no entries for that time period, only for today. Maybe I am doing it incorrectly. UPDATE 2: If what I have read is correct, then journals are not kept from previous shutdowns unless I do some kind of setup. Not sure exactly what I need to do as the only reference I have found thus far, is related to CentOs (or some such). Not sure where to go from here. Some explicit instructions would be helpful (and telling me to go to H--- would not be helpful. LOL) . UPDATE 3: Okay. Maybe this is what I need to do (from /usr/share/doc/systemd/README.Debian) Code: Select allinstall -d -g systemd-journal /var/log/journal setfacl -R -nm g:adm:rx,d:g:adm:rx /var/log/journal If correct, this would apparently set up persistent logging. Will the first line actually create /var/log/journal or do I need to do that as root? Once enabled, and I discover the problem, how do I turn off persistent logging?
https://freedesktop.org/wiki/Software/s ... /#index2h1
Yes I know, SetUID bit or sudoers are what I need but what are better to use? I found this page: https://www.cyberciti.biz/open-source/c ... rent-user/ where you can read "Summary: runuser vs su vs sudo" Here below you can find my script: Code: Select allip a add 10.10.1.1/255.255.255.0 dev enp3s0 /etc/init.d/isc-dhcp-server restart echo 1 > /proc/sys/net/ipv4/ip_forward iptables -I FORWARD -i enp3s0 -o wlp2s0 -j ACCEPT iptables -t nat -I POSTROUTING -o wlp2s0 -j MASQUERADE I need to enable user to run it by a click on Debian Stretch with KDE without password request; user will be able to have a laptop like a "mobile router" from ethernet port. Thanks in advance! GabrieleMax
I need to enable user to run it by a click on Debian Stretch with KDE without password reques Sounds complicated, why can't it just be activated when plugged in? What happens if they click it four or five times? check out post-up, up, and pre-up in man interfaces?
Hi everybody! Usually I use bleachbit scheduled on servers at night by crontab job, I use it also on my laptop when I need it but... I should use it also on a "end user" pc/laptop but without user works! Maybe I could load bleachbit on startup but yuo know startup is a heavy time for a pc and I would run bleachbit after 10-15 minutes or a good idea it could start at screensaver time! Is it possible to do it? Regards. GabrieleMax
Running bleachbit on servers ... what's the idea?
Hi there, I used to run amule-daemon in the past. Today I tried to install it again and couldn't find it in the repositories anymore. Is there any alternative I could run to have such a daemon to connect to e2k? Thanks. BR, d.
i'm sometimes using amule on archlinux, though not as a -daemon. have you triedCode: Select allapt search amule apt search emule?
what's the best backup utility you've tried? I have 4 spare partitions plus 400 gbs of unused space. I want to be able my entire system and then restore if anything goes wrong. I''ve googled and checked the repositories, and searched this forum but I'm not sure which ones will accomplish this. Thanks
.
Hi, have you seen this? http://thehackernews.com/2017/02/linux- ... -root.html It seems an old kernel vulnerability has been found. I would like to ask: how can I know when the patched kernel update arrives?
How about today for the security fix? - ------------------------------------------------------------------------- Debian Security Advisory DSA-3791-1 security@debian.org https://www.debian.org/security/ Salvatore Bonaccorso February 22, 2017 https://www.debian.org/security/faq - ------------------------------------------------------------------------- Package : linux CVE ID : CVE-2016-6786 CVE-2016-6787 CVE-2016-8405 CVE-2016-9191 CVE-2017-2583 CVE-2017-2584 CVE-2017-2596 CVE-2017-2618 CVE-2017-5549 CVE-2017-5551 CVE-2017-5897 CVE-2017-5970 CVE-2017-6001 CVE-2017-6074 Several vulnerabilities have been discovered in the Linux kernel that may lead to a privilege escalation, denial of service or have other impacts. ... CVE-2017-6074 Andrey Konovalov discovered a use-after-free vulnerability in the DCCP networking code, which could result in denial of service or local privilege escalation. On systems that do not already have the dccp module loaded, this can be mitigated by disabling it: echo >> /etc/modprobe.d/disable-dccp.conf install dccp false For the stable distribution (jessie), these problems have been fixed in version 3.16.39-1+deb8u1. We recommend that you upgrade your linux packages. If you want quick security alerts, subscribe to debian-security-announce@lists.debian.org
Hi My current config: 1) SSD with Debian Stretch, Legacy mode, Grub2 edited to list Windows 10 aswell. 2) HDD with Windows 10, Legacy mode, with own bootloader. Problem is, i go to BIOS to set SSD as first boot priority, but it's not there..., to be able to boot SSD i have to press F11 while booting my PC and select it on the list. This is a weird problem and i'm not sure if it's Debian related or just stupid BIOS. Any ideas?
what shows up in bios if you disconnect the hdd? MSI Z97 Gaming 3 Did you check out this mobo? uefi or other proprietary issues?
Hello, I noticed a strange behavior with one of the daily cron, "single-liners" i got running for past several months: Code: Select allEVENODD="$([ $(($(date +%d)%2)) -eq 0 ] && echo "EVEN" || echo "ODD")" tar czf /root/etc.backup.daily$EVENODD.tar.gz /etc &> /tmp/etc.backup.daily$EVENODD.log it created the backups yesterday, and the day before ( 7th and 6th of Mar ): Code: Select all-rw-r--r-- 1 root root 1244662 Mar 6 02:55 etc.backup.dailyEVEN.tar.gz -rw-r--r-- 1 root root 1244665 Mar 7 02:55 etc.backup.dailyODD.tar.gz but today at 2:55am it failed with: Code: Select all 08: value too great for base (error token is "08") Code: Select all$ echo $(($(date +%d)%2)) started suddenly failing... not only on the Jessie, but on Gentoo, and Stretch. The script has not been modified for a while... if it would fail earlier, the result tars would not get created as shown, unless I am going crazy... Thanks, Mike
ksu wrote:Hello, I noticed a strange behavior with one of the daily cron, "single-liners" i got running for past several months: Code: Select allEVENODD="$([ $(($(date +%d)%2)) -eq 0 ] && echo "EVEN" || echo "ODD")" tar czf /root/etc.backup.daily$EVENODD.tar.gz /etc &> /tmp/etc.backup.daily$EVENODD.log it created the backups yesterday, and the day before ( 7th and 6th of Mar ): Code: Select all-rw-r--r-- 1 root root 1244662 Mar 6 02:55 etc.backup.dailyEVEN.tar.gz -rw-r--r-- 1 root root 1244665 Mar 7 02:55 etc.backup.dailyODD.tar.gz but today at 2:55am it failed with: Code: Select all 08: value too great for base (error token is "08") Code: Select all$ echo $(($(date +%d)%2)) started suddenly failing... not only on the Jessie, but on Gentoo, and Stretch. The script has not been modified for a while... if it would fail earlier, the result tars would not get created as shown, unless I am going crazy... Thanks, Mike My bet: 08 is being interpreted as octal (because it starts with zero). On Friday you'll be fine again :)
I have latest debian testing(debian-testing-amd64-DVD-1.iso) release installed on my laptop with gnome and mate DE. I was able to successfully install mendeleydesktop by adding "non-free" to sources.list. But it does not start, I get following error Code: Select allanand@euler:/$ mendeleydesktop QSslSocket: cannot resolve CRYPTO_num_locks QSslSocket: cannot resolve CRYPTO_set_id_callback QSslSocket: cannot resolve CRYPTO_set_locking_callback QSslSocket: cannot resolve ERR_free_strings QSslSocket: cannot resolve sk_new_null QSslSocket: cannot resolve sk_push QSslSocket: cannot resolve sk_free QSslSocket: cannot resolve sk_num QSslSocket: cannot resolve sk_pop_free QSslSocket: cannot resolve sk_value QSslSocket: cannot resolve SSL_library_init QSslSocket: cannot resolve SSL_load_error_strings QSslSocket: cannot resolve SSL_get_ex_new_index QSslSocket: cannot resolve SSLv2_client_method QSslSocket: cannot resolve SSLv3_client_method QSslSocket: cannot resolve SSLv23_client_method QSslSocket: cannot resolve SSLv2_server_method QSslSocket: cannot resolve SSLv3_server_method QSslSocket: cannot resolve SSLv23_server_method QSslSocket: cannot resolve X509_STORE_CTX_get_chain QSslSocket: cannot resolve OPENSSL_add_all_algorithms_noconf QSslSocket: cannot resolve OPENSSL_add_all_algorithms_conf QSslSocket: cannot resolve SSLeay QSslSocket: cannot resolve SSLeay_version QSslSocket: cannot call unresolved function SSLeay QSslSocket: cannot call unresolved function CRYPTO_num_locks QSslSocket: cannot call unresolved function CRYPTO_set_id_callback QSslSocket: cannot call unresolved function CRYPTO_set_locking_callback QSslSocket: cannot call unresolved function SSL_library_init QSslSocket: cannot call unresolved function SSLv23_client_method QSslSocket: cannot call unresolved function sk_num No GUI starts, I even tried the .deb package directly available from mendeley website, but got the same errors. Any help appreciated. Thanking you.
I have successfully installed mendeleydesktop in 32bit Jessie using Gdebi. It is slow to appear. Does it show in your Menu>Education? What happens if you try to start it from a Terminal with the command: mendeleydesktop
DELL Inspiron 5559 laptop Processor: IntelCore i7-6500U CPU 1 Core, 2 Logical Processors Integrated Graphics Processor: Intel HD Graphics 520 Discrete Graphics Processor: AMD Radeon R5 M335 Hi, I am running Debian Stretch since middle of 2016 and it is running very well. I would like to install Google Chrome and wondered about the best way to do this. I found this method "Adding Google Chrome Repository on Debian" which was recommended on a few websites.... Open a terminal window and run this command to edit sources.list file. Code: Select all$ sudo nano /etc/apt/sources.list Copy the following line and paste it at the end of the file. Code: Select alldeb http://dl.google.com/linux/chrome/deb/ stable main Then save and close the file. Next use wget to download Google’s signing key and use apt-key to add it to your keyring so the package manager can verify the integrity of Google Chrome package. Code: Select allwget https://dl-ssl.google.com/linux/linux_signing_key.pub sudo apt-key add linux_signing_key.pub Now update local pacakge index and install the stable version of Google Chrome. Code: Select allsudo apt-get update sudo apt-get install google-chrome-stable I have a couple of questions before I attempt to do the install and wondered if anyone could advise me ... Q1. Is the above method the best way to get chrome installed and also get regular update? Q2. In my current situation where I have 'stretch' in my /etc/sources.list. Would this have any adverse affect on the above method? Q3. Would it be better to install Chromium rather than Google Chrome? I'm not sure if there would be any limitations with using Chomium instead of Googe Chrome. I'm still not an experienced Debian user, so I wanted to ask first before going ahead. So any advice/guidance would be appreciated.
On Debian stable, installing the deb package provided by Google will also automatically add and set up the repository. Why not test that in Stretch to make sure that works?
Hi community, for a program that I use on my server I need the exact library "libhdf5.so.100". A quick google search reveals that this file is only contained in packages from sid or stretch: https://www.google.de/search?q=site%3Ap ... df5.so.100 However I am using Debian Jessie Stable and so I cannot use these. Is there any other way of getting that library like an external/unofficial repository? Thanks in advance, Scindix EDIT: I rechecked the google search results that I have linked above and it seems that not even these packages contain the required library.
The best way to get it would be to backport it. I had a quick look and see that backporting it'd involve bit of "dependency hell." For a start, you'd need the backported version of debhelper and then you'd find that default-jdk-headless isn't available for debian jessie either which in turn would a newer version of default-jre-headless...which doesn't bode well; but who knows? Maybe stevepusser can figure it out.
Hi, I am using schroot from the Arch Linux host machine. Following: https://www.freedesktop.org/wiki/Softwa ... Audio/FAQ/ But getting: Code: Select allCHROOT$ aplay /usr/share/sounds/alsa/Noise.wav XDG_RUNTIME_DIR (/run/user/1000) is not owned by us (uid 1000), but by uid 0! (This could e g happen if you try to connect to a non-root PulseAudio as a root user, over the native protocol. Don't do that.) ALSA lib pcm_dmix.c:1052:(snd_pcm_dmix_open) unable to open slave aplay: main:788: audio open error: No such file or directory CHROOT$ aplay -l **** List of PLAYBACK Hardware Devices **** XDG_RUNTIME_DIR (/run/user/1000) is not owned by us (uid 1000), but by uid 0! (This could e g happen if you try to connect to a non-root PulseAudio as a root user, over the native protocol. Don't do that.) card 0: HDMI [HDA Intel HDMI], device 3: HDMI 0 [HDMI 0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 0: HDMI [HDA Intel HDMI], device 7: HDMI 1 [HDMI 1] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: PCH [HDA Intel PCH], device 0: ALC3227 Analog [ALC3227 Analog] Subdevices: 0/1 Subdevice #0: subdevice #0 Kindly advise. Thanks in advance.
makh wrote:I am using schroot from the Arch Linux host machine. Interesting. Why not use machinectl(1) instead? That would be my choice Also: Dr. Aust wrote:HOMEOPATHY: turning water into money since 1810
Hi there, System: Linux 3.16.0-4-586 #1 Debian 3.16.7-ckt11-1 (2015-05-24) i686 GNU/Linux Every single morning for the last 2 or 3 months and I've been getting two e-mails with the following errors: Mail 1: Cron <root@...> test -x /etc/init.d/anacron && /usr/sbin/invoke-rc.d anacron start >/dev/null /usr/sbin/invoke-rc.d: 1: /usr/sbin/invoke-rc.d: /sbin/runlevel: not found Mail 2: Anacron job 'cron.daily' on ... /etc/cron.daily/logrotate: /usr/sbin/invoke-rc.d: 1: /usr/sbin/invoke-rc.d: /sbin/runlevel: not found /usr/sbin/invoke-rc.d: 1: /usr/sbin/invoke-rc.d: /sbin/runlevel: not found /usr/sbin/invoke-rc.d: 1: /usr/sbin/invoke-rc.d: /sbin/runlevel: not found Misteriously, the number of lines in this second mail varies from day to day and is not related to the number of lines in mail 1. I've been Googling but I can't find any solution to my problem. Might anyone help me or give me a clue? Thanks in advance. BR, d.
dbip wrote:Code: Select all/usr/sbin/invoke-rc.d: 1: /usr/sbin/invoke-rc.d: /sbin/runlevel: not found /sbin/runlevel is provided by the systemd-sysv package; from my jessie system: Code: Select allTheLab: ~ $ ls -l /sbin/runlevel lrwxrwxrwx 1 root root 14 Jan 4 23:42 /sbin/runlevel -> /bin/systemctl Have you made some attempt to remove systemd? What is the output of: Code: Select allapt-cache policy systemd-sysv cat /proc/1/comm
First, a little background info. I am running an older Biostar MB with an Intel Core 2 Duo processor (socket LGA775). This is processor supports PAE. The motherboard only supports 2 GB ram. The main restrictions being that the MMU can only handle that amount of memory and the motherboard only provides 32 address lines to ram (even though the processor has 36 physical address pins). So, I had been thinking about MAYBE buying a motherboard that supports more memory (there are several) and as such was doing a little investigating relative to my current system. I ran {i]dmidecode[/i] and got this info Code: Select allProcessor Information Socket Designation: Socket 478 Type: Central Processor Family: Other Manufacturer: Intel ID: F6 06 00 00 FF FB EB BF Signature: Type 0, Family 6, Model 15, Stepping 6 I am curious as to why this contradicts the manufacturers data sheet. Here is an excerpt from the data sheet. 1.3 MOTHERBOARD FEATURES CPU LGA 775 Intel Core2Duo / Pentium 4 / Pentium D /CPU Celeron D / Celeron 4xx processor up to 3.8GHz *It is recommended to use processors with 95W power consumption. One may ask why I am even considering upgrade a 32 bit system, and that is a good question. It's partly cost, partly because I have 32 bit programs that may or may not run on 64 bit with multiarch, and partly because I'm an old fart. I personally think things have just gotten too out of hand with the never ending cycle of hardware upgrades and software forever expanding to fill up whatever memory is available. So, if anybody can tell me why dmidecode gives different info than what the MB manufacturer, and Intel spec sheet for that processor, gives I would like to hear the answer. UPDATE: Well, I can probably forget the upgrade idea. Nobody seems to have ATX motherboards (needed for my case), only micro ATX. I suppose I can get a 64 bit computer and install a 32 bit OS (if I can't get my 32 bit programs running on a multiarch installation). Still would like to know why dmidecode says it it a 478 socket.
I suppose you might be able to see the 775's load plate keeping the CPU in place--the 478 doesn't have one--in order to confirm that it's a 775.
Hi everyone! Recently I reinitialised my android phone, when the phone was operationnal again I could not use the micro SD card because it was merged with the internal memory. I tried to use the tools provided to format the SD so that I could use it as an external SD card but it failed. I then tried to format it on my laptop (Debian 8.6 Gnome) with Gparted. I erased all partitions and tried to create a new FAT32 partition. It seemed to have succeeded but then the phone would not format it correctly. I tried to format it once again with Gparted but it failed because of a read/write problem that the software could not write on the SD card. Also Gparted cannot detect the filesystem on the SD card. I looked up read/write problems on google but they are all about permissions. I think my problem is rather about damaged partitions or damaged filesystem. The device is /dev/mmcblk0p1 I think the terminal would be more appropriate to have more details on my problem. I don't know where to start so you will have to guide me ^^' What should I do? Thank you for your help!
I don't know what kind of partitioning and fileysystem android uses. I would bet that MBR/FAT32. However, if you just delete all the partitions and table and allow the phone to automatically format it, I think it should know how to do that. Or, try to wipe it clean and then make a FAT32 to it, mount it and try to write to it. If it is worn out it might not allow you to write to it even though it is recognized as a device by the kernel (that is /dev/mmcblk0). I would try to wipe it clean and then try to create a partition on it and see if it can be written to. Perhaps the earlier formatting just corrupted then partition table or something. You can try to correct it with fsck.vfat -r or sometihng, but if there is no data on it, why bother?
works fine from live cd... cheers
Damnit! The same old mistake LOL! From a win8 laptop, downloaded debian testing netinstall cd, but used the default windoze cd burner tool to burn the cd... Stupid of me, I think windoze actually intentionally burns linux cd's bad... couldn't boot cd, reboot multiple times, finally boots, multiple errors,etc. Downloaded one of the free cd burning tools, set burn speed to 1x Boots clean, fast, installing now...
The problem: I want to use rsync to back up my laptop to my home backup server. I have ssh set up with a passphrase and no password login. Everything works fine when I login from CLI. But I want the rsync to run as a cron job, so ssh-agent or kwalletmanager (I run KDE on Jessie) or something needs to remember that passphrase for me after it's entered at login. And nothing I've tried does that. Adding this to ~/.bashrc Code: Select alleval `ssh-agent -s` ssh-add ~/.ssh/id_ed25519 results in a demand for the passphrase every time I open a terminal. Not what I want at all. Putting the same thing in ~/.profile does nothing at all, though. Why? ?? Shouldn't that make it request the passphrase once per login, which is what I'm trying to achieve? I also tried adding a line to ~/.ssh/config Code: Select allIdentityFile ~/.ssh/id_ed25519 but that also does nothing. Yes, I logout and back in before trying to see whether it worked. The permissions on the private key are 600, and 644 on the pub key. Is that as it should be? Hope the wizards here can help. I've been working at this for days, getting nowhere and frustrated!
Why not just use a key without a passphrase?