Re: recommendation for software to make mp4 from a few stils (+ audio track)
Le 15/02/2016 05:27, Dan Hitt a écrit : Could anybody please recommend a piece of free software that can take a few still images together with an audio track and make an mp4 with them? (So i guess it is conceptually something that could produce a timed slide show, but of course if it offered effects for transition from one image to the next that would be better.) Command line or gui would be fine, but i would like something whose sources were available so that if necessary i could tune it. Thanks in advance for any clues. dan there are tons of programs to do so, beginning with probably any video linear editor, for example kdenlive search for "slideshow" jdd
Re: systemd Information
On Sun, Feb 14, 2016 at 02:48:14PM -0600, Tim McDonough wrote: Anyone have a recommendation for a good reference/tutorial on systemd as it applies to Debian Jessie? It's very frustrating to work on configuring static IPs, SSHD ports, etc. and never knowing which files are the correct ones to edit. For that matter, with systemd now in place why the heck were the old config files and scripts left in place if they aren't used? As far as I'm aware, just because systemd CAN configure networking, doesn't mean that it does. And in fact, in Debian, it doesn't. The Debian Reference Manual [1] (which should be considered gospel in these matters), states that the preferred methods fore configuring the network are either network-manager or wicd for a graphical desktop machine, or /etc/network/interfaces otherwise. I would not expect this to change in Stretch and, even if systemd is brought in to manage the task, the principle of least surprise would suggest that some sort of adapter is developed so that people can still use /etc/network/interfaces to configure it. (Basically, /e/n/i should be expected to be Debian's network configuration file, regardless of which tool applies that configuration). [1] https://www.debian.org/doc/manuals/debian-reference/ch05.en.html Tim -- For more information, please reread. signature.asc Description: PGP signature
Re: recommendation for software to make mp4 from a few stils (+ audio track)
On 2016-02-15, Dan Hitt wrote: > Could anybody please recommend a piece of free software that can take > a few still images together with an audio track and make an mp4 with > them? I've seen a few people here speaking well of openshot (open-source and in the package archive). > (So i guess it is conceptually something that could produce a timed > slide show, but of course if it offered effects for transition from > one image to the next that would be better.) > > Command line or gui would be fine, but i would like something whose > sources were available so that if necessary i could tune it. > > Thanks in advance for any clues. > > dan > > -- Hypertext--or should I say the ideology of hypertext?--is ultrademocratic and so entirely in harmony with the demagogic appeals to cultural democracy that accompany (and distract one’s attention from) the ever-tightening grip of plutocratic capitalism. - Susan Sontag
Re: changing partition names
On Sun, Feb 14, 2016 at 03:42:33PM -0500, Frank McCormick wrote: > I have deleted a partition from my HD containing a distro I no longer use. > As a result, my partitions on /dev/sda are numbered sda1. sda2 (windows) and > sda4. sda3 contained the distro I dumped. > > Can I just use fdisk or fsdisk to dump the existing partition record > edit the file to change sda4 to sda3 and then use fdisk or sfdisk to > read the file and create a properly named partition record ? If it's the names you are concerned about, then I would recommend not referencing partition numbers or device names directly if at all possible (e.g. sda3 or sdb). Instead label your filesystems (e2label /dev/sda3 MY_LABEL) and refer to the labels (/dev/disk/by-label/MY_LABEL) or use UUIDs. These are more robust against partition changes or disk renumberings. If you want the space back, well, you can try to do some partition surgery but make sure you've got good backups first. For fresh setups I'd always recommend using LVM. If you were already using LVM, you could just reformat the unwanted partition as an LVM PV, add it to your VG and the space could be re-used, without having to muck with the partition table at all. If you are mucking about with the partition tables, bear in mind that the table itself is like a bunch of pointers; so if you dump the table, edit it and re-load it, no data itself will have moved: so if the new table points at different places, you will have lost your filesystems. If you want sda4 to begin where sda3 used to be, you need to move the filesystem as well as rewrite the partition table. This is probably something that (g)parted (or partition magic) can do, but here be dragons, etc. If the now-spare sda3 was large enough, and you were not already using LVM, I'd recommend formatting sda3 as an LVM PV and create a new LVM VG, then an LVM LV; then migrate your data from sda4 into that LV; then format sda4 as an LVM PV and add that into the VG, so you end up with all the space being available, again without changing the partition table at all. -- Jonathan Dowland Please do not CC me, I am subscribed to the list.
Re: BTRFS failed
On Sun, Feb 14, 2016 at 09:10:07PM +0300, Adam Wilson wrote: > Surely you mean LUKS on top of btrfs? I don't think that's possible. If you want btrfs and encryption the advice is to do the encryption *underneath* btrfs, because btrfs does not support encryption itself. I'm not sure how/why you would layer a block device *on top* of a btrfs filesystem. -- Jonathan Dowland Please do not CC me, I am subscribed to the list.
Re: systemd Information
On Sun, Feb 14, 2016 at 02:48:14PM -0600, Tim McDonough wrote: > Anyone have a recommendation for a good reference/tutorial on systemd as it > applies to Debian Jessie? > > It's very frustrating to work on configuring static IPs, SSHD ports, etc. > and never knowing which files are the correct ones to edit. For that matter, > with systemd now in place why the heck were the old config files and scripts > left in place if they aren't used? Unless you've explicitly told systemd to manage networking, it won't be, so those old config files are left behind because they're actually the current config files. For the default networking setup in Jessie, consider looking at the Debian Administrator's Handbook: https://www.debian.org/doc/manuals/debian-handbook/sect.network-config.en.html For information on systemd in Jessie (at least by default), see https://www.debian.org/doc/manuals/debian-handbook/unix-services.en.html#sect.systemd If you *do* want systemd to manage networking, you could look at http://sunweavers.net/blog/node/34 -- Jonathan Dowland Please do not CC me, I am subscribed to the list.
Re: recommendation for software to make mp4 from a few stils (+ audio track)
On Sun, 2016-02-14 at 20:27 -0800, Dan Hitt wrote: > Could anybody please recommend a piece of free software that can take > a few still images together with an audio track and make an mp4 with > them? > > (So i guess it is conceptually something that could produce a timed > slide show, but of course if it offered effects for transition from > one image to the next that would be better.) > > Command line or gui would be fine, but i would like something whose > sources were available so that if necessary i could tune it. > > Thanks in advance for any clues. You could use Blender, but it might be overkill for a slideshow and the learning curve might be a bit steep if you haven't used it before. You could also use ffmpeg from the command line: http://superuser.com/questions/714079/ffmpeg-slideshow-from-images-only-one-frame-shown -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 6FAB5CD5 signature.asc Description: This is a digitally signed message part
Re: changing partition names
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, Feb 15, 2016 at 10:49:29AM +, Jonathan Dowland wrote: [...] > If the now-spare sda3 was large enough, and you were not already using LVM, > I'd > recommend formatting sda3 as an LVM PV and create a new LVM VG, then an LVM > LV; > then migrate your data from sda4 into that LV; then format sda4 as an LVM PV > and > add that into the VG, so you end up with all the space being available, again > without changing the partition table at all. Very insightful. In the interest of newbies (I was that in things LVM a short while ago) I'll add a bit of explanation for those mysterious acronyms: The logical volume manager (LVM) concerns itself with collecting slices of space from disk (PVs == "physical volumes") into bigger units (VGs == "volume groups") to then dole out slices of it ("LVs" == "logical volumes") which then can be used as normal partitions, although their backing store may be scattered across several partitions (possibly on several "disks"[1]) This can be extremely useful: for example I have encrypted disks on my laptop (in case it gets lost I can sleep well, because all those nasty company secrets are not readable to anyone). But still I have several partitions (/, home, /var, and most prominently, swap, which I want encrypted as well. Now the LUKS disk encryption is per "partition" -- at each boot I'd have to enter the LUKS pass phrase for each of those partitions. Ugh. No problem with the LVM -- I make one big (physical) partition, encrypt that with LUKS, give that to the LVM as a physical volume (PV), the only one in the volume group (VG) and section that into the logical volumes (LVs) where my different file systems will reside. The other day my /var partition was too small. I had spare space in /home. Using a bit of care (first shrink the file system on /home) I could transfer as much space as needed to /var. I think the Wikipedia article[2] is a nice writeup to get started. [1] I'm using scare quotes there because a disk may denote an SSD, an USB stick or whatever physical storage medium out there. [2] https://en.wikipedia.org/wiki/Logical_Volume_Manager_(Linux) regards - -- t -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlbBsXUACgkQBcgs9XrR2kbtWwCfenbGEfSrMbh214gE/PPjA7/Y h/UAnA/+DGz+rzH2YnYx7zrasOEzBLEs =yNrK -END PGP SIGNATURE-
Re: GNOME Shell can't unmount my USB key
On Mon, 2016-02-08 at 10:57 +0100, Me wrote: > Thanks for the reply, I reported it to the Debian GNOME maintainer. > Do you have a bug report number? I'm interested on following up on this as I experience the same thing (sometimes). There have been open bugs about this both upstream and in Ubuntu but it was resolved as a bug in a specific chipset, which doesn't seem to be the case here. -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 6FAB5CD5 signature.asc Description: This is a digitally signed message part
Re: systemd Information
On Mon 15 Feb 2016 at 09:46:56 (+), Darac Marjal wrote: > On Sun, Feb 14, 2016 at 02:48:14PM -0600, Tim McDonough wrote: > > > >Anyone have a recommendation for a good reference/tutorial on > >systemd as it applies to Debian Jessie? > > > >It's very frustrating to work on configuring static IPs, SSHD > >ports, etc. and never knowing which files are the correct ones to > >edit. For that matter, with systemd now in place why the heck were > >the old config files and scripts left in place if they aren't > >used? > > As far as I'm aware, just because systemd CAN configure networking, > doesn't mean that it does. And in fact, in Debian, it doesn't. The > Debian Reference Manual [1] (which should be considered gospel in > these matters), states that the preferred methods fore configuring > the network are either network-manager or wicd for a graphical > desktop machine, or /etc/network/interfaces otherwise. The string "graph" does not occur in the text of chapter 5. What the heading says is "5.2. The modern network configuration for desktop" There is a link to https://en.wikipedia.org/wiki/Graphical_user_interface in the HTML version, but the authors failed to provide a link to https://en.wikipedia.org/wiki/Text-based_user_interface which is sufficient for running wicd. (I can't speak for network-manager, never having installed it.) Cheers, David.
Re: changing partition names
On 15/02/16 05:49 AM, Jonathan Dowland wrote: On Sun, Feb 14, 2016 at 03:42:33PM -0500, Frank McCormick wrote: I have deleted a partition from my HD containing a distro I no longer use. As a result, my partitions on /dev/sda are numbered sda1. sda2 (windows) and sda4. sda3 contained the distro I dumped. Can I just use fdisk or fsdisk to dump the existing partition record edit the file to change sda4 to sda3 and then use fdisk or sfdisk to read the file and create a properly named partition record ? If it's the names you are concerned about, then I would recommend not referencing partition numbers or device names directly if at all possible (e.g. sda3 or sdb). Instead label your filesystems (e2label /dev/sda3 MY_LABEL) and refer to the labels (/dev/disk/by-label/MY_LABEL) or use UUIDs. These are more robust against partition changes or disk renumberings. I already use UUIDS. If you want the space back, well, you can try to do some partition surgery but make sure you've got good backups first. For fresh setups I'd always recommend using LVM. If you were already using LVM, you could just reformat the unwanted partition as an LVM PV, add it to your VG and the space could be re-used, without having to muck with the partition table at all. I have the space back already. Maybe I didn't explain it clearly enough but I used Gparted to delete the partition and to enlarge the Debian partition. That's how I ended up with these mis-named partition...i.e. sda1 sda2 sda4. If you are mucking about with the partition tables, bear in mind that the table itself is like a bunch of pointers; so if you dump the table, edit it and re-load it, no data itself will have moved: so if the new table points at different places, you will have lost your filesystems. If you want sda4 to begin where sda3 used to be, you need to move the filesystem as well as rewrite the partition table. If I don't touch the beginning or ending of the partitions there should be no problem, right ? This is probably something that (g)parted (or partition magic) can do, but here be dragons, etc. No neither can handle what I need...but apparently sfdisk can. If the now-spare sda3 was large enough, and you were not already using LVM, I'd recommend formatting sda3 as an LVM PV and create a new LVM VG, then an LVM LV; then migrate your data from sda4 into that LV; then format sda4 as an LVM PV and add that into the VG, so you end up with all the space being available, again without changing the partition table at all. Too late for LVM. Next time I reinstall from scratch, I'll take a look at it as it seems to make life more simple. Thanks
grub error after kernel upgrade: invalid arch independent elf-magic
Greetings everyone, today I ran into a weird problem I can't get my head around. I run a debian 8 jessie server which was last updated around 4 weeks ago. I did an apt-get update/upgrade today which only involved around 20 packages, one of which was an update to the linux-image-3.16.0-4-amd64 package. The server has a 2009 asus mainboard which is not uefi capable. It is booted via a 120MB bios_grub type gpt partition and the system resides on the following 2TB ext4 partition. Rebooting after the upgrade led to grub immediately reporting: error: invalid arch independent ELF magic. grub rescue> I then tried to use the rescue prompt to get the system to boot manually. I set the root to (hd0,gpt2) and was able to use ls to navigate to the grub folder. Upon issuing an insmod linux grub immediately responded with: error: invalid arch independent ELF magic. I get the same error if I for example try to insmod configfile or a couple other modules. the modules gzio, part_gpt and ext2 work fine! I then proceeded to boot a grml rescue image from a usb stick and after mounting the root filesystem and taking care of the sys,dev,proc folders I chrooted into the mounted root filesystem and did a: grub-install /dev/sda The grub installation went fine, no errors and after a reboot I did get back the grub boot menu. However trying to boot the first entry which contains the 3.16 kernel image grub responds with: error: invalid magic number. Loading initial ramdisk... error: you need to lead the kernel first If I try to boot the old 3.2 kernel which I still had on that root filesystem instead I can boot the system just fine. I can repeat this behaviour as many times as I want. Doing a grub-install from my booted system leads to the invalid arch message and no way to boot anything. Booting a rescue disk and doing another grub-install gets my system back to the grub menu and I can at least boot the old 3.2 kernel. rinse repeat. After spending more than 10 hours so far on the issue I still don't know what exactly is causing this behaviour. It can't really be an uefi issue as this mainboard is not uefi capable. It has been running fine in legacy gpt mode since 2009. Also I am usure as to what the arch independent elf-magic error message means. And is that the same "magic" as the "invalid magic number" message I can achieve the other way? So, help me please, since I am running out of things to try. Best regards Alexander M. Heuer signature.asc Description: PGP signature
Re: changing partition names
Le 15/02/2016 17:51, Frank McCormick a écrit : I already use UUIDS. be warned, if you use the partition table edit solution, uuid changes each time you touch a partition. The better way may be to use labels, but I don't know if they survive partition change, probably not. No neither can handle what I need...but apparently sfdisk can. pretty easy to do by hand, but booting may begin hard O wrote this mong time ago :-) http://tldp.org/HOWTO/Partition-Rescue/ look at it as it seems to make life more simple. may be usefull, but more simple certainly not, let only for the dev names :-) jdd
[debian-user] thunderbird proxy env. vars for socks
Hi, I'm familiar with proxy envirnoment variables such as (both lower and upper case versions): use_proxy soap_use_proxy http_proxy https_proxy ftp_proxy rsync_proxy no_proxy all_proxy Thunderbird at least pay attention to some of them, and honestly, before I haven't needed anything else. However, inside the company, I need to setup manually under TB: SOCKS Host: <...> Port: <...> As SOCKS v5. Where the socks host is the same as the other proxy hosts, but its socks port must be different than the rest. I don't use any DE, but I have some automation through bash+xinitrc which depends on how to set the env. vars, so that I only need to set on TB/FF "use system proxy settings". I've tried several possible env. vars (both lower and upper case) like: socks_proxy socks_server socks_version smtp_proxy="socks5://:" So far I haven't been able to get any possitive results. Does any one know how I might be able to set socks for TB through env. vars? Thanks, -- Javier
Re: changing partition names
jdd a écrit : > > be warned, if you use the partition table edit solution, uuid changes > each time you touch a partition. No, UUID don't change unless you change the contents of a partition. They are not in the partition table. Same with labels.
Re: changing partition names
Pascal Hambourg composed on 2016-02-15 20:52 (UTC+0100): >> be warned, if you use the partition table edit solution, uuid changes >> each time you touch a partition. > No, UUID don't change unless you change the contents of a partition. > They are not in the partition table. Same with labels. Filesystem UUID won't change, but partition UUID will change: # blkid /dev/sda10 /dev/sda10: UUID="c37e5de4-f454-e44b-afe2-6e50d920a464" UUID_SUB="2d50ad8e-5131-2f5a-3bfc-ae071dda4314" LABEL="srv10:mdroot2" TYPE="linux_raid_member" PARTUUID="c22068fb-0a" -- "The wise are known for their understanding, and pleasant words are persuasive." Proverbs 16:21 (New Living Translation) Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/
Re: changing partition names
Frank McCormick a écrit : > I have deleted a partition from my HD containing a distro I no longer use. > As a result, my partitions on /dev/sda are numbered sda1. sda2 (windows) > and sda4. sda3 contained the distro I dumped. > > Can I just use fdisk or fsdisk to dump the existing partition record > edit the file to change sda4 to sda3 and then use fdisk or sfdisk to > read the file and create a properly named partition record ? The partition is already properly named. There is nothing wrong in having unused partition entries between used partition entries. The partition table is just that : a table. Why would you want to renumber the partition ? It provides absolutely no benefit and can break things such as the bootloader which may seek data on partitions identified by their numbers.
Re: changing partition names
Felix Miata a écrit : > Pascal Hambourg composed on 2016-02-15 20:52 (UTC+0100): > >>> be warned, if you use the partition table edit solution, uuid changes >>> each time you touch a partition. > >> No, UUID don't change unless you change the contents of a partition. >> They are not in the partition table. Same with labels. > > Filesystem UUID won't change, but partition UUID will change: > > # blkid /dev/sda10 > /dev/sda10: UUID="c37e5de4-f454-e44b-afe2-6e50d920a464" > UUID_SUB="2d50ad8e-5131-2f5a-3bfc-ae071dda4314" LABEL="srv10:mdroot2" > TYPE="linux_raid_member" PARTUUID="c22068fb-0a" This is a fake PARTUUID, built by recent kernels and based on the partition number with MSDOS partition tables. A real PARTUUID in a GPT partition table would not change.
Re: systemd Information
Tim McDonough wrote: > > Anyone have a recommendation for a good reference/tutorial on systemd as > it applies to Debian Jessie? > > It's very frustrating to work on configuring static IPs, SSHD ports, > etc. and never knowing which files are the correct ones to edit. For > that matter, with systemd now in place why the heck were the old config > files and scripts left in place if they aren't used? > > Tim What helped me moving to systemd in jessie was the advise to put some custom init scripts (networking, nfs, firewall) to /etc/network/if-up.d/ As for the IPs and ports nothing changes as it was already mentioned. regards
Squeeze Support
Hi! I'm Trenton Taylor, and am participating in a CCDC competition this Saturday the 20th. When in February does support for Squeeze end? Is there a set date in the month? I'm planning to upgrade from Lenny for it, but I'd rather not go further if Squeeze still gets security updates. Thanks!
Re: Squeeze Support
On Monday 15 February 2016 22:41:01 Trent Taylor wrote: > Hi! I'm Trenton Taylor, and am participating in a CCDC competition this > Saturday the 20th. > > When in February does support for Squeeze end? Is there > a set date in the month? I'm planning to upgrade from Lenny for it, but I'd > rather not go further if Squeeze still gets security updates. February 29th https://wiki.debian.org/LTS Lisi
Re: changing partition names
On Monday 15 February 2016 20:05:53 Pascal Hambourg wrote: > Why would you want to renumber the partition ? It provides absolutely no > benefit and can break things such as the bootloader which may seek data > on partitions identified by their numbers. If it ain't broke, don't fix it??? ;-) Lisi
Re: changing partition names
Lisi Reisz composed on 2016-02-15 23:16 (UTC): > Pascal Hambourg wrote: >> Why would you want to renumber the partition ? It provides absolutely no >> benefit and can break things such as the bootloader which may seek data >> on partitions identified by their numbers. > If it ain't broke, don't fix it??? ;-) IMO it broke when sda3 got deleted, but is easily fixed by putting any partition into any part of the current freespace. -- "The wise are known for their understanding, and pleasant words are persuasive." Proverbs 16:21 (New Living Translation) Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/
Flash problems again.
Aptitude says: Saving to: `/tmp/pepperflashplugin-nonfree.TkQKb4rXAE/google-chrome-stable_48.0.2564.109-1_amd64.deb' Konsole says: lisi@Tux-II:~$ cd /tmp lisi@Tux-II:/tmp$ ls kde-lisipulse-PKdhtXMmr18n kde-rootpulse-T1Aid8kZJiae ksocket-global scim-helper-manager-socket-lis ksocket-lisiscim-panel-socket:0-lisi ksocket-rootssh-YLUWIgR5587J mozilla_lisi0 wine-0755cef476a701cb18e5ae4d3 orbit-lisi wine-4dacf155583b81de854dd52fa pulse-2L9K88eMlGn7 xauth.dnfBcp lisi@Tux-II:/tmp$ Can anyone explain? Here is the whole of the aptitude transaction: root@Tux-II:/home/lisi# aptitude install pepperflashplugin-nonfree The following NEW packages will be installed: pepperflashplugin-nonfree 0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 10.5 kB of archives. After unpacking 66.6 kB will be used. Get: 1 http://ftp.at.debian.org/debian/ wheezy-backports/contrib pepperflashplugin-nonfree amd64 1.4~bpo60+1 [10.5 kB] Fetched 10.5 kB in 0s (47.0 kB/s) Selecting previously unselected package pepperflashplugin-nonfree. (Reading database ... 255437 files and directories currently installed.) Unpacking pepperflashplugin-nonfree (from .../pepperflashplugin-nonfree_1.4~bpo60+1_amd64.deb) ... Setting up pepperflashplugin-nonfree (1.4~bpo60+1) ... --2016-02-15 23:31:25-- http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_48.0.2564.109-1_amd64.deb Resolving dl.google.com (dl.google.com)... 74.125.195.93, 74.125.195.136, 74.125.195.190, ... Connecting to dl.google.com (dl.google.com)|74.125.195.93|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 48067952 (46M) [application/x-debian-package] Saving to: `/tmp/pepperflashplugin-nonfree.TkQKb4rXAE/google-chrome-stable_48.0.2564.109-1_amd64.deb' 0K .. .. .. .. .. 0% 1.33M 35s 50K .. .. .. .. .. 0% 2.14M 28s 100K .. .. .. .. .. 0% 2.22M 25s 150K .. .. .. .. .. 0% 2.18M 24s 200K .. .. .. .. .. 0% 2.20M 24s 250K .. .. .. .. .. 0% 2.22M 23s 300K .. .. .. .. .. 0% 2.16M 23s 350K .. .. .. .. .. 0% 2.20M 22s 400K .. .. .. .. .. 0% 459K 31s 450K .. .. .. .. .. 1% 5.48M 29s 500K .. .. .. .. .. 1% 331M 26s 550K .. .. .. .. .. 1% 465M 24s 600K .. .. .. .. .. 1% 7.15M 23s 650K .. .. .. .. .. 1% 2.15M 22s 700K .. .. .. .. .. 1% 2.20M 22s 750K .. .. .. .. .. 1% 2.23M 22s 800K .. .. .. .. .. 1% 2.18M 22s 850K .. .. .. .. .. 1% 2.20M 22s 900K .. .. .. .. .. 2% 2.16M 22s 950K .. .. .. .. .. 2% 2.15M 22s 1000K .. .. .. .. .. 2% 1.70M 22s 1050K .. .. .. .. .. 2% 1.96M 22s 1100K .. .. .. .. .. 2% 2.20M 22s 1150K .. .. .. .. .. 2% 2.18M 22s 1200K .. .. .. .. .. 2% 2.20M 22s 1250K .. .. .. .. .. 2% 2.15M 22s 1300K .. .. .. .. .. 2% 2.23M 22s 1350K .. .. .. .. .. 2% 2.21M 22s 1400K .. .. .. .. .. 3% 2.15M 21s 1450K .. .. .. .. .. 3% 537K 24s 1500K .. .. .. .. .. 3% 61.8M 23s 1550K .. .. .. .. .. 3% 54.0M 22s 1600K .. .. .. .. .. 3% 13.7M 21s 1650K .. .. .. .. .. 3% 2.20M 21s 1700K .. .. .. .. .. 3% 2.18M 21s 1750K .. .. .. .. .. 3% 2.15M 21s 1800K .. .. .. .. .. 3% 2.20M 21s 1850K .. .. .. .. .. 4% 2.18M 21s 1900K .. .. .. .. .. 4% 2.20M 21s 1950K .. .. .. .. .. 4% 2.21M 21s 2000K .. .. .. .
Re: changing partition names
On 15/02/16 06:32 PM, Felix Miata wrote: Lisi Reisz composed on 2016-02-15 23:16 (UTC): Pascal Hambourg wrote: Why would you want to renumber the partition ? It provides absolutely no benefit and can break things such as the bootloader which may seek data on partitions identified by their numbers. If it ain't broke, don't fix it??? ;-) IMO it broke when sda3 got deleted, but is easily fixed by putting any partition into any part of the current freespace. There is NO free space. It's now part of the Debian partition, the rest belongs to Bill gates creation :) I am beginning to agree...if it ain't broke.
Stretch color scheme problems
Hi all; Ever since I switch to Stretch I have been having a problem with the color scheme of various applications. I get a lot of black lettering on a black background, white on white and dark blue on black background (impossible to read). I've tried to fiddle with the colors at the kde desktop level and also at the individual application level. There doesn't seem to be a consistent pattern to the problem. Any suggestions would be sincerely appreciated. Note: I do not want to change from KDE. I like it a lot. Gary R.
Re: Problems with VLC in jessie
On Wed, 10 Feb 2016 23:38:03 -0500, Charles Kroeger wrote: > On Mon, 08 Feb 2016 19:10:01 +0100 "Juan R. de Silva" > wrote: > >> > If that does not help, please share the output of vlc -vvv. >> >> Well, I did... > > You might as well try this: > > $ vlc --reset-config Finally had time to get to this back again. Yes, this helped me. My .avi and .mp4 work now. It did not fix the flickering issue with DVDs. But this is all different story, since in my own believe it is a problem that VLC has with my video card. And since for this I have a solution - SMPlayer, I do not bother. One day it get fixed either with nvidia driver update or with VLC update. Thank you.
Re: changing partition names
Frank McCormick composed on 2016-02-15 19:26 (UTC-0500): > On 15/02/16 06:32 PM, Felix Miata wrote: >> Lisi Reisz composed on 2016-02-15 23:16 (UTC): >>> Pascal Hambourg wrote: Why would you want to renumber the partition ? It provides absolutely no benefit and can break things such as the bootloader which may seek data on partitions identified by their numbers. >>> If it ain't broke, don't fix it??? ;-) >> IMO it broke when sda3 got deleted, but is easily fixed by putting any >> partition into any part of the current freespace. > There is NO free space. It's now part of the Debian partition, the > rest belongs to Bill gates creation :) > I am beginning to agree...if it ain't broke. OK, so I misread your fdisk output. There is no freespace. Still I think the missing #3 partition table entry amounts to a lurking booby trap waiting to pounce after history has been forgotten. -- "The wise are known for their understanding, and pleasant words are persuasive." Proverbs 16:21 (New Living Translation) Team OS/2 ** Reg. Linux User #211409 ** a11y rocks! Felix Miata *** http://fm.no-ip.com/
Re: Squeeze Support
On 16/02/2016, Trent Taylor wrote: > Hi! I'm Trenton Taylor, and am participating in a CCDC competition this > Saturday the 20th. When in February does support for Squeeze end? Is there > a set date in the month? I'm planning to upgrade from Lenny for it, but I'd > rather not go further if Squeeze still gets security updates. > Thanks! > Whilst Lisi has posted the specified date for the End Of Support for Debian squeeze, if you want to use a version of Debian that is older than the current stable version, it may be worth you subscribing to the Debian-LTS mailing list. On that list, is posted information and discussion, about what is going on with the LTS work, and, recently, has been posted, the End Of Support dates for the next two versions that are to be subject to LTS. -- Bret Busby Armadale West Australia .. "So once you do know what the question actually is, you'll know what the answer means." - Deep Thought, Chapter 28 of Book 1 of "The Hitchhiker's Guide to the Galaxy: A Trilogy In Four Parts", written by Douglas Adams, published by Pan Books, 1992
Re: recommendation for software to make mp4 from a few stils (+ audio track)
Thanks Sven, and Curt, JDD, and Gene. All these leads look promising, and kdenlive certainly does have slideshows right on its menu (and there's a youtube video about how to do it as well). (My actual investigation was kind of lame: i looked up video editor in the wikipedia, and saw there were at least 17 in the free world, and thought somebody on the list would instantly know the direction to take. But actually, i suppose i could have just chosen one at random --- although i would not have heard about Presenter, which i don't think is on the list. Anyhow i appreciate all your help!!) dan On Mon, Feb 15, 2016 at 3:28 AM, Sven Arvidsson wrote: > On Sun, 2016-02-14 at 20:27 -0800, Dan Hitt wrote: >> Could anybody please recommend a piece of free software that can take >> a few still images together with an audio track and make an mp4 with >> them? >> >> (So i guess it is conceptually something that could produce a timed >> slide show, but of course if it offered effects for transition from >> one image to the next that would be better.) >> >> Command line or gui would be fine, but i would like something whose >> sources were available so that if necessary i could tune it. >> >> Thanks in advance for any clues. > > You could use Blender, but it might be overkill for a slideshow and the > learning curve might be a bit steep if you haven't used it before. > > You could also use ffmpeg from the command line: > http://superuser.com/questions/714079/ffmpeg-slideshow-from-images-only-one-frame-shown > > -- > Cheers, > Sven Arvidsson > http://www.whiz.se > PGP Key ID 6FAB5CD5 > > >
Re: Stretch color scheme problems
On Mon, 15 Feb 2016 17:39:26 -0800 Gary Roach wrote: > Ever since I switch to Stretch I have been having a problem with the > color scheme of various applications. I get a lot of black lettering > on a black background, white on white and dark blue on black > background (impossible to read). I've tried to fiddle with the colors > at the kde desktop level and also at the individual application > level. There doesn't seem to be a consistent pattern to the problem. > Any suggestions would be sincerely appreciated. It would be useful to know your theme settings.
Re: Flash problems again.
On Mon, 15 Feb 2016 23:43:16 + Lisi Reisz wrote: > Aptitude says: > Saving to: > `/tmp/pepperflashplugin-nonfree.TkQKb4rXAE/google-chrome-stable_48.0.2564.109-1_amd64.deb' > > Konsole says: > > lisi@Tux-II:~$ cd /tmp > lisi@Tux-II:/tmp$ ls > kde-lisipulse-PKdhtXMmr18n > kde-rootpulse-T1Aid8kZJiae > ksocket-global scim-helper-manager-socket-lis > ksocket-lisiscim-panel-socket:0-lisi > ksocket-rootssh-YLUWIgR5587J > mozilla_lisi0 wine-0755cef476a701cb18e5ae4d3 > orbit-lisi wine-4dacf155583b81de854dd52fa > pulse-2L9K88eMlGn7 xauth.dnfBcp > lisi@Tux-II:/tmp$ > > Can anyone explain? http://www.gnu.org/proprietary/proprietary-surveillance.html#SpywareInChrome http://www.gnu.org/proprietary/proprietary-surveillance.html#SpywareInFlash https://www.eff.org/deeplinks/2008/02/adobe-pushes-drm-flash http://www.gnu.org/philosophy/free-software-even-more-important.html
Re: BTRFS failed
On воскресенье, 14 февраля 2016 г. 19:05:51 MSK, Bhasker C V wrote: But for sure there is data in the volume. btrfs-show-super reports nicely the btrfs filesystem Can someone help me how to proceed further ? I recommend asking for recovery instruction in bt...@vger.kernel.org list as a last resort, the devs there might be more helpful.
Re: recommendation for software to make mp4 from a few stils (+ audio track)
On Sun, 14 Feb 2016 20:27:34 -0800 Dan Hitt wrote: > Could anybody please recommend a piece of free software that can take > a few still images together with an audio track and make an mp4 with > them? > > (So i guess it is conceptually something that could produce a timed > slide show, but of course if it offered effects for transition from > one image to the next that would be better.) > > Command line or gui would be fine, but i would like something whose > sources were available so that if necessary i could tune it. > > Thanks in advance for any clues. > > dan > I recommend OpenShot. It is libre and in the repository.
Re: BTRFS failed
On понедельник, 15 февраля 2016 г. 13:50:57 MSK, Jonathan Dowland wrote: On Sun, Feb 14, 2016 at 09:10:07PM +0300, Adam Wilson wrote: Surely you mean LUKS on top of btrfs? I don't think that's possible. If you want btrfs and encryption the advice is to do the encryption *underneath* btrfs, because btrfs does not support encryption itself. Why, you can also enable hardware encryption in SSD sometimes :) It might not be so strong as LUKS though. Does TRIM work on LUKS, BTW? Certainly barriers shouldn't work, that's probably why Bhasker's FS was damaged.
Re: Can't recover my graphic session
On Mon, 15 Feb 2016 01:19:02 +0100 Eric wrote: > Hi, > > I'm facing an annoying issue on my debian and hope it's the right > place to talk about it: when I lock my screen or when it enters in > screensaver mode, few minutes after I can't get access to my graphic > session anymore. This isn't what your screenshots appear to show at all. You describe a situation where you cannot access the desktop after your screen blanks/locks when you try to unlock the screen; your screen captures demonstrate a failure to load your login manager on boot. Which of these issues is it? > screencaptures when it bugs: http://imgur.com/a/hVyGd Also, the desktop environment used shouldn't have anything to do with this second issue, rather your LM. What login manager do you use? If in doubt, try dpkg-reconfigure (lightdm or gdm or xdm or whatever).
Re: changing partition names
On Sun, 14 Feb 2016 22:33:23 -0500 Frank McCormick wrote: > On 14/02/16 07:56 PM, Charlie Kravetz wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > On Sun, 14 Feb 2016 19:11:37 -0500 > > Frank McCormick wrote: > > > >> On 14/02/16 05:00 PM, rlhar...@oplink.net wrote: > >>> On Sun, February 14, 2016 2:42 pm, Frank McCormick wrote: > Can I just use fdisk or fsdisk to dump the existing partition > record edit the file to change sda4 to sda3 and then use fdisk > or sfdisk to read the file and create a properly named partition > record ? > >>> > >>> To rename partitions, I use gnome-disk-utility. For some > >>> operations I use GParted. I tend to get into trouble when using > >>> fdisk or fsdisk. > >>> > >>> Russ > >>> > >> > >> > >>Unfortunately neither of those can do what I need. > >> This is what I have now from sfdisk -l > >> > >> label: dos > >> label-id: 0x5a74aac4 > >> device: /dev/sda > >> unit: sectors > >> > >> /dev/sda1 : start=2048, size= 194560, type=7 > >> /dev/sda2 : start= 196608, size=8192, type=7 > >> /dev/sda4 : start=82116608, size=74131456, type=83, > >> bootable > >> > >> this is what I need to change to /dev/sda3 > >> > >> sda1 and sda2 are the Windows partitions. sda4 is Debian > >> > > > > Debian should not care if a partition number is missing. It should > > still work. The only way I know to renumber a partition is to delete > > the ones after the missing number. Then you can create new > > partitions, starting at the empty space. > > > > - -- > >Yes it does work...but it just seems weird to me :) Maybe it's my > OCD kicking in but they should be sda1 sda2 sda3 :) This is literally just OCD. There is nothing wrong with having sda1/sda2/sda4 as opposed to sda1/sda2/sda3 (though I admit the latter is more aesthetically pleasing), just as sda1/sda5/sda9 is equally valid. Just fight your OCD. Debian will survive having uneven partition numbering, and will continue to work tickety-boo.
Re: GRUB failure after updates
On Sun, 14 Feb 2016 18:32:08 + (UTC) mat...@comcast.net wrote: > I have a single core pentium processor system. Not sure about the > version of Debian Linux however I do know: > > > GRUB v1.99-27 > > GNOME Version 3.4.2 For your information, this would appear to be Debian 7.
Re: Unexplained caching/journaling action...
On Mon, 15 Feb 2016 02:40:08 +0100 Francesco Ariis wrote: > On Sun, Feb 14, 2016 at 09:44:09PM +0300, Adam Wilson wrote: > > On Sat, 13 Feb 2016 11:19:21 +0100 Rastko > > wrote: > > > > > Hi, > > > > > > and welcome me to the group :P > > > > You are welcome, I guess. > > > > [...] > > Are you *that* sour on Mondays? Yep. Anyway: > The title might be misleading, but I'm experiencing weird behavior > using GNOME3 desktop under Debian 3.16.0-amd64, in that some disk > operations and things like generating keys, have delayed feedback, > for example, I create a key, Documents collection, and such, and > nothing happens, until a couple of minutes later, by which time I've > tried several times, and it turns out every time I succeeded. But > there was no feedback. > I create a key, Documents collection 'Create a key'- this could mean anything. An RSA key? A GPG key? An SSH key? What? I also don't see why GNOME should interfere with things that are essentially command-line operations such as that. Is this some strange GNOME auto-keygen thing? 'Documents collection' - does this mean he has navigated to the Documents folder in Nautilus? Does it mean he has opened the Evince document viewer? > no feedback Where? Via notifications? I wouldn't expect SSH keygen/GPG keygen/whatever to generate GNOME 3 notifications. Forgive my confusion- but I am quite confused.
Re: changing partition names
Why would you want to renumber the partition ? It provides absolutely no benefit and can break things such as the bootloader which may seek data on partitions identified by their numbers. it can get a situation where the partitions are not in the number orde, and some fdisks complain about that, what may make some people feel uncomfortable, but I now of no case where it matters really. here numbers are only name, no more jdd