id
stringlengths
1
7
postTypeId
stringclasses
1 value
acceptedAnswerId
stringlengths
1
7
creationDate
stringdate
2009-01-08 07:47:55
2024-03-31 23:33:05
score
stringclasses
504 values
viewCount
stringlengths
1
7
body
stringlengths
24
34.3k
ownerUserId
stringlengths
1
7
lastEditorUserId
stringlengths
1
7
lastEditDate
stringdate
2010-07-28 20:43:11
2024-04-07 06:16:28
lastActivityDate
stringdate
2010-07-29 14:11:46
2024-04-07 06:16:28
title
stringlengths
13
150
tags
listlengths
1
5
answerCount
stringclasses
45 values
commentCount
stringclasses
47 values
contentLicense
stringclasses
3 values
comments
listlengths
0
56
acceptedAnswer
dict
answers
listlengths
0
82
communityOwnedDate
stringclasses
232 values
favoriteCount
stringclasses
2 values
closedDate
stringlengths
23
23
lastEditorDisplayName
stringclasses
890 values
ownerDisplayName
stringlengths
2
28
1637
1
1640
2010-08-08T01:49:42.307
36
22082
<p>I'm thinking of having /tmp on its own partition... what would be a good filesystem to format it with?</p> <p>The reason I ask is because the data being stored in /tmp is not permanent, so I don't need journaling, a fancy index, or anything.</p>
5
5
2010-08-08T03:35:48.680
2019-09-05T20:06:54.850
Good filesystem for /tmp?
[ "filesystem", "tmp" ]
8
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I sometimes find moving <code>/tmp</code> to ram (<code>tmpfs</code>) is the best solution (Especially on my setups which use a lot of disk intensive IO stuff - MySQL, etc) if you have enough RAM to feed it.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-08-08T03:30:43.800", "id": "1506", "postId": "1640", "score": "2", "text": "I have 2GB of RAM, so that's probably not an option.", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-08-08T06:00:40.200", "id": "1508", "postId": "1640", "score": "2", "text": "Actually this should be plenty of RAM. /tmp usually isn't used *that* much with normal usage of your system (whatever that is).", "userDisplayName": null, "userId": "923" }, { "creationDate": "2010-08-08T06:27:01.570", "id": "1510", "postId": "1640", "score": "3", "text": "tmpfs will use swap if it needs to - so your swap space can do double duty as /tmp, no need to allocate extra space.", "userDisplayName": null, "userId": "941" }, { "creationDate": "2010-08-08T14:43:42.123", "id": "1535", "postId": "1640", "score": "0", "text": "@George How big would you intend to make your /tmp partition?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-08T15:35:08.310", "id": "1537", "postId": "1640", "score": "0", "text": "Is 64 mb sufficient?", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-08-08T15:59:40.927", "id": "1538", "postId": "1640", "score": "1", "text": "@George that's a plenty big enough partition size for `/tmp` - on my desktop I at best use 12MB, though on my servers `/tmp` can get crazy big when customers do stupid things in MySQL and scripting languages that cause `/tmp` to get a lot bigger. The brilliant thing with tmpfs is it won't just take 64MB of ram away that's just a hard ceiling. tmpfs will scale as more space is needed - so you only consume in tmpfs what is needed at that time.", "userDisplayName": null, "userId": "41" }, { "creationDate": "2013-06-22T15:03:22.500", "id": "392985", "postId": "1640", "score": "0", "text": "Here is some criticism of tmpfs on /tmp: [tmpfs considered harmful](http://rwmj.wordpress.com/2012/09/12/tmpfs-considered-harmful/) What do you think of that?", "userDisplayName": null, "userId": "24432" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-08T02:47:44.447", "id": "1640", "lastActivityDate": "2011-08-07T13:27:28.583", "lastEditDate": "2011-08-07T13:27:28.583", "lastEditorDisplayName": null, "lastEditorUserId": "41", "ownerDisplayName": null, "ownerUserId": "41", "parentId": "1637", "postTypeId": "2", "score": "30" }
[ { "accepted": true, "body": "<p>I sometimes find moving <code>/tmp</code> to ram (<code>tmpfs</code>) is the best solution (Especially on my setups which use a lot of disk intensive IO stuff - MySQL, etc) if you have enough RAM to feed it.</p>\n", "commentCount": "7", "comments": [ { "...
null
null
null
null
null
1644
1
2391
2010-08-08T04:43:13.420
13
11890
<p>I have a USB hard disk that I want to mount on boot and in a specific location. How can I make that drive mount and stay available (say for local backups, etc.) even though no one's logged in?</p> <p>It seems that udev or something similar grabs hold of the disk. If I put an entry in /etc/fstab that tries to specifically mount this disk (by UUID), then that mount process and the udev mount process seem to end up in a battle with each other and the disk doesn't get mounted.</p>
862
667
2010-08-08T05:17:09.310
2012-08-15T08:42:15.750
Mounting a USB disk in a permanent location
[ "mount", "usb-drive", "fstab" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-08T08:47:30.073", "id": "1515", "postId": "1644", "score": "0", "text": "Can you add the line you added in `/etc/fstab`? Are there any log messages when you plug your drive in? Maybe it helps to raise the log level in `/etc/udev/udev.conf`.", "userDisplayName": nul...
{ "accepted": true, "body": "<p>Mount the disk using udev. Place the rules from this <a href=\"http://wiki.archlinux.org/index.php/Udev#Mount_under_.2Fmedia.3B_use_partition_label_if_present.3B_support_LUKS_encryption\" rel=\"nofollow\">wiki</a> into <code>/etc/udev/user.rules</code> and reboot (or reconnect the USB HDD) . There are several favors of rules in the wiki (that's why I didn't list them here), choose the one that best suits your needs (e.g. you need a specific normal user to be able to unmount it).</p>\n\n<p>Perusing <code>/lib/udev/rules.d/80-udisks.rules</code> will help you understand what's udev doing to <strong>your</strong> hard disk.</p>\n\n<p>Besides the udev rules I mentioned above I think there's another approach you can take: instruct udisks (through udev) to leave your disk alone and then mount it through fstab.</p>\n\n<p>This code works on my system</p>\n\n<pre><code>ACTION!=\"add|change\", GOTO=\"my_udisks_end\"\nSUBSYSTEM!=\"block\", GOTO=\"my_udisks_end\"\n\nENV{ID_TYPE}!=\"disk\", GOTO=\"my_udisks_end\"\nENV{ID_BUS}!=\"ata\", GOTO=\"my_udisks_end\"\nENV{DEVTYPE}!=\"partition\", GOTO=\"my_udisks_end\"\n\nKERNEL==\"sd*|hd*\", ENV{UDISKS_PRESENTATION_NOPOLICY}=\"1\"\n\nLABEL=\"my_udisks_end\"\n</code></pre>\n\n<p>but is generic and includes all partitions. To be able to target your particular hdd/partition use <code>udevadm info --query=all -n /dev/sdX</code> and then match on some of those particular atributes in the udev rules. </p>\n\n<p>A good resource to help you in this is <a href=\"http://reactivated.net/writing_udev_rules.html\" rel=\"nofollow\">Writing udev rules</a>. Unfortunately it contains some outdated info (<code>udevinfo</code> was replaced by <code>udevadm indo</code>). I assure you, though, it's a worthwhile read -- udev is a central piece of architecture nowadays and you can accomplish a lot by using it. It's also pretty flexible. </p>\n\n<p>It's also easy to make mistakes in udev rules :). Use <code>udevadm test $(udevadm info -q path -n /dev/sdX)</code> to take a 'peek' at what's udev doing.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-17T21:12:24.943", "id": "2486", "postId": "2391", "score": "0", "text": "Awesome. This looks very much like what I was looking for. Seems I have some reading to do...", "userDisplayName": null, "userId": "862" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-16T17:16:43.463", "id": "2391", "lastActivityDate": "2012-08-15T08:42:15.750", "lastEditDate": "2012-08-15T08:42:15.750", "lastEditorDisplayName": null, "lastEditorUserId": "59676", "ownerDisplayName": null, "ownerUserId": "289", "parentId": "1644", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>You could try referencing it by /dev/... instead of by UUID. It is most likely /dev/sdb*, you can check this by going to System -> Administration -> System Monitor and clicking on the 'File Systems' tab. You will need to have inserted the USB drive first and let it be automat...
null
null
null
null
null
1647
1
null
2010-08-08T06:57:46.257
11
1700
<p>I'm trying to use gedit as my main editor, and am looking for help with some tricky features. For each of the following, can people help me out with how to install and configure the feature?</p> <ul> <li>code folding</li> <li>pylint support</li> <li>splitview support</li> <li>spell check</li> <li>whitespace deletion</li> <li>regex-powered find and replace</li> <li>any other features I should know about?</li> </ul> <p>Tags: Plugins, IDE</p>
324
null
2010-10-17T14:42:11.427
2012-09-05T19:38:18.107
Support for various features in gedit
[ "development", "plugins", "ide", "gedit" ]
7
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>See <a href=\"http://live.gnome.org/Gedit/Plugins\" rel=\"nofollow\">http://live.gnome.org/Gedit/Plugins</a></p>\n\n<p>You install them by downloading the plugin's files and copying them to <code>~/.gnome2/gedit/plugins</code>.</p>\n", "commentCount": "2", "comments":...
null
null
null
user2405
null
1649
1
14738
2010-08-08T07:18:14.657
19
17687
<p>What is the best alternative to Adobe Lightroom on Linux/Ubuntu?</p>
958
527764
2020-07-23T04:33:00.210
2020-07-23T04:33:00.210
Lightroom alternative?
[ "software-recommendation", "image-editor" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I have been quite happy with using <a href=\"http://bibblelabs.com/\">Bibble 5</a>.</p>\n\n<p>While it is a commercial program, I find it outstrips all open-source solutions in both usability and speed - at least for my uses. And they have quite good Linux support, including .deb-packages and simultaneous releases on all platforms.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-06T06:48:37.280", "id": "37687", "postId": "14738", "score": "0", "text": "Yes, Bibble is great. This was my final choice.", "userDisplayName": null, "userId": "958" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-24T14:07:47.230", "id": "14738", "lastActivityDate": "2010-11-24T14:07:47.230", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6084", "parentId": "1649", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>I quite like F-Spot + UFRAW for organising photos and processing them but I also use <a href=\"http://darktable.sourceforge.net/\">Darktable</a> for when I get bored of UFRAW.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLic...
null
null
null
null
null
1656
1
1657
2010-08-08T09:08:10.103
5
701
<p>I used gksudo nautilus (not through the terminal but through the 'Open With' command) for some copy &amp; paste stuff that requires root access.</p> <p>But now whenever I open the file browser (Nautilus) to access my local folder, it doesn't open normally, but opens with root access as if I had used <code>gksudo nautilus</code> again.</p> <p>Only Trash is able be to opened normally without any root access.</p> <p>How can I get back the normal, unprivileged behavior for nautilus?</p>
959
8844
2012-11-17T00:27:15.813
2012-11-17T00:27:15.813
Nautilus automatically browses as root
[ "nautilus", "root", "sudo" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Go to the <code>/home/user/.local/share/applications/</code> directory, in there is you users custom mime settings. One or more files will be called userapp-<em>SOMETHING</em>.desktop just delete the one causing problems - you can examine which one you need to delete by opening them with gedit.</p>\n\n<p>You might have to re-login for changes to take affect but I don't think so.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-08T09:51:52.937", "id": "1657", "lastActivityDate": "2012-08-13T11:13:59.410", "lastEditDate": "2012-08-13T11:13:59.410", "lastEditorDisplayName": null, "lastEditorUserId": "59676", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "1656", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Go to the <code>/home/user/.local/share/applications/</code> directory, in there is you users custom mime settings. One or more files will be called userapp-<em>SOMETHING</em>.desktop just delete the one causing problems - you can examine which one you need to delete by openi...
null
null
null
null
null
1662
1
1666
2010-08-08T10:35:07.380
4
5689
<p>I have compiled my own kernels for a while now. I started when I got my i7 processor and wanted its turbo boost to work properly. I've since bought an SSD so continue to benefit from a more recent kernel than the repo version.</p> <p>With my most recent builds, I've started getting weird CPU spikes. While it could be a number of different things causing this, I'd like to focus on getting the kernel "right" and if possible, more optimised than ever.</p> <p>I follow the <a href="https://help.ubuntu.com/community/Kernel/Compile#Alternate%20Build%20Method%3a%20The%20Old-Fashioned%20Debian%20Way" rel="nofollow">"Old-Fashioned Debian" on the Kernel/Compile</a> wiki. I do this because I'm building from a direct download from <a href="http://kernel.org" rel="nofollow">kernel.org</a>. <strong>First questions: Should I get my source from somewhere else and should I use a different build method?</strong></p> <p>The guide suggests getting the current <code>.config</code> like so:</p> <pre><code>cp -vi /boot/config-`uname -r` .config </code></pre> <p>This is all well and good if your current configuration works well but I'm concerned mine contains a problem... <strong>Second question: Is there a good Ubuntu-friendly, i7-friendly default <code>.config</code> file I can download from somewhere?</strong></p> <p>There are a lot of kernel patches floating around at the moment. Some promise a more responsive system through patching IO bugs, some give "better" schedulers (BFS, et al) but it's hard to find decent benchmarks to see if these are worthwhile features of if they're just unstable junk. <strong>Third: Are there any patches you would apply to 2.6.35 to make it more compatible with Lucid?</strong></p> <p>I fear it's <code>make menuconfig</code> where I screw things up. I try to turn off drivers I don't need and select options that look like they'll optimise things but, truth be told, I'm not a kernel developer; I don't know for certain if an option will break everything or even help at all. <strong>Fourth: How would you optimise the <code>.config</code>/build-process for an i7 and SSD?</strong></p>
449
449
2013-11-19T00:55:54.100
2013-11-19T00:55:54.100
The best way to compile a kernel for an i7 processor?
[ "kernel", "compiling" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-29T22:19:57.137", "id": "10480", "postId": "1662", "score": "0", "text": "Hello Oli. I would like to know about your \"weird CPU spikes\". Please, can you check if your problem matches the description in the following bug report? https://bugs.launchpad.net/ubuntu/+sour...
{ "accepted": true, "body": "<p>From my point of view <a href=\"http://kernel.org/\" rel=\"noreferrer\">kernel.org</a> is the right place to get a kernel. Usually I clone the git repository from mainline. Maybe you could also use a recent vanilla kernel and apply the patches from Ubuntu. You'll find the diff at the <a href=\"http://packages.ubuntu.com/lucid/linux-image-2.6.32-24-386\" rel=\"noreferrer\">linux-image package page</a>. Be aware that there could be some conflicts which you have to resolve. So the first version is probably better.</p>\n\n<p>I guess you wouldn't find any good <code>.config</code> in the wild. What I find helpful is <code>make localmodconfig</code> in the kernel source. First you copy your old config to <code>/usr/src/linux-2.6</code> (or the place where your kernel sources are) and then you execute this command. It will disable all module which are not loaded. So you gain more customization in the first place. </p>\n\n<p>I'm not aware of any patches which are good for Lucid. </p>\n\n<p>I'm a member of a local <a href=\"http://lug-jena.de/\" rel=\"noreferrer\">LUG</a>. We make from time to time kernel workshops. Here all members meet. We configure a kernel and talk about our knowledge of different entries. In the end all profit from it and this helps to build better kernels. So if I look for optimisation I would ask our members. If that is not an option, reading the <a href=\"http://lkml.org/\" rel=\"noreferrer\">Linux Kernel mailing list</a> could also help to find a solution. You'll find often some discussion which are helpful. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-08T11:30:15.363", "id": "1529", "postId": "1666", "score": "0", "text": "I'm not sure pulling Ubuntu patches for 2.6.32 to 2.6.35 is wise given that a lot of them are backports from 2.6.33. Cherry picking through all of them sounds like a deeply dull task :) Otherwise some good points. Have a +1", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-08T11:10:41.067", "id": "1666", "lastActivityDate": "2010-08-08T11:10:41.067", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "236", "parentId": "1662", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>From my point of view <a href=\"http://kernel.org/\" rel=\"noreferrer\">kernel.org</a> is the right place to get a kernel. Usually I clone the git repository from mainline. Maybe you could also use a recent vanilla kernel and apply the patches from Ubuntu. You'll find the dif...
null
null
null
null
null
1668
1
1676
2010-08-08T11:29:02.963
5
8526
<p>I want to install Debian Unstable alongside Maverick but I don't want to lose my data.</p> <p>Also my CD drive is Broken.</p>
305
158442
2017-02-28T03:39:01.223
2017-02-28T03:39:01.223
How do I dual-boot with Debian?
[ "dual-boot", "10.10", "debian" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><strong>Installing Debian without a CD drive</strong></p>\n\n<p>If you have the partition space to install Debian along side Ubuntu as a dual boot setup (as mentioned in previous answers), then as you have a broken CD drive you can install Debian (and other Linux distributions) from a USB memory stick.</p>\n\n<p>Using the System > Administration Startup Disk Creator you can create a USB memory stick from any of the Ubuntu CD images, the .iso files. You may be also able to use debian .iso files with the same startup disk creator.</p>\n\n<p>Alternatively, you can use <a href=\"http://unetbootin.sourceforge.net/\" rel=\"nofollow\">unetbootin</a> which will create live and install USB sticks from a wide range of distributions (it will even download the the .iso files for you for some distributions).</p>\n\n<p>Installation from a USB memory stick is exactly the same as from a CD, however for some PC hardware when first switching on the PC you may need to press the escape key when you see the manufacturers logo to bring up a boot menu allowing you to select the USB memory stick as the boot device.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-09T11:39:37.047", "id": "1625", "postId": "1676", "score": "0", "text": "yes! it worked well", "userDisplayName": null, "userId": "305" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-08T13:24:00.193", "id": "1676", "lastActivityDate": "2010-08-08T13:24:00.193", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "359", "parentId": "1668", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>The normal process would be to reparition your HD (if you don't have another one), install Debian into the new free space, don't install a new grub, edit Ubuntu's grub to boot to Debian and you're done.</p>\n\n<p>However, I've just found <a href=\"http://lubi.sourceforge.net/...
null
null
null
null
null
1680
1
1681
2010-08-08T15:44:56.767
3
606
<p>I have an EyeTV Hybrid DVB-C USB (plus a few Pinnacle DVB-T ones) receiver which works well under OS X, but I would like to have recording under Ubuntu instead - preferrably with EPG -and share with DNLA to my tv set.</p> <p>What would be the best way to do so in terms of programs etc?</p>
963
null
null
2010-08-08T15:55:46.840
Best way to set up and record DVB-C PAL and share recorded streams with DNLA on Ubuntu?
[ "server" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>MythTV. Big and bulky but it <a href=\"http://www.mythtv.org/wiki/Category%3aVideo_capture_cards\" rel=\"nofollow\">supports most hardware</a> and has a <a href=\"http://www.mythtv.org/wiki/UPnP\" rel=\"nofollow\">built-in UPnP server</a>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-08T17:13:21.577", "id": "1543", "postId": "1681", "score": "0", "text": "With that you may want to go with Mythbuntu [http://www.mythbuntu.org] which has MythTV heavily integrated into the Ubuntu Desktop environment.", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-08T15:55:46.840", "id": "1681", "lastActivityDate": "2010-08-08T15:55:46.840", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1680", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>MythTV. Big and bulky but it <a href=\"http://www.mythtv.org/wiki/Category%3aVideo_capture_cards\" rel=\"nofollow\">supports most hardware</a> and has a <a href=\"http://www.mythtv.org/wiki/UPnP\" rel=\"nofollow\">built-in UPnP server</a>.</p>\n", "commentCount": "1", ...
null
null
null
null
null
1685
1
1804
2010-08-08T18:09:33.143
16
3422
<p>So what ever happened to hybrid suspend, where it would suspend to both RAM and disk? It was kind of hot a few years ago, but it seems it was dropped. Is there any way to set this up in recent Ubuntu versions?</p>
880
null
null
2013-09-12T22:36:21.720
Whither hybrid suspend?
[ "suspend", "hibernate" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-08T22:38:03.933", "id": "1570", "postId": "1685", "score": "0", "text": "What's the point of hybrid suspend??", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-09T04:46:23.703", "id": "1602", "postId": "1685", "score":...
{ "accepted": true, "body": "<p>There is a program called <code>pm-is-supported</code> that can be used to check for the suspend capabilities of the system.</p>\n\n<p>On my system here are the results (0 means supported, 1 means unsupported):</p>\n\n<pre><code>$ pm-is-supported --suspend ; echo $? \n0 \n$ pm-is-supported --hibernate ; echo $?\n0\n$ pm-is-supported --suspend-hybrid ; echo $?\n1\n</code></pre>\n\n<p>The manpage of <code>pm-is-supported</code> suggests that s2both supports hybrid suspend. I've installed s2both, available in the <code>uswsusp</code> package but it still reports that hybrid suspend is not supported. I have a hunch that it needs a reboot because it updated the initrd image. I'm gonna reboot and report back. <em>Wish me luck</em>.</p>\n\n<p><strong>Update:</strong> Running <code>sudo s2both</code> wrote the snapshot to disk and suspended to RAM correctly, however when I pressed a key to resume the system rebooted (and didn't restore the snapshot from disk).</p>\n\n<p>I think there's something wrong with the <code>uswsusp</code> package in ubuntu. The <code>splashy</code> package (which is used by <code>uswsusp</code>) has a file conflict with <code>lsb-base</code> which has been left unfixed since Jaunty ( <a href=\"https://bugs.launchpad.net/ubuntu/+source/splashy/+bug/328089\">https://bugs.launchpad.net/ubuntu/+source/splashy/+bug/328089</a> )</p>\n\n<p>Try running <code>sudo s2both</code> or <code>sudo pm-suspend-hybrid</code>, see if it works on your system.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-10T17:54:16.973", "id": "1764", "postId": "1804", "score": "0", "text": "I tried `s2both` and got the same results as you. I also tried switching to a tuxonice kernel and telling pm-utils to use tuxonice, and then using the tuxonice hybrid suspend via `pm-suspend-hybrid`. The screen never turned on when I resumed, but Control+Alt+Delete worked to reboot, so I think it actually worked, but failed to turn on the screen.", "userDisplayName": null, "userId": "880" }, { "creationDate": "2010-10-10T21:05:23.250", "id": "5788", "postId": "1804", "score": "0", "text": "I guess it's not supported.", "userDisplayName": null, "userId": "880" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T22:32:53.410", "id": "1804", "lastActivityDate": "2010-08-09T23:26:57.267", "lastEditDate": "2010-08-09T23:26:57.267", "lastEditorDisplayName": null, "lastEditorUserId": "289", "ownerDisplayName": null, "ownerUserId": "289", "parentId": "1685", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>There is a program called <code>pm-is-supported</code> that can be used to check for the suspend capabilities of the system.</p>\n\n<p>On my system here are the results (0 means supported, 1 means unsupported):</p>\n\n<pre><code>$ pm-is-supported --suspend ; echo $? \n0 \n$...
null
null
null
null
null
1686
1
1688
2010-08-08T18:38:32.540
9
13092
<p>Some interest in Excel 2003, but primarily in Excel 2007. Wondering if advanced features, such as macros can be made to work flawlessly. Or if there are any major issues I should know about.</p> <p>Using an alternative open source native program is unfortunately out of the question due to complex macro/VBA heavy spreadsheets.</p>
866
169736
2014-05-12T19:48:14.493
2014-05-12T19:48:14.493
How well does Microsoft Office Excel work in Wine?
[ "wine", "microsoft-office" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><a href=\"http://appdb.winehq.org/objectManager.php?sClass=version&amp;iId=12812\">Excel 2007</a> should work well with some adjustments.</p>\n\n<p><a href=\"http://appdb.winehq.org/objectManager.php?sClass=version&amp;iId=2736\">Excel 2003</a> is unlikely to work properly.</p>\n\n<p>Always look on the <a href=\"http://appdb.winehq.org/\">wine application database</a> to find out how well a program can be run in wine.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2017-10-17T06:29:32.067", "id": "1545733", "postId": "1688", "score": "0", "text": "Why should the 2003 version be less compatible? I always had the impression that older windows software is more likely to work with wine... appdb says platinum on 2003 and only bronze on 2007.", "userDisplayName": null, "userId": "173744" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-08T18:55:35.547", "id": "1688", "lastActivityDate": "2010-08-08T18:55:35.547", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "667", "parentId": "1686", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p><a href=\"http://appdb.winehq.org/objectManager.php?sClass=version&amp;iId=12812\">Excel 2007</a> should work well with some adjustments.</p>\n\n<p><a href=\"http://appdb.winehq.org/objectManager.php?sClass=version&amp;iId=2736\">Excel 2003</a> is unlikely to work properly.</...
null
null
2014-05-13T03:13:16.523
null
null
1691
1
3028
2010-08-08T19:13:06.340
14
5853
<p>gtk-recordMyDesktop outputs .ogv files that seem perfectly fine - they work well in Totem and VLC. However, if I try to edit them in openshot or kdenlive, the editor either crashes (kdenlive) or won't show the video properly (openshot). PiTiVi appears to work but then locks up when it tries to render the video.</p> <p>Using video conversion tools, such as ffmpeg outputs a video that is a jumble of colours; although it is just about possible to make out some movement. <img src="https://i.stack.imgur.com/qKTLR.png" alt="alt text"></p> <p>The only way I've managed to edit the videos is to use DeVeDe to create a DVD .iso, mount the ISO and then edit the .VOB file(s).</p> <p>This is a bit of a faff; does anyone know of a better way around this?</p>
667
667
2010-08-23T15:48:11.343
2016-09-02T19:22:27.430
Is there an easy way to edit gtk-recordMyDesktop videos?
[ "video", "video-editor", "recordmydesktop" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-08T22:34:30.083", "id": "1569", "postId": "1691", "score": "0", "text": "You could try to convert it with vlc since it knows how to play it, and be sure to set the frame-rate when converting.", "userDisplayName": null, "userId": "455" }, { "creationDate...
{ "accepted": true, "body": "<p>You need to convert them first... they never worked without converting (at least for me):</p>\n\n<pre><code>mencoder -idx out.ogv -o out.avi -oac mp3lame -ovc lavc\n</code></pre>\n\n<p>Then you can edit them in your favourite video editor (I for one prefer Avidemux).</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2012-09-06T09:22:18.547", "id": "230073", "postId": "3028", "score": "0", "text": "This works for short videos. But, mencoder fails with \"Too many audio packets in the buffer: (4096 in X bytes).\" on long videos (for various values of X). Is there any way around it?", "userDisplayName": null, "userId": "87880" }, { "creationDate": "2014-08-31T14:09:42.963", "id": "704093", "postId": "3028", "score": "0", "text": "After failing with `ffmpeg` and `avconv`, I tried `memcoder` which unfortunately also fails (\"Too many audio packets in the buffer\"). This answer should not be marked as accepted, it is not a solution to this problem.", "userDisplayName": null, "userId": "177437" }, { "creationDate": "2016-02-03T23:42:35.960", "id": "1081754", "postId": "3028", "score": "0", "text": "Even with a short video, this `mencoder` method fails on my Ubuntu 14.04 with the error \"Could not open codec. FATAL: Cannot initialize video driver.\" Using `aconv` as mentioned in http://askubuntu.com/a/123528/14601 however worked for me.", "userDisplayName": null, "userId": "14601" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-24T11:28:26.807", "id": "3028", "lastActivityDate": "2011-12-19T19:20:07.370", "lastEditDate": "2011-12-19T19:20:07.370", "lastEditorDisplayName": null, "lastEditorUserId": "662", "ownerDisplayName": null, "ownerUserId": "662", "parentId": "1691", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>Try lives, LiVES is a Video Editing System, it's available from the repositories.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2012-09-01T03:34:16.330", "id": "227549", "postId": "1710", "score": "0", "tex...
null
null
null
null
null
1694
1
2958
2010-08-08T19:46:56.757
8
10991
<p>I know there are several video editing programs: PiTiVi, Openshot, etc</p> <p>However I am unsure if I can transfer video footage from a DV tape to my computer. In other operating systems (with the correct software) I can connect my firewire camcorder or tape deck to a pc, and record the video to file in realtime.</p> <p>Is this possible in Ubuntu and if so which software is needed?</p>
866
null
null
2020-04-04T20:27:41.137
Is it possible to import DV video using Firewire?
[ "video", "hardware", "video-editor" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-08T19:51:34.797", "id": "1558", "postId": "1694", "score": "0", "text": "Preferably a GTK application, or possibly a CLI app?", "userDisplayName": null, "userId": "866" } ]
{ "accepted": true, "body": "<p>I use the command line program <code>dvgrab</code> to pull from my minidv camcorder over firewire.</p>\n\n<p>The command I use is: </p>\n\n<pre><code>sudo dvgrab -a -format raw -rewind -t prefix-\n</code></pre>\n\n<p>The permissions are messed up, which is why you need sudo. Afterwards, just do:</p>\n\n<pre><code>sudo chown username:username prefix-*.dv\n</code></pre>\n\n<p>The rewind command rewinds the tape, so leave it off if you don't want to rewind.</p>\n\n<p>The prefix- gets appended to the file name to help you identify it. The files are automatically split when dvgrab finds a time gap or every 2GB.</p>\n\n<p><a href=\"http://manpages.ubuntu.com/dvgrab\" rel=\"nofollow noreferrer\">Manpage for the <code>dvgrab</code> command <img src=\"https://i.stack.imgur.com/Eq5sS.png\" alt=\"Manpage icon\"></a> has a few more useful options.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-07-04T16:11:49.157", "id": "194805", "postId": "2958", "score": "0", "text": "Thank you brousch. You made my old Sony DCR-HC24E live again in Ubuntu 12.04. Only added -srt to the command:\n'sudo dvgrab -srt -a -format raw -rewind -t prefix-'", "userDisplayName": "user75018", "userId": null }, { "creationDate": "2014-04-16T10:58:57.953", "id": "588744", "postId": "2958", "score": "0", "text": "replace \"prefix-\" with the prefix you want to chose.", "userDisplayName": null, "userId": "83037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-23T15:46:55.557", "id": "2958", "lastActivityDate": "2012-07-05T04:34:59.913", "lastEditDate": "2012-07-05T04:34:59.913", "lastEditorDisplayName": null, "lastEditorUserId": "25798", "ownerDisplayName": null, "ownerUserId": "1654", "parentId": "1694", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>In short, <a href=\"https://help.ubuntu.com/community/Firewire\" rel=\"nofollow\">it's possible</a> but thanks to regression upon regression, it's a pain in the rear.</p>\n\n<p>In Lucid it involves telling udev to keep its paws off the firewire device and let it be a raw inte...
null
null
null
null
null
1695
1
null
2010-08-08T20:01:05.053
22
43995
<p>It's rather frustrating to me that I can't watch any of the videos on Apple's site. Is there a QuickTime plugin for Chrome or Firefox, and if not, why?</p>
108
43660
2012-04-22T09:17:20.847
2016-06-22T22:43:10.613
Watch QuickTime videos in the browser?
[ "browser", "plugins", "quicktime" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Odd... Works for me!</p>\n\n<p>I'm using the totem plugin which I thought shipped with Ubuntu. Have a look at <code>about:plugins</code> in the browser and see if you can see \"QuickTime Plug-in 7.something\"</p>\n\n<p>If you don't, check <code>totem-mozilla</code> is install...
null
null
null
null
null
1697
1
11137
2010-08-08T20:07:11.280
4
716
<p>I'm using GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.0) and start my Emacs session inside GNU screen. </p> <p>Since I upgraded to Ubuntu 10.04 and the version of <code>emacs-snapshot</code> there I encounter some problems. Sometimes Emacs hogs all RAM plus the same amount of swap space (2+2GB) and also eats all CPU time. When I send the process a SIGTERM the process stops eating CPU time, but the huge allocated amount of memory stays. Emacs itself doesn't take any key sequences. So usually I send the process a SIGKILL and it dies.</p> <p>Now I want to find out where the bug (if there is one) is located and want to do some debugging. I can see no special reason for this behavior. Sometimes it starts after Emacs is freshly started, sometimes I can work a whole day without problems, sometimes it happens in between. So I'm looking for a kind of debugging or monitoring the process. </p> <p>I tried <code>strace</code>, but this generates too much output. Strace output of an editing session could easily fill my whole hard drive. Running Emacs inside gdb would also not work, because if I remember correctly Ubuntu builds the software without debugging symbols. So do you have any advice on how I can find the (possible) bug? What would you suggest?</p>
236
527764
2018-10-08T07:45:32.603
2018-10-08T07:45:32.603
How can I debug/monitor Emacs to find out why it's using so much memory?
[ "10.04", "debug", "emacs" ]
3
4
CC BY-SA 4.0
[ { "creationDate": "2010-08-09T08:53:25.647", "id": "1618", "postId": "1697", "score": "0", "text": "GNU Emacs 23.2 was released in May; if you are not satisfied with Ubuntu's default 23.1, good chances are that the bug has already been fixed upstream.", "userDisplayName": null, "userId":...
{ "accepted": true, "body": "<p>I found the answer to this by accident. The problem was not emacs, but a malfunctioning GNOME keyring. When I start Emacs without the keyring daemon all is fine. So disabling it resolved my issue here.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-03T09:18:32.317", "id": "11137", "lastActivityDate": "2010-11-03T09:18:32.317", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "236", "parentId": "1697", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Perhaps the package <strong>emacs-snapshot-dbg</strong> might be of interest?</p>\n\n<p>\"This package contains the debugging symbols useful for debugging Emacs.\"</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC B...
null
null
null
null
null
1700
1
null
2010-08-08T20:26:19.253
25
36075
<p>Can someone please explain what Ubuntu's keychain or keyring is, as well as use cases for it?</p>
978
235
2011-09-16T05:01:25.990
2018-01-15T11:52:45.663
What is the "keyring" or "keychain"?
[ "security", "keyrings", "gnome-keyring", "keychain" ]
4
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-08T22:24:10.270", "id": "1568", "postId": "1700", "score": "1", "text": "The question should be more clear, there is no such thing as the \"ubuntu keychain\" .", "userDisplayName": null, "userId": "742" }, { "creationDate": "2014-08-13T06:01:37.583", ...
null
[ { "accepted": null, "body": "<p>Which keychain do you mean?</p>\n\n<ul>\n<li>There's the apt keyring, that is used for verifying downloaded packages. This helps to prevent malicious software from being installed via apt.</li>\n<li>There's your user keyring where good apps store passwords (such as mail passw...
null
null
null
null
null
1702
1
null
2010-08-08T20:35:24.910
2
2696
<p>OS: Ubuntu 10.04 64-bit I have searched alll over for how to enable these with the mupen emulator. Thought I might check and see if anyone here has knowledge on this. <a href="http://code.google.com/p/mupen64plus/" rel="nofollow">http://code.google.com/p/mupen64plus/</a> I'm really hoping I don't have to go back to Windows to use Project 64 to get these. And before anyone says "Project 64 rocks with wine" well I'm sure it does, but no Anti-Aliasing in wine... Thanks in advance! ^^</p>
null
236
2010-08-08T21:15:14.077
2010-09-10T22:22:10.740
How to enable anisotropic filtering and anti-aliasing with mupen64plus 1.99.3
[ "10.04", "video" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I think I figured out how to configure mupen to use AA &amp; AF. Problem is you have to configure config.cpp in the Rice Video plugin by hand. The option for multi-sampling and anisotropic filtering was already there, but set to 0. Using this guide I downloaded the HG and bui...
null
null
null
null
Ethan
1704
1
null
2010-08-08T21:18:14.797
3
6060
<p>I'm using an IBM Thinkpad X21 as a 3G router. It's running a server install of lucid. The laptop has the lid up most of the time. There is no X, just a plain console. The colsole blanks itself, but the LCD backlight is always on. </p> <p>The graphics chip is ATI Technologies Inc Rage Mobility P/M AGP 2x (rev 64).</p> <p>The following modules related to the framebuffer are now loaded:</p> <pre><code>$ lsmod | grep fb fbcon 35102 71 tileblit 2031 1 fbcon font 7557 1 fbcon bitblit 4707 1 fbcon vga16fb 11385 1 vgastate 8961 1 vga16fb </code></pre> <p>Can I make the LCD backlight turn off when the colsole is unused and have it turn on automatically when needed?</p>
980
236
2010-08-08T21:23:54.957
2011-06-07T12:46:26.153
Turning off the backlight on the console
[ "server", "thinkpad", "backlight" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You should be able to use setterm to do this:</p>\n\n<pre><code># turn power save on, blank after 10 mins, powerdown after 20mins\nsetterm -powersave on -blank 10 -powerdown 20\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2010...
null
null
2013-03-14T16:35:09.120
null
null
1705
1
null
2010-08-08T21:49:14.627
210
728794
<p>I'm creating a simple bash script and I want to create a select menu in it, like this:</p> <pre class="lang-none prettyprint-override"><code>$./script echo "Choose your option:" 1) Option 1 2) Option 2 3) Option 3 4) Quit </code></pre> <p>And according to user's choice, I want different actions to be executed. I'm a bash shell scripting noob, I've searched the web for some answers, but got nothing really concrete.</p>
356
507051
2017-12-13T16:35:39.390
2022-10-31T06:24:57.087
How can I create a select menu in a shell script?
[ "bash", "command-line", "scripts" ]
11
3
CC BY-SA 3.0
[ { "creationDate": "2018-11-19T15:33:54.547", "id": "1801832", "postId": "1705", "score": "5", "text": "The question is old and protected, but I use fzf. Try `seq 10 | fzf`. The drawback is that fzf is not installed by default. You can find fzf here: https://github.com/junegunn/fzf", "userDis...
null
[ { "accepted": null, "body": "<p>There is already the same question in <a href=\"https://serverfault.com/questions/144939/multi-select-menu-in-bash-script\">serverfault</a> answered. The solution there uses <a href=\"http://linux.die.net/man/1/whiptail\" rel=\"nofollow noreferrer\">whiptail</a>.</p>\n", ...
null
null
null
null
null
1708
1
null
2010-08-08T22:11:37.907
2
427
<p>For some reason my Ubuntu UNE installed using wubi takes about 30 minutes to start up.</p> <p>All I see is</p> <pre><code>- </code></pre> <p>with barely any harddrive activity</p> <ul> <li>This has happened since the first install (this behaviour is not observed on the live usb)</li> <li>The only thing installed previously was Windows 7 server edition</li> <li>I seem to have grub 2, then windows boot up manager, then grub 1</li> </ul> <p>Going into grub and manually loading the kernel, It gets stuck at:</p> <pre><code>[0.797171] kernel)thread_helper+0x6/0x10] </code></pre> <p>I'm assuming it's either this task or the task after it that is blocking.</p> <p>I also get the following error:</p> <pre><code>VFS: open route device &quot;(null)&quot; ... please append a correct &quot;root=&quot; boot kernel panic not syncing vfs unable to mount root fs on unknown-block(8,1) PID 1, comm: swapper not trained call trace: - ?printk - panic - mount_block_root - ?sys_mknod - mount_root - prepare_namespace - ? sys_access - kernel_init - ?kernel_init - kernel_thread_helper </code></pre>
982
527764
2021-05-16T11:10:32.783
2021-05-16T11:11:05.453
UNE takes about 30 minutes to start up (installed through WUBI)
[ "boot", "wubi", "ubuntu-netbook" ]
4
2
CC BY-SA 4.0
[ { "creationDate": "2010-08-09T07:44:50.507", "id": "1610", "postId": "1708", "score": "0", "text": "Try looking at the kernel debug messages in the file /var/log/dmesg if you can't find anything post it to http://pastebin.com and link to it here in a comment.", "userDisplayName": null, "...
null
[ { "accepted": null, "body": "<p>I would suspect that the NTFS-filesystem in which the loopback file is located is dirty or outright broken. Boot in Windows and repair it.</p>\n\n<p>If that doesn't help, you need to go spelunking in /var/log to see if there is anything in a logfile (e.g. messages) that indi...
null
null
null
null
null
1712
1
1714
2010-08-08T22:40:02.183
2
2845
<p>Yesterday I upgraded a laptop from Kubuntu 9.04 (Lucid) to 9.10 (Karmic). Then afterwards I tried to install some software</p> <pre><code>$ sudo aptitude install dont-remember-what-it-was </code></pre> <p>and I get</p> <pre><code>sudo: aptitude: command not found </code></pre> <p>Wait, what? How can aptitude be missing? And it's not just that - <code>apt-get</code> and <code>dpkg</code> also somehow mysteriously vanished from the system. I've manually checked in <code>/usr/bin</code> and all the other directories in <code>$PATH</code> and verified that the files actually do not exist.</p> <pre><code>$ ls /usr/bin/aptitude ls: cannot access /usr/bin/aptitude: No such file or directory </code></pre> <p>Thankfully I have two graphical package managers available, Adept Installer and KPackageKit. Both of them report that the <code>aptitude</code> package is installed. I tried uninstalling and reinstalling it through the GUI, just to be safe, and the uninstall/reinstall seemed to go off without a hitch. But the actual program binaries are still missing.</p> <p>Is this something normal? If not, has anyone ever heard of it happening? Is it likely that the missing programs will magically reappear if I upgrade to 10.04?</p> <p><strong>EDIT:</strong> I have no idea what was going on, but after leaving the computer off overnight and a couple of reboots, the problem seems to have fixed itself. All the right files seem to be there.</p>
104
455
2010-08-10T12:27:52.857
2013-06-08T21:05:35.093
Why would the aptitude binary be missing if its package is installed?
[ "package-management", "apt", "aptitude", "dpkg" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-08T23:03:26.987", "id": "1576", "postId": "1712", "score": "0", "text": "I don't know why you would be but are you chrooted?", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-08T23:21:43.447", "id": "1577", "postId": "1712...
{ "accepted": true, "body": "<p>That is definitely not normal!</p>\n\n<p>To get dpkg and apt-get back you can do the following:\nDownload <a href=\"http://mirrors.dotsrc.org/ubuntu/pool/main/d/dpkg/dpkg_1.15.8.2ubuntu3_i386.deb\" rel=\"nofollow\">dpkg_1.15.8.2ubuntu3_i386.deb</a> and <a href=\"http://mirrors.dotsrc.org/ubuntu/pool/main/a/apt/apt_0.7.25.3ubuntu9.1_i386.deb\" rel=\"nofollow\">apt_0.7.25.3ubuntu9.1_i386.deb</a></p>\n\n<pre><code>ar x dpkg_1.15.8.2ubuntu3_i386.deb\nsudo tar -C / -xzf data.tar.gz\nar x apt_0.7.25.3ubuntu9.1_i386.deb\nsudo tar -C / -xzf data.tar.gz\n</code></pre>\n\n<p>Note that some packages at internally compressed with lzma instead of gzip, so one would have to use </p>\n\n<pre><code>sudo tar --lzma -xf data.tar.lzma\n</code></pre>\n\n<p>Afterwards you should be able to do <code>apt-get update</code> and then install aptitude with</p>\n\n<pre><code>apt-get install --reinstall aptitude\n</code></pre>\n\n<p><strong>Warning!</strong><br>\nI really cant recommend that people install packages like this! Be sure to look at the configuration of the specific package, and if any dependency is missing! And if possible reinstall the packages through apt or dpkg afterwards.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-09T03:04:24.653", "id": "1596", "postId": "1714", "score": "0", "text": "Turned out I didn't need to do this, but it's good to know how I would manually install the packages if needed.", "userDisplayName": null, "userId": "104" }, { "creationDate": "2010-08-09T03:18:43.110", "id": "1599", "postId": "1714", "score": "0", "text": "+1 for showing how to manually install packages.", "userDisplayName": null, "userId": "5" } ], "communityOwnedDate": "2010-08-13T17:16:48.827", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-08T23:18:39.583", "id": "1714", "lastActivityDate": "2010-08-13T17:16:48.827", "lastEditDate": "2010-08-13T17:16:48.827", "lastEditorDisplayName": null, "lastEditorUserId": "455", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "1712", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>That is definitely not normal!</p>\n\n<p>To get dpkg and apt-get back you can do the following:\nDownload <a href=\"http://mirrors.dotsrc.org/ubuntu/pool/main/d/dpkg/dpkg_1.15.8.2ubuntu3_i386.deb\" rel=\"nofollow\">dpkg_1.15.8.2ubuntu3_i386.deb</a> and <a href=\"http://mirror...
null
null
null
null
null
1718
1
null
2010-08-09T00:21:15.763
6
8952
<p>My computer seems to have issues suspending and resuming properly. Most recently, it resumed from hibernate, was working fine until I started logging in, and then X froze completely. I can log in via SSH (and it works flawlessly when I do), and I'd love to reset it without restarting the whole computer, and preferably without crashing all my open applications.</p> <p>Is this doable? If I have to crash the open apps, that's OK too, I suppose, but not preferred.</p>
324
236
2010-08-09T12:30:18.023
2011-10-27T18:36:22.827
How do I reset X
[ "xorg", "suspend-resume" ]
5
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I know hibernation still has a lot of issues with a wide variety of hardware in Ubuntu. You can restart X I believe with <code>service gdm restart</code> (or <code>/etc/init.d/gdm restart</code>) you should be able to get X reset. If you use Kubuntu or KDE you'll want to use ...
null
null
null
null
null
1721
1
null
2010-08-09T00:39:00.937
4
310
<p>I have a usb internet tether, but it will not work in Ubuntu, unless I download something in the terminal, but I also can not get internet until I get this device working. I am able to use my Windows side on the internet, that's how I am doing this, but not with Ubuntu side. </p> <p>Is there any way, that allows me to download a packet (that i have directions for) while using Windows side, in the command-line? </p> <p>This is the fix I found for my usb device, that I can't do without internet.<br> To get it working, make sure your iPhone is not plugged in. Then open up terminal and add the following repository:</p> <pre><code>sudo add-apt-repository ppa:pmcenery/ppa sudo apt-get update sudo apt-get install libimobiledevice-dev libimobiledevice-utils ipheth-utils gvfs </code></pre> <p>After this is done, turn MyWi application back on and plug it in. It will not seem to work if you have it plugged in, and then turn it on.</p>
null
235
2012-03-05T15:38:02.813
2012-03-05T15:38:02.813
I have a catch 22 here! No internet unless I update
[ "command-line", "usb", "internet-connection", "usb-modem" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You might be interested in that I recently stumbled upon by another user here <a href=\"http://keryxproject.org/\" rel=\"nofollow\">Keryx</a> which will allow you to use an internet capable machine to put the updates onto a USB drive then apply those updates to your computer ...
null
null
2013-03-14T16:35:35.123
null
Will
1722
1
1727
2010-08-09T00:44:48.493
36
26105
<p>I would like to setup a basic FTP server on my Ubuntu Server install. I have been playing with VSFTPD, but am having issues getting the server to allow me to create directories and copy files. I have set the system to allow local users, but it appears that doesn't mean I get access to create directories. This may be an instance where I need to be better grounded in Ubuntu server setup in order to configure this FTP server adequately. The end goal is to be able to move files from my local dev folder into my www folder for deployment. Directories need to be able to move as well. Any help would be greatly appreciated.</p>
659
3037
2012-01-23T03:39:12.017
2013-07-13T12:29:11.347
Basic Ubuntu FTP Server
[ "server", "security", "ftp" ]
7
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-09T00:51:55.983", "id": "1585", "postId": "1722", "score": "0", "text": "You mentioned moving files and folders form local dev to www folder - are you doing this all on the same machine or different machines?", "userDisplayName": null, "userId": "41" }, { ...
{ "accepted": true, "body": "<p>I'm going to recommend PureFTPD because it's been the simplest and easiest to use in my opinion. You'll need to install it first: <code>sudo apt-get install pure-ftpd</code> once it's installed it'll start itself up. By default it uses PAM Authentications - meaning it uses the accounts which already exist on the system for it's auth. All you'll need to do is create a user account with the home directory being your www path and set the password for that account. You should then be able to connect with that user/pass combination to upload/download files.</p>\n\n<p>Something like this:</p>\n\n<p><code>sudo adduser ftpman --home /var/www/ --ingroup www-data</code></p>\n\n<p>Which will create the <code>ftpman</code> user and put him in the www-data group which Apache uses and will walk you through the rest of the setup script. Once that's defined make sure to <code>chmod</code> the WWW folder if you get errors about it already existing to the user/group combination you created.</p>\n\n<p>Lastly if you want to lock down SSH access for that account run: <code>sudo chsh -s /bin/false ftpman</code> which will change that users shell to false. (Replace ftpman with your ftp user)</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-08-09T06:24:14.040", "id": "1608", "postId": "1727", "score": "5", "text": "PureFTP is the easiest to set up as far as I'm concerned.", "userDisplayName": null, "userId": "5" }, { "creationDate": "2011-03-31T08:02:34.517", "id": "36782", "postId": "1727", "score": "2", "text": "You have an habit of giving complete explanation always like a teacher. Awesome!!!", "userDisplayName": null, "userId": "3215" }, { "creationDate": "2012-02-02T06:52:24.170", "id": "115885", "postId": "1727", "score": "1", "text": "I tried this but I can't connect with the newly created user. Existing users work fine", "userDisplayName": null, "userId": "21350" }, { "creationDate": "2013-08-06T03:36:03.667", "id": "418672", "postId": "1727", "score": "1", "text": "This all works fine, except when I run the `chsh` this seems to prevent users from logging in via the FTP as well. Setting back to `/bin/bash` allows it to work again.", "userDisplayName": null, "userId": "15033" }, { "creationDate": "2014-04-06T14:19:27.237", "id": "581316", "postId": "1727", "score": "1", "text": "Thank you, and I can confirm I spent a full day with vsftpd and 5 minutes with pureftpd in setup time. For a simple setup, and secure, use pureftpd. I am confused why mainstream touts vsftpd!", "userDisplayName": null, "userId": "265909" }, { "creationDate": "2019-08-15T20:03:19.813", "id": "1944329", "postId": "1727", "score": "0", "text": "Does not seem to work out of the box with sftp or tls", "userDisplayName": null, "userId": "6042" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T01:54:06.990", "id": "1727", "lastActivityDate": "2010-08-09T01:54:06.990", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "1722", "postTypeId": "2", "score": "43" }
[ { "accepted": true, "body": "<p>I'm going to recommend PureFTPD because it's been the simplest and easiest to use in my opinion. You'll need to install it first: <code>sudo apt-get install pure-ftpd</code> once it's installed it'll start itself up. By default it uses PAM Authentications - meaning it uses th...
null
null
null
null
null
1732
1
null
2010-08-09T03:56:22.297
104
97583
<p>Is it possible to run Android apps on Ubuntu? And I don't mean inside an emulator, but natively, as you would with any other application installed using the Ubuntu Software Center.</p>
876
25863
2012-06-18T18:22:48.130
2021-11-12T06:09:18.283
Can I run Android apps on Ubuntu?
[ "android" ]
9
1
CC BY-SA 2.5
[ { "creationDate": "2015-07-30T22:14:15.870", "id": "941358", "postId": "1732", "score": "0", "text": "See also: [How to run an Android emulator in Ubuntu 13.04](http://askubuntu.com/q/290845/178596)", "userDisplayName": null, "userId": "178596" } ]
null
[ { "accepted": null, "body": "<p>The straight answer is no you can't. Although Android apps are developed in Java and thus should work, the environment is completely different:</p>\n\n<ul>\n<li>Screen size is limited, the concept of a \"Windowing System\" does not exist in a mobile</li>\n<li>Some of the hard...
null
null
null
null
null
1733
1
1996
2010-08-09T04:04:23.620
9
19140
<p>I'm running KVM on a Ubuntu 10.04 host. The guest OS is also Ubuntu 10.04 .</p> <p>I am attempting to connect to the guest using the 'console' command. It appears I can establish a connection, but I get no output.</p> <pre><code>$ sudo virsh -c qemu:///system console guest1 Connected to domain guest1 Escape character is ^] (NOTHING HERE) ^] $ </code></pre> <p>I don't have a 'serial' device configured, but I do have these 'console' devices.</p> <pre><code>&lt;console type='pty' tty='/dev/pts/2'&gt; &lt;source path='/dev/pts/2'/&gt; &lt;target port='0'/&gt; &lt;/console&gt; &lt;console type='pty' tty='/dev/pts/2'&gt; &lt;source path='/dev/pts/2'/&gt; &lt;target port='0'/&gt; &lt;/console&gt; </code></pre> <p>Are these sufficient for a console, or do I need a serial device as well?</p> <p>What do I need to do in order to get the KVM console to work?</p>
266
266
2010-08-10T15:23:12.017
2014-01-29T19:41:48.357
What reason could prevent console output from "virsh -c qemu:///system console guest1"?
[ "10.04", "virtualization", "kvm-virtualization" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I'm fairly sure you do need to configure the guest to use a serial console. You need three things for this to work:</p>\n\n<ol>\n<li><p>give the guest a virtual serial device of type <code>pty</code> (for example by adding one in the <code>virt-manager</code> vm info page)</p></li>\n<li><p>tell the kernel to use that for its output, by adding boot parameters like <code>serial=tty0 console=ttyS0,115200n8</code> into <code>GRUB_CMDLINE_LINUX</code> in <code>/etc/default/grub</code>; then run <code>sudo update-grub</code></p></li>\n<li><p>(optional) <a href=\"http://ubuntuforums.org/showpost.php?p=9610421&amp;postcount=7\" rel=\"nofollow\">put a getty on ttyS0</a> so that you get a login prompt</p></li>\n</ol>\n\n<p>See <a href=\"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507650\" rel=\"nofollow\">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507650</a> for more.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-24T21:32:47.683", "id": "2984", "postId": "1996", "score": "1", "text": "And to add a getty to ttyS0, I followed the instructions here: http://ubuntuforums.org/showpost.php?p=9610421&postcount=7", "userDisplayName": null, "userId": "266" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T22:47:03.997", "id": "1996", "lastActivityDate": "2010-11-19T05:24:24.203", "lastEditDate": "2010-11-19T05:24:24.203", "lastEditorDisplayName": null, "lastEditorUserId": "1116", "ownerDisplayName": null, "ownerUserId": "1116", "parentId": "1733", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>One possibility is that your virtual machine does not have a serial console configured. </p>\n\n<pre><code>virsh dumpxml guest1\n</code></pre>\n\n<p>will show if there is a serial console configured or not. There should be something similar as </p>\n\n<pre><code>&lt;serial ty...
null
null
null
null
null
1736
1
2525
2010-08-09T04:24:57.443
12
10122
<p>I want a note taking app on my Ubuntu running laptop and an app on my Android phone which can sync with each other, through online means or manually syncing. So far the only thing I've seen is the Evernote app for android and the beta quality third party app <a href="http://nevernote.sourceforge.net/">Nevernote</a>. Ideally, I'd like an app that syncs with Tomboy, but the only thing I've found is Tomdroid which is buggy and only lets you view notes.</p> <p>Does anyone have any suggestions? Or will I have to stick to Android apps which only sync with web sites?</p>
593
null
null
2020-02-06T01:18:00.007
Sync notes between Android phone and Ubuntu?
[ "android", "sync" ]
9
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There is an app for Android called <a href=\"https://launchpad.net/tomdroid\" rel=\"nofollow\">Tomdroid</a> which had experimental support for web syncing and seems to be close to making a new release. See <a href=\"https://lists.launchpad.net/tomdroid-dev/msg00142.html\" rel=\"nofollow\">this thread</a> on the tomdroid mailing list.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2013-03-07T12:20:36.847", "id": "331887", "postId": "2525", "score": "0", "text": "canonical should fund tomdroid to sync to ubuntu one and android :)", "userDisplayName": null, "userId": "67897" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-17T22:09:04.817", "id": "2525", "lastActivityDate": "2010-08-17T22:09:04.817", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "1736", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>There is an Ubuntu One client for Android. It seems like you should be able to sync any files from your phone to your desktop.</p>\n\n<p>If Ubuntu One can't do it, DropBox can.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-17T22:1...
null
null
null
null
null
1743
1
1749
2010-08-09T07:39:24.497
199
110088
<p>When I first started with Ubuntu using <code>aptitude</code> was the 'in-thing', with some stated improvements over <code>apt-get</code>. Am I correct in saying that <code>apt-get</code> has now 'caught up' with <code>aptitude</code>, and it makes little difference which is used (although it is preferable to choose one or the other, and stick with it)?</p> <p>Moreover, with <code>aptitude</code> set to be removed from a default Ubuntu install, should everyone revert to <code>apt-get</code>, especially when guiding new users interested in the CLI?</p>
866
866
2011-02-13T08:28:56.680
2019-07-13T17:49:28.903
Is aptitude still considered superior to apt-get?
[ "apt", "aptitude", "package-management" ]
6
2
CC BY-SA 2.5
[ { "creationDate": "2019-07-16T08:15:06.713", "id": "1928794", "postId": "1743", "score": "1", "text": "the cool kids today use `apt` instead of either of those : https://itsfoss.com/apt-vs-apt-get-difference/", "userDisplayName": null, "userId": "307184" }, { "creationDate": "201...
{ "accepted": true, "body": "<p>As far as I can see, in 10.04, the main differences between aptitude\nand apt-get are: </p>\n\n<ol>\n<li><p><code>aptitude</code> adds explicit per-package flags, indicating whether a\npackage was automatically installed to satisfy a dependency: you\ncan manipulate those flags (<code>aptitude markauto</code> or <code>aptitude unmarkauto</code>) to change the way aptitude treats the package.</p>\n\n<p><code>apt-get</code> keeps track of the same information, but will not show it\nexplicitly. <code>apt-mark</code> can be used for manipulating the flags.</p></li>\n<li><p><code>aptitude</code> will offer to remove unused packages each time you\nremove an installed package, whereas <code>apt-get</code> will only do that if\nexplicitly asked to with <code>apt-get autoremove</code> or specify <code>--auto-remove</code>.</p></li>\n<li><p><code>aptitude</code> acts as a single command-line front-end to most of the\nfunctionalities in both <code>apt-get</code> and <code>apt-cache</code>. <strong>Note</strong>: As of 16.04, there is an <code>apt</code> command that includes the most commonly used commands from <code>apt-get</code> and <code>apt-cache</code> and a few extra features.</p></li>\n<li><p>In contrast to <code>apt-cache</code>'s \"search\", <code>aptitude</code>'s \"search\" output\nalso shows the installed/removed/purged status of a package (plus\naptitude's own status flags). Also, the \"install\" output marks\nwhich packages are being installed to satisfy a dependency, and\nwhich are being removed because unused.</p></li>\n<li><p><code>aptitude</code> has a (text-only) interactive UI.</p></li>\n</ol>\n\n<p>I personally use only <code>aptitude</code> for my command-line package\nmanagement (and I never use the text UI); I find its output more\nreadable than <code>apt-get</code>/<code>apt-cache</code>. </p>\n\n<p>However, if <code>aptitude</code> will be no longer standard on Ubuntu, there's\nno other choice than use <code>apt-get</code> in instructions and how-to\ndocuments.</p>\n\n<p>(Personally, I'm rather disappointed to see it go away in 10.10;\nespecially since the improvements of aptitude over <code>apt-get</code> are\nmostly on the usability side. I guess they deemed that those\nconversant with the command-line know how to get aptitude back, and\nthose who don't use the command-line will not care...)</p>\n", "commentCount": "10", "comments": [ { "creationDate": "2010-08-09T08:46:03.213", "id": "1616", "postId": "1749", "score": "11", "text": "aptitude search'es on package names, apt-cache on package name+description\n\n(We will just have to start every howto with `sudo apt-get install aptitude`)", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-09T09:19:59.273", "id": "1620", "postId": "1749", "score": "3", "text": "2. However apt-get will tell you that there are unused packages and that you can remove them with `apt-get autoremove`.", "userDisplayName": null, "userId": "430" }, { "creationDate": "2010-10-15T14:21:02.440", "id": "7367", "postId": "1749", "score": "2", "text": "One of the disadvantages of aptitude is the inability to consider pinning as done by apt-get", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-10-15T14:45:05.157", "id": "7370", "postId": "1749", "score": "4", "text": "Aptitude correctly reads `/etc/apt/preferences` (and the pinning therein), but [currently](http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557580) ignores `/etc/apt/preferences.d/`. It's a [known bug](http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557580) so there is hope for it to be fixed soon.", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-10-16T19:16:44.457", "id": "7602", "postId": "1749", "score": "1", "text": "Would you mind if I removed all the backticks? All that (visual) noise makes this unreadable, even though it's a good answer.", "userDisplayName": "Roger Pate", "userId": null }, { "creationDate": "2010-10-16T19:43:51.893", "id": "7610", "postId": "1749", "score": "0", "text": "@Roger: thanks for the suggestion, I kept only thos that were grouping two or more words. Feel free to edit more.", "userDisplayName": null, "userId": "325" }, { "creationDate": "2011-02-13T08:48:58.587", "id": "28630", "postId": "1749", "score": "3", "text": "Aptitude has an option to retrieve the changelog easily: `aptitude changelog package-name`. I am not aware of such feature in `apt-get`.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2015-10-17T17:56:04.900", "id": "1000667", "postId": "1749", "score": "0", "text": "@RiccardoMurri for quick ref, it was marked Fixed in version 0.6.3-3.2 @ 18 Oct 2010", "userDisplayName": null, "userId": "436580" }, { "creationDate": "2017-02-15T23:52:32.377", "id": "1378951", "postId": "1749", "score": "1", "text": "What it an equivalent of `apt-get autoremove` with `aptitude`? I have old kernels that `apt-get autoremove` suggests me to remove, but i see no way to remove them with `aptitude`.", "userDisplayName": null, "userId": "448153" }, { "creationDate": "2017-03-09T09:44:03.300", "id": "1393663", "postId": "1749", "score": "0", "text": "@sepp2k It seems the behaviour of apt-get is different from the behaviour of aptitude in this regard, see the remark by Alexey above and the question http://askubuntu.com/questions/889771/how-to-make-aptitude-clean-up-old-kernels.", "userDisplayName": null, "userId": "320633" } ], "communityOwnedDate": "2010-10-16T14:21:38.283", "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-09T08:30:54.937", "id": "1749", "lastActivityDate": "2017-07-16T17:54:36.703", "lastEditDate": "2017-07-16T17:54:36.703", "lastEditorDisplayName": "Roger Pate", "lastEditorUserId": "7509", "ownerDisplayName": null, "ownerUserId": "325", "parentId": "1743", "postTypeId": "2", "score": "134" }
[ { "accepted": null, "body": "<p>I guess it's a matter of personal choice by now. I find typing <code>aptitude search</code> makes more sense to me than <code>apt-cache search</code>, and I like that it tells me which packages I have installed right there in the search output, instead of having to run <code>...
2010-08-09T12:54:11.080
null
null
null
null
1751
1
1812
2010-08-09T09:41:28.570
1
60
<p>Sometimes (but not all the time, oddly enough), when I log into my system, Networking will be disabled by default. Is this a common issue, or is there some workaround I missed to set 'On' as the PERMANENT default (!?).</p>
999
null
null
2010-08-09T23:23:03.467
Network Preferences Occasionally Defaulted upon Login
[ "networking", "default" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-09T13:09:01.003", "id": "1634", "postId": "1751", "score": "0", "text": "When you say disabled do you mean not connected or something more than that?", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-09-17T15:36:50.457", "id": "4...
{ "accepted": true, "body": "<p><a href=\"https://askubuntu.com/questions/765/how-do-i-set-networking-enabled-by-default\">This question</a> looks very similar. <a href=\"https://askubuntu.com/users/42/ressu\">Ressu</a>'s accepted answer runs something like this:</p>\n\n<p>Right-click the Network Manager applet and choose <code>Edit Connections</code>. Edit the connection you want to be used on login and check the \"Connect automatically\" and \"Available to all users\" checkboxes.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T23:23:03.467", "id": "1812", "lastActivityDate": "2010-08-09T23:23:03.467", "lastEditDate": "2017-04-12T07:23:19.023", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "130", "parentId": "1751", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p><a href=\"https://askubuntu.com/questions/765/how-do-i-set-networking-enabled-by-default\">This question</a> looks very similar. <a href=\"https://askubuntu.com/users/42/ressu\">Ressu</a>'s accepted answer runs something like this:</p>\n\n<p>Right-click the Network Manager ap...
null
null
null
null
null
1752
1
1753
2010-08-09T10:15:53.910
6
33010
<p>I was trying to resize my EXT4 partition and something went wrong. I lost it. The space in once consumed is now being represented as Unallocated. How do I recover the partition? </p>
214
236
2010-08-09T12:27:11.787
2013-01-02T20:25:21.353
Recover EXT4 partition
[ "partitioning", "ext4", "data-recovery" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Well provided you haven't overwritten it, it's possible.</p>\n\n<pre><code>sudo apt-get install testdisk\nsudo testdisk\n</code></pre>\n\n<p>Here's a full thread showing how somebody restored their EXT4 partition (including some complications): <a href=\"http://ubuntuforums.org/showthread.php?t=1376383\" rel=\"noreferrer\">http://ubuntuforums.org/showthread.php?t=1376383</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2020-09-01T21:14:07.273", "id": "2154731", "postId": "1753", "score": "0", "text": "Note to self: I personally had much more success with gdisk than testdisk.", "userDisplayName": null, "userId": "126830" }, { "creationDate": "2021-05-19T04:27:04.560", "id": "2286997", "postId": "1753", "score": "0", "text": "cool! You saved 2TB of data for me!", "userDisplayName": null, "userId": "854571" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T10:33:39.773", "id": "1753", "lastActivityDate": "2010-08-09T10:33:39.773", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1752", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>Well provided you haven't overwritten it, it's possible.</p>\n\n<pre><code>sudo apt-get install testdisk\nsudo testdisk\n</code></pre>\n\n<p>Here's a full thread showing how somebody restored their EXT4 partition (including some complications): <a href=\"http://ubuntuforums.o...
null
null
null
null
null
1755
1
1756
2010-08-09T11:05:57.280
27
98214
<p>What DLNA server program should I choose and how do I set it up? It is an absolute requirement that it doesn't take a lot of resources since it will be running on a 500 MHz machine.</p> <p>There seems to be quite a few server programs and I don't have any experience with these userfriendly auto-detecet protocols/services.</p> <p>Btw, the server doesn't have a GUI...</p>
455
null
null
2017-11-23T00:08:26.233
What DLNA server to choose?
[ "server", "dlna" ]
7
4
CC BY-SA 2.5
[ { "creationDate": "2012-11-23T22:53:18.823", "id": "273050", "postId": "1755", "score": "0", "text": "Alright, that's going on my Fit-PC1 as well!", "userDisplayName": null, "userId": "52599" }, { "creationDate": "2014-02-10T19:54:18.257", "id": "540481", "postId": "1755"...
{ "accepted": true, "body": "<p><a href=\"http://mediatomb.cc\" rel=\"nofollow noreferrer\">MediaTomb</a>? </p>\n\n<p>Quite popular and only a web interface to speak of. It also does on-the-fly transcoding but you may need to disable that or your little 500mhz server might explode.</p>\n\n<hr>\n\n<h3>Edit</h3>\n\n<p><strong>MediaTomb</strong> is unsupported since <em>2017-04-03</em>.<br>\nThey direct users to <a href=\"http://gerbera.io\" rel=\"nofollow noreferrer\">Gerbera</a>, which is built upon <strong>MediaTomb</strong>. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-10T12:19:01.800", "id": "1745", "postId": "1756", "score": "1", "text": "Actually MediaTomb can transcode on the 500MHz Geode in there, but I have to let it buffer for quite some time (and be sure to close cpu/mem comsuming apps on there as well)", "userDisplayName": null, "userId": "455" }, { "creationDate": "2013-06-24T21:18:51.973", "id": "394361", "postId": "1756", "score": "4", "text": "MediaTomb is no longer supported. [Version 0.12.1 dates from April 8, 2010](http://mediatomb.cc/changelog.txt). Moreover, I ran into [a bug](http://bugs.launchpad.net/ubuntu/+source/mediatomb/+bug/488318) that filled my hard disk partition with a huge log file.", "userDisplayName": null, "userId": "164341" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-09T11:13:25.737", "id": "1756", "lastActivityDate": "2017-11-23T00:08:26.233", "lastEditDate": "2017-11-23T00:08:26.233", "lastEditorDisplayName": null, "lastEditorUserId": "469092", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1755", "postTypeId": "2", "score": "13" }
[ { "accepted": true, "body": "<p><a href=\"http://mediatomb.cc\" rel=\"nofollow noreferrer\">MediaTomb</a>? </p>\n\n<p>Quite popular and only a web interface to speak of. It also does on-the-fly transcoding but you may need to disable that or your little 500mhz server might explode.</p>\n\n<hr>\n\n<h3>Edit</...
null
null
2014-02-20T02:52:00.880
null
null
1758
1
5797
2010-08-09T11:45:48.657
1
3618
<p>After you install Ubuntu on a Lenovo laptop the Bluetooth will be disabled after reboot or resume. </p> <p>The only workaround for this issue is to load factory default from the BIOS but this is not something you want to do each time you reboot Ubuntu on a dual-boot machine.</p> <p>The problem was reported several times over time on Lenovo support forum but nobody from them bothered to take a look on this. Examples:</p> <ul> <li><a href="http://forums.lenovo.com/t5/IdeaPad-Y-U-B-and-Z-series/How-to-turn-on-bluetooth-on-ubuntu-08-10/m-p/99839" rel="nofollow">http://forums.lenovo.com/t5/IdeaPad-Y-U-B-and-Z-series/How-to-turn-on-bluetooth-on-ubuntu-08-10/m-p/99839</a></li> <li><a href="http://forums.lenovo.com/t5/T400-T500-and-newer-T-series/T400-bluetooth-doesn-t-turn-on-after-wake-up-from-standby-mode/m-p/197984" rel="nofollow">http://forums.lenovo.com/t5/T400-T500-and-newer-T-series/T400-bluetooth-doesn-t-turn-on-after-wake-up-from-standby-mode/m-p/197984</a></li> </ul>
1004
236
2010-08-09T12:26:11.853
2010-10-10T22:25:32.117
How can I resolve the disabled Bluetooth on resume/power issue on Lenovo laptops?
[ "drivers", "laptop", "lenovo", "bluetooth" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-09T12:29:39.787", "id": "1629", "postId": "1758", "score": "0", "text": "Can you enable it again manually? and if so how?", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-10T10:43:27.767", "id": "1740", "postId": "1758", ...
{ "accepted": true, "body": "<p>I have a Lenovo T410 with Ubuntu 10.10. I just tested it and my bluetooth starts successfully on a reboot and on resuming from standby. For reference, here's what my bluetooth adapter is called in the lsusb output:\n0a5c:217f Broadcom Corp. Bluetooth Controller</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-10-27T17:45:10.263", "id": "82643", "postId": "5797", "score": "0", "text": "Problem was solved in newer versions of Ubuntu.", "userDisplayName": null, "userId": "1004" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-10T22:25:32.117", "id": "5797", "lastActivityDate": "2010-10-10T22:25:32.117", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3058", "parentId": "1758", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I have a Lenovo T410 with Ubuntu 10.10. I just tested it and my bluetooth starts successfully on a reboot and on resuming from standby. For reference, here's what my bluetooth adapter is called in the lsusb output:\n0a5c:217f Broadcom Corp. Bluetooth Controller</p>\n", ...
null
0
null
null
null
1759
1
1762
2010-08-09T11:58:29.413
0
1314
<p>I can't find it in the repositories.I am using Maverick.</p>
305
67335
2014-08-05T03:47:18.883
2014-08-05T03:47:18.883
How to install php-gtk?
[ "10.10", "software-installation", "php" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><a href=\"http://www.phoronix-test-suite.com/misc/php5-gtk-lucid/\" rel=\"nofollow\">Phoronix have a deb available</a>. It's for Lucid but they claim it works with Maverick.</p>\n\n<p>Otherwise, there are a few other debs floating around the internet.. And then there's compiling it yourself.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-09T12:41:29.700", "id": "1631", "postId": "1762", "score": "0", "text": "LSB ABI is purely additive,so this should theoretically work.", "userDisplayName": null, "userId": "305" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T12:30:13.233", "id": "1762", "lastActivityDate": "2010-08-09T12:30:13.233", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1759", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>Maybe nobody has packaged it so far. It seems you have to compile it for yourself. There is some documentation how to <a href=\"http://gtk.php.net/manual/en/tutorials.installation.linux.php\" rel=\"nofollow\">install it on Linux</a>. </p>\n", "commentCount": "0", "com...
null
null
null
null
null
1763
1
1771
2010-08-09T12:57:18.670
44
13396
<p>As part of my job as a web developer, I spend an amount of time doing UI prototypes to show the client. It's a pain in the behind but sometimes it has to be done.</p> <p>I've seen Shuttleworth (and the design team) pump out images like this:</p> <p><img src="https://i.stack.imgur.com/9JiAy.png" alt="Balsamiq Mockups example"></p> <p>That's made by something called <a href="http://www.balsamiq.com/products/mockups" rel="nofollow noreferrer">Balsamiq Mockups</a>... Something that balances on top of Adobe Air (yack!) and costs $79.</p> <p>I've tried it but it kept falling over. I think it had something to do with Air not the app itself. My point is if I'm paying out for something, I want it to be native.</p>
449
527764
2017-03-27T13:22:18.173
2017-03-27T13:22:18.173
Native, FOSS GUI prototyping tools?
[ "software-recommendation", "programming", "alternative", "design" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>For reasons I don't begin to understand, its authors have written it as a Firefox plugin, but <a href=\"http://pencil.evolus.vn/en-US/Home.aspx\">Pencil</a> is a great FOSS prototyping tool. Like Balsamiq Mockups, it comes with a massive number of prefabricated components that allow you to quickly throw together a demo screen. Also like Balsamiq, you can have multiple pages in a sketch, and link between them, allowing your programmers and designers to \"click\" certain buttons, and get a feel for what should happen when that occurs.</p>\n\n<p>Unlike Balsamiq, its default mock widget set looks like real widgets, which I get concerned causes programmers to slavishly imitate the mockup they see on screen. Thankfully, a sketch widget template has been distributed with Pencil for awhile now. Also unlike Balsamiq&mdash;and hopefully not surprising for a Firefox add-on&mdash;Pencil exports its sketches to HTML, not Flash/Flex.</p>\n\n<p>I know Pencil looks weird because it's a Firefox extension, but it actually works very well, and is easy-to-use. I am not ideologically attached to FOSS and don't mind spending $80 for great software, so I'll be honest and say that I use Balsamiq over Pencil. I find Balsamiq's general workflow and ease-of-use superior to Pencil. But Pencil's still a great tool. If you're looking for a FOSS prototyper, I think you'd have a hard time doing better. Launch Firefox and <a href=\"http://pencil.evolus.vn/en-US/Home.aspx\">go check it out</a>.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-08-09T14:21:33.550", "id": "1648", "postId": "1771", "score": "3", "text": "Their website is http://pencil.evolus.vn and that has the 1.2 version on that comes with sketch and web libraries. Very impressive stuff even if it does sit on top of Firefox (which I have running 24/7 anyway).", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-09T14:26:26.583", "id": "1650", "postId": "1771", "score": "9", "text": "+1 Also it appears that standalone packages are available: http://pencil.evolus.vn/en-US/Downloads/Application.aspx so even if you don't run Firefox you can still use it.", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-09T15:47:07.010", "id": "1660", "postId": "1771", "score": "0", "text": "Thanks for the link corrections; I fixed them in my own post to go there, rather than the Firefox add-on site.", "userDisplayName": null, "userId": "242" }, { "creationDate": "2010-08-09T15:50:38.320", "id": "1661", "postId": "1771", "score": "0", "text": "@Marco interesting! If I had an icon for it in Applications, I'd be much less likely to forget all about it. I actually had a look at Pencil waaaay back when it first came out but because it was nested in Firefox, never really used it.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-09T18:37:26.663", "id": "1672", "postId": "1771", "score": "2", "text": "Been playing with pencil just a bit. I like it a lot!\nIt's worth noting that you should go get the add-on from the main web site, and not from the mozilla add-ons site, since their version is several revisions old.", "userDisplayName": null, "userId": "862" }, { "creationDate": "2010-10-23T18:59:09.217", "id": "9065", "postId": "1771", "score": "4", "text": "There is a debian package for stand alone version of Pencil (runs outside Firefox) available on the project’s google code site: http://code.google.com/p/evoluspencil/", "userDisplayName": null, "userId": "3727" }, { "creationDate": "2011-03-30T08:04:36.860", "id": "36619", "postId": "1771", "score": "0", "text": "At a guess, perhaps it runs as a Firefox plugin because in the long run the developers envisage it running against data stored online (similar to the way that Balsamiq can be used within Jira and other issue trackers)?", "userDisplayName": null, "userId": "2872" } ], "communityOwnedDate": "2011-06-05T19:59:21.327", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T13:53:36.753", "id": "1771", "lastActivityDate": "2010-08-09T15:46:53.143", "lastEditDate": "2010-08-09T15:46:53.143", "lastEditorDisplayName": null, "lastEditorUserId": "242", "ownerDisplayName": null, "ownerUserId": "242", "parentId": "1763", "postTypeId": "2", "score": "34" }
[ { "accepted": null, "body": "<p>Try <a href=\"http://en.wikipedia.org/wiki/Glade_Interface_Designer\">Glade Interface Designer</a>, a GTK/Gnome interface designer, usually used for real applications, but could equally be used for prototypes.</p>\n", "commentCount": "1", "comments": [ { ...
2011-06-05T19:59:21.327
null
2016-01-07T08:43:53.793
null
null
1766
1
1783
2010-08-09T13:27:21.497
0
842
<p>I am trying Lubuntu on an old laptop. I have before and after the install I had two partitions (+swap) mounting on <code>/</code> and on <code>/home</code>. When I did the Lubuntu install I told it to ignore the <code>/home</code> partition. After the Lubuntu install I logged in and everything appeared OK.</p> <p>I mounted the /home partition as <code>/hold.old</code>. Then I copied all the files from <code>/home</code> to <code>/home.old</code>. Then for each user I chown'ed the stuff in <code>/home.old</code>. Then I edited <code>/etc/fstab</code> to mount the /home partition. Then I renamed <code>/home</code>. Then I rebooted.</p> <p>All my old files are where I expected them in the <code>/home</code> filesystem. But my LXDE menu system is messed up. Instead of the full menu system I only have terminal and logout. I thought that most of the menu system lived in <code>/usr/share</code>. But, apparently LXDE has some menu stuff in <code>/home</code> that I did not get copied over correctly.</p> <p>Is there a quick way to restore the default LXDE menu system? Can you point some documentation that would be good for learning the sysadmin level workings of LXDE?</p>
330
59676
2012-08-15T06:40:06.183
2012-08-15T06:40:06.183
Lost LXDE menus after replacing /home
[ "lubuntu", "menu" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-09T13:52:52.513", "id": "1641", "postId": "1766", "score": "2", "text": "Did you copy all the hidden directories (beginning with `\".\"`). `cp -a` should do that.", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-08-10T14:07:31.257", ...
{ "accepted": true, "body": "<p>Just show all the hidden files using CTRL+H and then copy EVERYTHING. The configuration will be in /home somewhere. In a hidden file there could be alot of configurations. Especially in .config .</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T16:47:39.613", "id": "1783", "lastActivityDate": "2010-08-09T16:47:39.613", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "456", "parentId": "1766", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Just show all the hidden files using CTRL+H and then copy EVERYTHING. The configuration will be in /home somewhere. In a hidden file there could be alot of configurations. Especially in .config .</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": n...
null
null
null
null
null
1767
1
1770
2010-08-09T13:28:49.777
6
7176
<p>Specifically, what are the login credentials I need to provide?</p> <p>Details: The machine I want to access is running Windows 7, and I'm sure the folder sharing is working as other Windows machines can access it. In Ubuntu, I can go to Places -> Network and i see the machine there and open it, when I try to view the shared folder it will prompt me for Username/Domain/Password.</p> <p>Are these credentials supposed to be my login details on the other machine? My account there does not have a password though, should I leave it blank? I'm also not clear what "Domain" needs to be.</p>
1011
235
2010-08-21T20:05:26.720
2013-12-22T14:52:14.753
How to access a Windows shared drive/folder from Ubuntu?
[ "windows", "samba" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Your login should indeed be your login on the remote machine.</p>\n\n<p>There is no way to allow general access to your home folder over the network without a password. If you want full access to your home folder, you <em>must</em> give your account a password. You can leave automatic login turned on if you simply don't want to type a password at startup.</p>\n\n<p>You can, however, allow access to the <code>Public</code> directory in your home directory without requiring login. To do that, go to <code>Network and Sharing Center</code>⟶<code>Change advanced sharing settings</code>, turn on <code>Public folder sharing</code>, and turn off <code>Password protected sharing</code> (located under the <code>Advanced Sharing Options</code> section near the bottom).</p>\n\n<p>The domain, if this isn't on an ActiveDirectory domain (which seems likely, since your account has no password), should be either blank or the word <code>WORKGROUP</code> in all caps.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T13:47:35.863", "id": "1770", "lastActivityDate": "2010-08-09T13:47:35.863", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "242", "parentId": "1767", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Your login should indeed be your login on the remote machine.</p>\n\n<p>There is no way to allow general access to your home folder over the network without a password. If you want full access to your home folder, you <em>must</em> give your account a password. You can leave...
null
null
null
null
null
1772
1
1776
2010-08-09T13:54:06.487
23
5055
<p>I was hoping to know if Ubuntu comes with a standard way of mounting ISOs. I looked around online and found a bunch of scripts that can do it. </p> <p>This to me seems like core functionality, is it offered by default in Ubuntu. If not where is the best and simplest mounter for ISOs.</p>
333
25863
2012-06-18T18:22:42.483
2017-02-17T22:55:04.413
How do I mount an ISO?
[ "mount", "cd" ]
7
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-09T13:58:37.477", "id": "1644", "postId": "1772", "score": "0", "text": "What is your end goal for mounting an ISO?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-09T14:00:58.827", "id": "1646", "postId": "1772", "sc...
{ "accepted": true, "body": "<p>If you prefer to keep it old school, in a terminal:</p>\n\n<pre><code>sudo mount /path/to/iso /path/to/mountpoint -o loop\n</code></pre>\n\n<p>This, of course, will not allow you to edit the ISO as the other mentioned tools will, but if you just need to quickly get into one and pull a few files from it, works like a charm :-)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-08T01:29:40.327", "id": "17619", "postId": "1776", "score": "0", "text": "You mind getting rid of the word **above**?", "userDisplayName": null, "userId": "2591" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-09T14:49:31.113", "id": "1776", "lastActivityDate": "2011-08-15T14:38:30.433", "lastEditDate": "2011-08-15T14:38:30.433", "lastEditorDisplayName": null, "lastEditorUserId": "10616", "ownerDisplayName": null, "ownerUserId": "1016", "parentId": "1772", "postTypeId": "2", "score": "23" }
[ { "accepted": null, "body": "<p><code>Brasero</code> which comes with Ubuntu is able to create and open (to manipulate) ISOs. If you're looking for a way to mount an ISO so it's contents are available like a \"drive\" you may want to use simply Right Click the ISO and choose \"Open With Archive Mounter\" wh...
null
null
null
null
null
1780
1
1782
2010-08-09T16:18:34.220
2
898
<p>I have a printer plugged it into my Ubuntu desktop machine. I want to access it from Windows 7 on my laptop. Is this possible? If yes, how can I do this?</p>
87
456
2010-08-09T16:37:44.803
2015-06-25T18:30:03.783
Printer sharing and Ubuntu
[ "windows", "sharing", "printing", "networking" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yup. Quite simple too. IMO this is quicker than using cups' web gui.</p>\n\n<ol>\n<li><p>Make cups accept connections from other computers. </p>\n\n<pre><code>sudo nano /etc/cups/cupsd.conf\n</code></pre>\n\n<p>And then replace <code>Listen localhost:631</code> with <code>Listen *:631</code>. Save and exit (control+x, y, return). </p>\n\n<p>Note: If this computer ever goes out into the wild, where it's not hidden behind a router, it might be worth specifying an IP address instead of wildcarding. If it sits behind a protected router all the time, you don't need to worry about it.</p>\n\n<p>Note 2: If you have a firewall running on your computer (eg ufw, firestarter) be sure to allow connections on port 631 through.</p></li>\n<li><p>Restart cups:</p>\n\n<pre><code>sudo /etc/init.d/cupsys restart\n</code></pre></li>\n<li><p>From the Windows computer, start the Add a printer wizard (in Control Panel > Printers), select network printer and when you finally get around to the part where you enter an address, stick something like this in:</p>\n\n<pre><code>http://your_ubuntu_ip:631/printers/whatever_your_printer_is_called\n</code></pre>\n\n<p>You then just install the Windows drivers for it and bish, bash, bong your're done.</p>\n\n<p>If you don't know the name (to replace <code>whatever_your_printer_is_called</code>), take a look at cups <a href=\"http://localhost:631\">http://localhost:631</a> and see what the name is for the printer.</p></li>\n</ol>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T16:41:28.293", "id": "1782", "lastActivityDate": "2010-08-09T16:41:28.293", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1780", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>Yes, It is possible.</p>\n\n<p>Please look at <a href=\"https://help.ubuntu.com/community/NetworkPrintingWithUbuntu\" rel=\"nofollow\">Network Printing With Ubuntu</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": ...
null
null
null
null
null
1784
1
1785
2010-08-09T17:12:06.407
56
30604
<p>How can I install and run <a href="http://store.steampowered.com/about/">Steam</a> on Ubuntu?</p>
87
176889
2014-02-05T11:37:27.900
2024-02-14T08:55:42.773
How can I install Steam?
[ "games", "steam" ]
9
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Steam is now released for Ubuntu and there's no need to run Wine or any other thing to get it to work. </p>\n\n<p>Run</p>\n\n<pre><code>sudo apt-get install steam\n</code></pre>\n\n<p>Or Install it with this button: </p>\n\n<p><a href=\"https://apps.ubuntu.com/cat/applications/steam-launcher/\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-banner\" alt=\"Install via the software center\"></a></p>\n\n<p>This offers the easiest method for installing Steam. After clicking the orange button you may not have Ubuntu Software Centre configured to install .apk's. To get Ubuntu Software Centre to show Steam from this link browse to <code>software-centre</code> which is located at <code>/usr/bin/software-centre</code> when prompted after clicking on the orange button.</p>\n\n<p>When installing the \"buy\" button is not asking for payment to be able to install the Steam for Linux client as it is only indicating you need to buy games in order to use the client for playing games or using apps once the client is installed.</p>\n\n<p>Which means if you have already Steam Play or Linux games in your Steam library there is no cost at all in order to be able to use the Steam for Linux client to play games as it possible to sign in to Linux client with the same account details as with Windows client; just not both at same time.</p>\n\n<p>Also consider upgrading you video drivers as shown in <a href=\"https://wiki.ubuntu.com/Valve#Driver_Upgrades\" rel=\"nofollow noreferrer\">this article</a> step-by-step, doing so will allow you to get the best performance on your graphics card. The article covers the drivers installation for the NVIDIA, AMD/ATI and Intel graphics cards.</p>\n\n<ul>\n<li><a href=\"http://blog.canonical.com/2013/02/14/steam-client-now-available-in-ubuntu-software-center/\" rel=\"nofollow noreferrer\">Steam Client now available in Ubuntu Software Center</a></li>\n<li><a href=\"http://store.steampowered.com/browse/linux/\" rel=\"nofollow noreferrer\">store.steampowered.com: browse Linux games</a></li>\n</ul>\n", "commentCount": "6", "comments": [ { "creationDate": "2013-02-16T00:13:56.167", "id": "320076", "postId": "1785", "score": "0", "text": "Error: steam64: Depends: steam (= 1.0.0.27ubuntu1) but it is not going to be installed.", "userDisplayName": null, "userId": "4617" }, { "creationDate": "2013-02-18T04:25:09.810", "id": "321420", "postId": "1785", "score": "0", "text": "@wok That error could indicate problems with your system or config - you should probably open a separate question about it (after doing a search).", "userDisplayName": null, "userId": "54256" }, { "creationDate": "2013-08-07T15:56:58.863", "id": "419474", "postId": "1785", "score": "0", "text": "Is it possible to update answer with more install options. There are a lot of questions asking how to get steamplay games available to both OS's but only using one library/installation directory. Had started working on a canonical q and a but found this.", "userDisplayName": null, "userId": "102029" }, { "creationDate": "2013-08-07T16:25:23.323", "id": "419488", "postId": "1785", "score": "0", "text": "Example q's requesting this - http://askubuntu.com/q/281519/102029; http://askubuntu.com/q/292164/102029; http://askubuntu.com/q/260288/102029 ...", "userDisplayName": null, "userId": "102029" }, { "creationDate": "2013-10-07T00:01:50.640", "id": "454384", "postId": "1785", "score": "0", "text": "`.apk`'s? Do you mean `.deb`?", "userDisplayName": null, "userId": "176889" }, { "creationDate": "2016-07-20T15:56:52.793", "id": "1208224", "postId": "1785", "score": "0", "text": "\"Steam is now released for Ubuntu and there's no need to run Wine or any other thing to get it to work.\" - and what about Windows only games that could be run with Wine? From what I've read installing Steam through Wine enables them to work. Some games won't work in newer Windows versions, but will still work with Wine, in this case it may still be useful to install Steam through Wine", "userDisplayName": null, "userId": "448998" } ], "communityOwnedDate": "2014-02-05T11:32:29.413", "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-09T17:19:39.593", "id": "1785", "lastActivityDate": "2016-11-28T10:30:33.080", "lastEditDate": "2017-03-11T18:56:33.670", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "41", "parentId": "1784", "postTypeId": "2", "score": "56" }
[ { "accepted": true, "body": "<p>Steam is now released for Ubuntu and there's no need to run Wine or any other thing to get it to work. </p>\n\n<p>Run</p>\n\n<pre><code>sudo apt-get install steam\n</code></pre>\n\n<p>Or Install it with this button: </p>\n\n<p><a href=\"https://apps.ubuntu.com/cat/applicatio...
null
null
null
null
null
1786
1
2636
2010-08-09T18:38:48.610
63
58141
<p>Ubuntu seems to provide at least two network "toolsets" (for lack of a better term). I'm running into conflicts between these two.</p> <ul> <li><a href="https://help.ubuntu.com/community/NetworkManager">Network Manager</a></li> <li>Something which is more like the <a href="https://help.ubuntu.com/12.04/serverguide/network-configuration.html">traditional network tools</a> (e.g. ifconfig, 'ifup', <a href="http://manpages.ubuntu.com/manpages/karmic/man5/interfaces.5.html">/etc/network/interfaces</a></li> </ul> <p>I am often running into conflicts between these different sets of tools. For example, I'm running Ubuntu Desktop at home and I'm using software like KVM/libvirt which recommends that I <a href="http://wiki.libvirt.org/page/Networking#Debian.2FUbuntu_Bridging">disable Network Manager</a>, but disabling Network Manager causes other things to break.</p> <p>What is the difference between Network Manager and the traditional network tools? Can these two suites run side-by-side or must I stick with one or the other? Is there a document which summarizes the difference between these different tools? I have been unable to find one.</p> <p>(Forgive the vagueness of this question. I've searched and searched for an answer, but I have only found many vague answers which don't seem relevant to Ubuntu 10.04/Lucid, and I may not fully understand the purpose of NetworkManager. However, this seems to be a frequently asked question. If you have advice for clarifying this question, please post a comment.)</p>
266
266
2014-04-30T20:35:53.957
2022-01-27T16:09:02.063
What is the difference between Network Manager and 'ifconfig' 'ifup', etc?
[ "networking", "network-manager", "ifconfig" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p><code>NetworkManager</code> and <code>ifconfig</code> are not (by default) compatible (<code>NetworkManager</code> won't configure interfaces listed in <code>/etc/network/interfaces</code>). <code>NetworkManager</code> is a sort of settings daemon that makes sure that multiple users can edit network connections, this is very smart in a desktop environment (especially on laptops that might move around between different wireless networks). Basically <code>NetworkManager</code> is a frontend to <code>iproute</code>, <code>dhclient</code>, <code>wpa_supplicant</code> and <code>ppp</code>.</p>\n\n<p><code>ifconfig</code> is a general tool for configuring network interfaces, you can for example do like this:</p>\n\n<pre><code>ifconfig eth1 10.0.0.1 netmask 255.0.0.0 hw ether 10:10:10:10:10:10\nifconfig eth1 down\n</code></pre>\n\n<p>to set your IP, netmask and MAC address of <code>eth1</code>, and then down (disable/turn off) your interface. <code>ifconfig</code> doesn't read any config files and does only exactly what it is told.</p>\n\n<p><code>ifup</code> and <code>ifdown</code> are helper programs that use <code>ifconfig</code> to configure a network interface in accordance to <code>/etc/network/interfaces</code> this will make sure that if there are any up, down, pre-up, pre-down, post-up, post-down scripts that need to be run they will be.</p>\n\n<p>Ok, then there is <code>wpa_supplicant</code> and <code>dhclient</code>. <code>dhclient</code> is a DHCP client - <code>ifup</code> will use this if a network interface is configured for DHCP, as will <code>NetworkManager</code>. <code>wpa_supplicant</code> is a tool for configuring encryption on wireless networks.</p>\n\n<p>Most of these tools have man pages, for instance the interfaces-file have it's own manpage that describe the format of that config file.</p>\n\n<pre><code>man interfaces\nman ifconfig\nman ifup\n</code></pre>\n\n<p>So that being said i would recommend that you remove (or disable) <code>NetworkManager</code>, I don't think that any thing will break from removing <code>NetworkManager</code> except the gui tools for setting up network. If you want to configure wireless without <code>NetworkManager</code> you might want to look at <a href=\"http://ubuntuforums.org/showthread.php?t=263136\">this</a>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2023-03-19T07:42:56.700", "id": "2554222", "postId": "2636", "score": "0", "text": "ps: For any interface (eth0, wl0,...), you can select one of ifconfig and NetworkManager freely. Which interface was managed could detaile by `nmcli device`.", "userDisplayName": null, "userId": "1682463" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-19T07:36:57.390", "id": "2636", "lastActivityDate": "2014-12-19T18:11:17.670", "lastEditDate": "2014-12-19T18:11:17.670", "lastEditorDisplayName": null, "lastEditorUserId": "173287", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "1786", "postTypeId": "2", "score": "62" }
[ { "accepted": null, "body": "<p>These toolsets are complementary, not mutually exclussive. </p>\n\n<p>FWIW, <code>ifconfig</code> is just a tool among other <code>*config</code> tools which are used to configure network interfaces.</p>\n\n<p>The <code>ifup(8)</code> and <code>ifdown(8)</code> tools are one...
null
null
null
null
null
1788
1
null
2010-08-09T19:11:35.017
-1
363
<p>I was using Transmission to download some stuff, when I got a notification that there was only 800 MB of free space left. </p> <p>I soon rebooted, only to find out, that i could not login again. I would get an error stating, that the default configuration had changed for "gnome-power-manager" and to contact my system-administrator, though i am the sysadmin. Every time i tried to login it would fail and the whole thing was in low graphics mode. </p> <p>So my question is if there is a way to fix this?</p>
782
47151
2012-03-05T15:50:21.337
2012-03-05T15:50:21.337
Login fail with low graphics then crash?
[ "login", "power-management", "root", "login-screen" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>From your question it looks like your hard drive has no (or too less) free space. Usually this leads to some strange behavior in some software. You can try to go a virtual terminal. Press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd> and enter your username and password. Now i...
null
null
2013-03-14T16:35:43.997
null
null
1789
1
1791
2010-08-09T19:12:56.930
3
580
<p>I needed to install a program (<a href="http://www.ncnr.nist.gov/xtal/software/expgui/expgui_Unix_readme.html" rel="nofollow">GSAS &amp; EXPGUI</a>) that depends on the libg2c0 library. This library was in the repositories up to Ubuntu Jaunty (9.04), and then it was removed. </p> <p>The solution is to download the <a href="http://packages.ubuntu.com/jaunty/libg2c0" rel="nofollow">Jaunty package</a>, and then <code>sudo dpkg --force-depends -i libg2c0_3.4.6-8ubuntu2_amd64.deb</code>. If found this solution not to be in the spirit of Ubuntu (is there a word for that, like Pythonic is to Python?)</p> <p>In general, what are the reasons for removing a given package from newer versions?</p> <p>Is there a better way to manage dependencies to no longer supported packages?</p>
133
866
2010-11-13T20:46:06.690
2010-11-13T20:46:06.690
Why do some packages disappear from the repositories?
[ "package-management", "official-repositories" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Packages are removed from the repository in newer releases for different reasons. </p>\n\n<p>Often package names have a reference to its version. In this case, a newer version might exist. In this case the dependency for your package might need to be updated. However, this is rather a replacement than a pure dropping of packages.</p>\n\n<p>Packages are often dropped when there is no active development anymore, and they are not in a state than is valuable. It makes no sense to keep packages with critical bugs which are not fixed.</p>\n\n<p>Another reason might be that no maintainer works on the package anymore. This might even be the case in Debian, since a lot of Ubuntu's packages are synced from Debian. This is a matter of interest. If the current maintainer has no time or passion anymore, the package is put on a list of orphaned packages. This allows the community to look if someone else will step up. If not, it will be dropped after some time since it is assumed that nobody has interest in the package anymore. </p>\n\n<p>In your particular case, the GNU Fortran 77 was replaced by the GNU Fortran 95 compiler. Hence the runtime libraries have been dropped too. I am not sure if that helps you, but your package should be made to run on the new Fortran compiler (which should be possible if it is open source). Then it will use the new library which is available.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T19:27:33.293", "id": "1791", "lastActivityDate": "2010-08-09T19:33:37.693", "lastEditDate": "2010-08-09T19:33:37.693", "lastEditorDisplayName": null, "lastEditorUserId": "4", "ownerDisplayName": null, "ownerUserId": "4", "parentId": "1789", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Packages are removed from the repository in newer releases for different reasons. </p>\n\n<p>Often package names have a reference to its version. In this case, a newer version might exist. In this case the dependency for your package might need to be updated. However, this is...
null
null
null
null
null
1790
1
null
2010-08-09T19:26:57.427
5
5158
<p>Wacom provides <a href="http://www.wacomeng.com/web/index.html" rel="nofollow">a web browser plugin</a> that allows pressure sensitive drawing with their and other PenAPI compatible tablets in a browser. Unfortunately their plugin only supports Windows and Mac OS X. Is there a way to get this functionality under Ubuntu Linux?</p> <p>Currently, I can already use pressure-sensitive drawing in some Linux applications like GIMP and Inkscape, just not in a web browser.</p> <p>A browser based application that would benefit from pressure sensitive drawing is for example DeviantArt's <a href="http://muro.deviantart.com/" rel="nofollow">Muro</a>, a HTML5 based drawing application. Under Windows and Mac OS X, Muro supports pressure sensitivity when the Wacom-supplied browser plugin is installed.</p>
32
175814
2015-02-17T17:17:58.343
2023-02-11T16:13:41.280
How to use pressure sensitive drawing in a Linux-based browser?
[ "browser", "wacom", "graphics-tablet" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Short answer is no.</p>\n\n<p>In order to provide pressure sensitivity, the browser (or a plugin) would have to hook into the same code (XInput) that drawing applications like Inkscape or the GIMP use. Browsers, like most desktop applications, generally leave input details to...
null
null
null
null
null
1792
1
1795
2010-08-09T20:24:00.067
493
711709
<p>How can I suspend or hibernate my laptop using command line, without installing additional software?</p>
1034
295286
2018-02-11T20:18:11.210
2023-09-11T00:45:00.423
How can I suspend/hibernate from command line?
[ "command-line", "suspend", "power-management", "hibernate" ]
14
2
CC BY-SA 3.0
[ { "creationDate": "2016-06-22T07:05:22.427", "id": "1187339", "postId": "1792", "score": "5", "text": "For Ubuntu 16.04, see this question: http://askubuntu.com/questions/777178/suspend-command-in-ubuntu-16-04 and its answer `systemctl suspend`", "userDisplayName": null, "userId": "23266...
{ "accepted": true, "body": "<p>Traditionally ubuntu supported a fairly blunt method of suspend and hibernate. Neither would integrate well with other apps and sometimes not even work on some machines. This new method doesn't require root and notifies all applications listening for power events.</p>\n<h3>Systemd Method</h3>\n<p>Starting with Ubuntu 16.04, <code>systemctl</code> call must be used (See <a href=\"https://askubuntu.com/questions/777178/suspend-command-in-ubuntu-16-04\">Suspend command in Ubuntu 16.04</a>)</p>\n<pre><code>systemctl suspend\n</code></pre>\n<p>and</p>\n<pre><code>systemctl hibernate\n</code></pre>\n<h3>New Method (obsolete)</h3>\n<p>Obsolete circa Ubuntu 16.04; use <code>systemctl</code> instead, as above.</p>\n<p>See the answer here on this page <a href=\"https://askubuntu.com/a/131022/12637\">from Adam Paetznick regarding the use of dbus</a>. Ideally you would create a <code>~/bin/suspend</code> shortcut/script that makes the use of this action easy.</p>\n<p>For use over ssh, you should <a href=\"https://askubuntu.com/a/79927/12637\">modify policykit rules as outlined by Peter V. Mørch</a></p>\n<h3>Old Method</h3>\n<p>According to the <a href=\"http://ubuntuforums.org/showthread.php?t=813387\" rel=\"noreferrer\">Ubuntu Forum</a> you can use the following commands:</p>\n<pre><code>pmi action suspend\n</code></pre>\n<p>and</p>\n<pre><code>pmi action hibernate\n</code></pre>\n<p>This requires that you install the powermanagement-interface package (not tested).</p>\n<p><code>sudo apt-get install powermanagement-interface</code></p>\n<p>I have also found the commands <code>sudo pm-suspend</code> and <code>sudo pm-hibernate</code> to work on my netbook.</p>\n", "commentCount": "21", "comments": [ { "creationDate": "2010-08-09T20:52:25.367", "id": "1683", "postId": "1795", "score": "26", "text": "pm-suspend and pm-hibernate works for me and it's easy. Requires sudo but that's OK. \n(Found pmi idea before but installing a package to use suspend is well bad...)", "userDisplayName": null, "userId": "1034" }, { "creationDate": "2010-08-09T23:38:54.420", "id": "1700", "postId": "1795", "score": "0", "text": "added sudo to the description", "userDisplayName": null, "userId": "4" }, { "creationDate": "2012-02-10T01:47:36.237", "id": "119006", "postId": "1795", "score": "1", "text": "Note that you have to `apt-get install powermanagement-interface` to run pmi.", "userDisplayName": null, "userId": "6130" }, { "creationDate": "2012-02-13T09:56:56.207", "id": "119987", "postId": "1795", "score": "1", "text": "On 11.10 only pm-* works, also with powermanagament-interface added", "userDisplayName": null, "userId": "40071" }, { "creationDate": "2013-06-02T09:37:03.437", "id": "381411", "postId": "1795", "score": "1", "text": "doesn't work with my ubuntu 12.10. after `apt-get install powermanagement-interface`", "userDisplayName": null, "userId": "116355" }, { "creationDate": "2015-04-03T18:28:20.240", "id": "845444", "postId": "1795", "score": "1", "text": "*new method* is now broken see http://unix.stackexchange.com/questions/153099/debian-jessie-cannot-suspend-anymore", "userDisplayName": null, "userId": "19305" }, { "creationDate": "2015-07-27T17:16:54.633", "id": "938812", "postId": "1795", "score": "0", "text": "`sudo pm-hibernate` is amazing for making SATA drives really hotplug! :)", "userDisplayName": null, "userId": "63606" }, { "creationDate": "2015-09-10T07:18:34.987", "id": "972096", "postId": "1795", "score": "0", "text": "`sudo pm-suspend` works well but while waking up after doing so doesn't ask me for password. what should I do.", "userDisplayName": null, "userId": "361497" }, { "creationDate": "2016-03-18T01:22:40.437", "id": "1113142", "postId": "1795", "score": "1", "text": "none of the above works, even with sudo rights. not the `pm-hibernate`, `pmi action hibernate`, not the `dbus` stuff. I am sad.", "userDisplayName": null, "userId": "378854" }, { "creationDate": "2017-02-05T13:42:34.957", "id": "1370225", "postId": "1795", "score": "0", "text": "I'm on 16.04 and both `systemctl suspend` and `pm-suspend` work; the difference being that the latter does not first lock the screen and requires `sudo` to run.", "userDisplayName": null, "userId": "8384" }, { "creationDate": "2020-06-17T20:24:18.050", "id": "2112214", "postId": "1795", "score": "0", "text": "systemctl suspend -i\nIt required the -i flag for me on ubuntu 18.04", "userDisplayName": null, "userId": "77604" }, { "creationDate": "2020-07-01T21:15:46.250", "id": "2121276", "postId": "1795", "score": "2", "text": "To suspend after one hour: `sleep 3600 && systemctl suspend`", "userDisplayName": null, "userId": "748121" }, { "creationDate": "2021-06-20T23:20:45.377", "id": "2302348", "postId": "1795", "score": "1", "text": "`systemctl suspend` worked for me on Ubuntu 20.04, although it made me type my password twice.", "userDisplayName": null, "userId": "48214" }, { "creationDate": "2021-09-22T07:06:11.053", "id": "2343128", "postId": "1795", "score": "0", "text": "`systemctl hibernate` doesn't work for me. I have Ubuntu 18.04.5 LTS on Lenovo-Z50-70.", "userDisplayName": null, "userId": "966435" }, { "creationDate": "2021-12-08T17:17:44.383", "id": "2378944", "postId": "1795", "score": "0", "text": "Doesn't work on my 21.10 OS. Even when root, and executed locally: `Unit suspend.target is masked.`", "userDisplayName": null, "userId": "107996" }, { "creationDate": "2022-02-23T08:53:54.540", "id": "2412921", "postId": "1795", "score": "0", "text": "`systemctl hibernate` worked for me in `Ubuntu 18.04.1 LTS` **BUT**, while hibernating, the screen seemed to freeze, and also the fans when turning it on where insanely loud for at least 10 seconds... I am not sure why.", "userDisplayName": null, "userId": "1544055" }, { "creationDate": "2022-02-28T14:39:05.593", "id": "2415052", "postId": "1795", "score": "0", "text": "Both of `systemctl suspend` and `systemctl hibernate` work well on my Ubuntu 14.04 LTS", "userDisplayName": null, "userId": "1005243" }, { "creationDate": "2022-03-25T23:17:54.847", "id": "2425845", "postId": "1795", "score": "0", "text": "Why the `Systemd Method` header when the method is `systemctl` instead? They are not the same. Perhaps still good to have that header for search hits, though.", "userDisplayName": null, "userId": "1110856" }, { "creationDate": "2022-08-30T08:17:10.057", "id": "2484047", "postId": "1795", "score": "1", "text": "This answer get confusing at section 3: the new obsolete section. Is the new method obsolete?", "userDisplayName": null, "userId": "10473" }, { "creationDate": "2023-09-11T00:33:45.720", "id": "2601121", "postId": "1795", "score": "0", "text": "I had to use `sudo`, as in: `sudo systemctl suspend` for it to work.", "userDisplayName": null, "userId": "327339" }, { "creationDate": "2023-09-11T00:37:47.663", "id": "2601124", "postId": "1795", "score": "0", "text": "Any idea how `sudo systemctl suspend` differs from my `sudo true && gnome-screensaver-command -l && sudo pm-suspend` command [in my answer](https://askubuntu.com/a/1485370/327339)? Do they have any different side effects or nuances you are aware of?", "userDisplayName": null, "userId": "327339" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-09T20:32:30.047", "id": "1795", "lastActivityDate": "2020-12-07T18:33:50.320", "lastEditDate": "2020-12-07T18:33:50.320", "lastEditorDisplayName": null, "lastEditorUserId": "20358", "ownerDisplayName": null, "ownerUserId": "4", "parentId": "1792", "postTypeId": "2", "score": "494" }
[ { "accepted": true, "body": "<p>Traditionally ubuntu supported a fairly blunt method of suspend and hibernate. Neither would integrate well with other apps and sometimes not even work on some machines. This new method doesn't require root and notifies all applications listening for power events.</p>\n<h3>Sy...
null
null
null
null
null
1793
1
null
2010-08-09T20:25:25.773
7
2102
<p>Seeing that this is a big Ubuntu community, I have never looked at someone's Ubuntu desktop and thought "that looks cool, I wish I had X. How did you do that?"</p> <p>What are the must have add-ons for look and feel?</p> <p>e.g conky, tilda, album art, emerald, docky etc... </p>
333
694267
2017-10-22T08:03:13.467
2017-10-22T08:20:05.027
What are the must-have apps to customize Ubuntu Look and Feel?
[ "icons", "customization" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>One trick is to look at the gconf settings for apps, such as the screensaver, nautilus, panels, etc. Often there are tweakables in there that aren't exposed in the app's preferences settings.</p>\n\n<p>Run gconf-editor for a GUI interface to examine config settings, or if yo...
2010-08-09T20:25:25.773
null
null
null
null
1801
1
null
2010-08-09T21:24:04.347
2
11000
<p>The only reason I ever boot into Windows (7) is to use the popular video chat software ooVoo (<a href="http://oovoo.com" rel="nofollow">website</a>). It's useless under Wine and there seems to be no way to run it in Ubuntu except for some proprietary tools. Does anyone have any information on some alternatives to running it with Wine?</p>
782
169736
2014-01-08T23:11:25.177
2015-08-06T20:33:46.950
Why no ooVoo on ubuntu?
[ "software-recommendation" ]
5
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-09T21:26:58.153", "id": "1687", "postId": "1801", "score": "0", "text": "alternative being things like skype? or many mainstream messenger client?", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-08-10T14:25:25.287", "id": "1754...
null
[ { "accepted": null, "body": "<p><a href=\"http://ekiga.org/\" rel=\"nofollow noreferrer\">Ekiga</a> - free(gratis), free(libre)</p>\n<p><a href=\"http://www.qutecom.org/\" rel=\"nofollow noreferrer\">QuteCom</a> - free(gratis), free(libre)</p>\n<p><a href=\"http://www.skype.com/intl/en-gb/home\" rel=\"nofol...
null
null
null
null
null
1802
1
1806
2010-08-09T21:44:17.620
2
376
<p>The icons in the notification area are sometimes broken upon login. This is always fixed if I close the session and login again.</p> <p>See in this <a href="http://www.freeimagehosting.net/uploads/20a81fac16.png" rel="nofollow">screenshot</a>, the usual "power" button is replaced by a part of my user name. The whole username should be "agustin".</p> <p>The problem is not just visual, if you click where the power button should be you get no functionality. Interestingly, if you click on the other button, and you move the cursor qith the arrow keys, you get the menu.</p> <p>I believe this problem is related to the nvidia propietary drivers, but I am not sure. Any ideas? Anyone had this problem like me?</p> <p>--<br> Agustín</p>
1039
4
2010-08-14T01:49:13.837
2010-08-14T01:49:13.837
how can I fix the (broken) icons in the notification area upon login?
[ "10.04", "nvidia" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-15T15:06:42.777", "id": "2252", "postId": "1802", "score": "0", "text": "There's a related question and discussion here: http://ubuntu.stackexchange.com/questions/374/why-do-my-clock-indicator-applets-and-notification-area-sometimes-move-around-w . Some of the answers...
{ "accepted": true, "body": "<p>Try</p>\n\n<p><code>killall gnome-panel</code></p>\n\n<p>The panel will disappear, but don't panic... it will reappear in a few seconds with all your icons in place.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-09T22:48:47.003", "id": "1691", "postId": "1806", "score": "0", "text": "*Most* of the icons. Some apps are fussy and wont re-add themselves (xchat for one)", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-11T11:22:36.760", "id": "1843", "postId": "1806", "score": "0", "text": "thanks! is there a way to fix this permanently?", "userDisplayName": null, "userId": "1039" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T22:47:41.623", "id": "1806", "lastActivityDate": "2010-08-09T22:47:41.623", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "146", "parentId": "1802", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Try</p>\n\n<p><code>killall gnome-panel</code></p>\n\n<p>The panel will disappear, but don't panic... it will reappear in a few seconds with all your icons in place.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-09T22:48:47.003", ...
null
null
null
null
null
1807
1
1808
2010-08-09T22:55:22.920
56
46917
<p>I'm trying to fix what I consider a bloated install of Ubuntu. When I install Ubuntu on a machine, I get things that I don't want - web browsers, office applications, media players, accessibility utilities, Ubuntu One, and so on. My goal is to create a way that I can have an install of Ubuntu that contains only the most minimal packages - the administrative tools and package manager, a GUI (my preference would be GNOME), a text editor, core drivers (video cards, network cards - wired and wireless, input devices), and anything else that I have to have to run a stable distribution. From there, I would like to pick and choose which packages I install to create my own customized system.</p> <p>After playing around with other distros like Arch and Slackware, like how they provide a barebones install by default. However, I get trapped in a "configuration hell" - right now, I tried moving away from Ubuntu and to Arch, but after spending 6 hours with it, I still don't have a usable system. It's half configured and I don't have any usable software packages to enable me to work.</p> <p>Is anything that can help me available? Either something like the OpenSUSE builder that lets you choose applications and packages for the CD, an advanced installation mode where I can choose the packages to install and which to ignore, or a guide on how to strip Ubuntu down to its bare bones?</p> <p>And I suppose a natural follow up to this is once I have a stripped down Ubuntu, will this affect updating at all? When Canonical releases the next version of Ubuntu, I don't want any bloatware reinstalled. And yes, most of the applications that come with Ubuntu, I simply don't use. Ever.</p>
124
227922
2014-04-26T11:08:50.683
2016-06-30T15:19:07.160
How can I strip down Ubuntu?
[ "package-management", "system-installation", "software-installation", "performance" ]
10
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-10T04:09:59.837", "id": "1721", "postId": "1807", "score": "4", "text": "I think you should expand your question to say something like \"I want the base system, with Gnome, but without all the office-suites, games, etc.", "userDisplayName": null, "userId": "266...
{ "accepted": true, "body": "<p>Start from <a href=\"http://www.ubuntu.com/server\">Ubuntu Server</a> and build up. It uses the same repos as the desktop distribution and you can install various desktop configurations. </p>\n\n<p>I just suggest you stay away from the big metapackages like ubuntu-desktop or you'll end up will the full blown distro.</p>\n\n<p>If you only want to strip down (rather than building up) you're going to have to remove ubuntu-desktop (which depends on loads of things) and convert all the automatically met dependencies to manually installed. If you don't aptitude will nuke them as it (amongst other tools) will automatically clean up \"obsolete\" packages -- those are packages that fulfil no dependency or user choice.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-08-09T23:39:54.637", "id": "1702", "postId": "1808", "score": "0", "text": "The same concern that I've had with the other suggestions to do this comes up - will I get caught up in configuration hell like where I am right now with Arch? I have a half configured system that's running Gnome, but it has no wireless networking support, no applications to help me work, and I'm looking at several hours of installations and configurations to get me to a point where I can use the system.", "userDisplayName": null, "userId": "124" }, { "creationDate": "2010-08-10T07:34:24.393", "id": "1729", "postId": "1808", "score": "1", "text": "No. You pick the packages, they'll come with the same defaults that the main system does.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-10T16:14:42.747", "id": "1759", "postId": "1808", "score": "0", "text": "@Thomas, why the work? If the full system \"just works\" then why not just use that?", "userDisplayName": null, "userId": "963" }, { "creationDate": "2010-08-10T19:31:21.263", "id": "1782", "postId": "1808", "score": "2", "text": "Because I want to maximize the available disk space by every megabyte and reduce RAM consumption as much as possible.", "userDisplayName": null, "userId": "124" }, { "creationDate": "2010-08-13T22:16:04.253", "id": "2149", "postId": "1808", "score": "1", "text": "Although I haven't done this yet (no time), it appears to be the best option for building a custom Ubuntu-based distribution from the ground up and achieving a minimal install.", "userDisplayName": null, "userId": "124" }, { "creationDate": "2012-05-30T12:46:07.117", "id": "173143", "postId": "1808", "score": "1", "text": "You could also use the minimal installation, just an FYI.", "userDisplayName": null, "userId": "10616" }, { "creationDate": "2012-05-30T13:29:22.467", "id": "173155", "postId": "1808", "score": "1", "text": "@LordofTime I'm personally not that big a fan of `-minimal`. It's too bare and you just have to download all the packages, which, IMO, is slower than just downloading the `-server` ISO and picking sane additional packages. `-server` is a very sensible starting point.", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-09T23:00:47.750", "id": "1808", "lastActivityDate": "2010-08-09T23:00:47.750", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1807", "postTypeId": "2", "score": "26" }
[ { "accepted": true, "body": "<p>Start from <a href=\"http://www.ubuntu.com/server\">Ubuntu Server</a> and build up. It uses the same repos as the desktop distribution and you can install various desktop configurations. </p>\n\n<p>I just suggest you stay away from the big metapackages like ubuntu-desktop or ...
null
null
null
null
null
1813
1
1818
2010-08-09T23:27:30.637
9
15789
<p>I have a dual-boot setup with Ubuntu and Windows Vista. I need to shrink the partition that Vista is installed on. (It's an NTFS partition.) I tried using Vista's own disk manager, but it didn't work.</p> <p>I heard that GParted can resize NTFS partitions - is this true? Is it a safe tool for resizing partitions? Are there any potential issues I should be aware of if I use it?</p>
5
274320
2015-12-15T15:11:06.287
2015-12-15T15:11:06.287
Is GParted a good tool for resizing an NTFS partition?
[ "partitioning", "gparted" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p><code>gparted</code> is a great partitioning tool - I have used it to resize <code>FAT</code>, <code>NTFS</code>, <code>EXT[2..4]</code> and haven't run into any issues as of yet. However - with all disk operations there is always the possibility of failure and that should always be weighed during resizing.</p>\n\n<p>Make sure you have nothing mounted to the drives you're attempting to resize, ensure that you have ample CPU and RAM to perform the operations. If you're on a Laptop make sure it's plugged in and that it won't suspend or hibernate while performing these operations. Lastly this can be time intensive - my last tip is, while <code>gparted</code> is running it may appear unresponsive or frozen. Just let it finish.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-08-10T02:08:25.297", "id": "1716", "postId": "1818", "score": "0", "text": "Absolutely, also I read somewhere that it is a good idea to let a windows boot run chkdsk on a newly resized partition. I do as a matter of procedure so don't know if skipping it would be ok, but it's easy enough. Mentioned because usually I do this in conjunction with a dual boot installation, and the point is, don't install the second OS until Windows marks the first partition clean.", "userDisplayName": null, "userId": "49" }, { "creationDate": "2010-08-10T02:10:39.517", "id": "1717", "postId": "1818", "score": "0", "text": "Added the rational for the comment since many people would just automatically boot Windows next anyway.", "userDisplayName": null, "userId": "49" }, { "creationDate": "2010-08-10T04:14:56.837", "id": "1723", "postId": "1818", "score": "0", "text": "@Dennis: Well, `gparted` forces `chkdsk` to run after resizing the partition anyway :)", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-08-10T12:12:05.090", "id": "1743", "postId": "1818", "score": "0", "text": "Yes that is true, but if I remember the point of the article I read (wish I had saved it because it could be out of date) it was don't make major changes to the NTFS partition, then immediately install a second system without letting the chkdsk happen from within Windows first. Which if anyone could confirm that this is wrong, I'd also like to know it.", "userDisplayName": null, "userId": "49" }, { "creationDate": "2010-08-10T18:39:53.277", "id": "1772", "postId": "1818", "score": "0", "text": "What I absolutely 'love' about gparted is that it schedules a `chkdsk` run even when doesn't change the partition :P", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-08-10T18:54:16.117", "id": "1775", "postId": "1818", "score": "1", "text": "@George - when dealing when Windows you can never be too careful :P", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T00:21:43.490", "id": "1818", "lastActivityDate": "2010-08-10T00:21:43.490", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "1813", "postTypeId": "2", "score": "18" }
[ { "accepted": true, "body": "<p><code>gparted</code> is a great partitioning tool - I have used it to resize <code>FAT</code>, <code>NTFS</code>, <code>EXT[2..4]</code> and haven't run into any issues as of yet. However - with all disk operations there is always the possibility of failure and that should al...
null
null
null
null
null
1816
1
2898
2010-08-09T23:42:48.857
18
555
<p>In Ubuntu, X is one of the more critical pieces in the stack. As such, we get a TON of questions and bug reports about it, probably about 100 times as many as we have manpower to handle.</p> <p>Canonical is hiring additional engineers to work on X which will help, but still there are many things that are outside the scope of what Canonical can do, so I feel it is really important to have a strong community involved in improving X in Ubuntu, particularly around getting all these massive amounts of bug reports answered, triaged, and (hopefully) solved.</p> <p>However, it's tough to find people to work on X or to convince people that it is worthwhile for them to invest their time in it. How would you suggest going about encouraging people to get involved, who might not otherwise be thinking of working on X?</p>
913
913
2010-08-20T06:01:39.427
2010-08-23T18:13:29.667
How to get more people involved in improving X.org for Ubuntu?
[ "xorg", "packaging", "community", "graphics" ]
5
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-10T00:08:37.713", "id": "1709", "postId": "1816", "score": "3", "text": "I would suggest making this a Community Wiki entry.", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-10T00:12:07.987", "id": "1710", "postId": "1816"...
{ "accepted": true, "body": "<p>Well like everything a lot of it is making it easy and accessible for people to find out about it. So from what I remember with bug triage originally there wasn't a lot of help coming from the community. Then when some wiki pages explaining the regular processes in triaging bugs and some bug days got a lot more community members involved. Also if you can start a regular activity for the community to do and offer help to those that try it you will get some interest.</p>\n\n<p>If you need help with the activity you can email me and ill help with organizing it.</p>\n\n<p>So my answer is making a wiki page with questions and commands for getting good bug triage info to get people involved in that. </p>\n\n<p>For development its a big problem. Xorg and Kernel stuff require low level programming skills for most bug fixing and implementing features. So you have to target a specific group of programmers and get them interested. I dont have any suggestions here except ask around a bit and see who hangs out in #ubuntu-x and ask them if they can help. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-15T19:26:01.000", "id": "29165", "postId": "2898", "score": "0", "text": "Isn't it targeted to implement Wayland in the future? Would it then not be better to get people work on that?", "userDisplayName": null, "userId": "2192" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T22:22:58.170", "id": "2898", "lastActivityDate": "2010-08-22T22:22:58.170", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "153", "parentId": "1816", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>The reason X doesn't get alot of work is that it requires an enormous amount of knowledge about how GPU's, memory etc.. work as well as familiarity with the X.org code base and to some extent kernel programming. It's not a trivial thing to get into and from a community perspe...
null
null
2014-03-26T16:04:47.603
null
null
1820
1
3829
2010-08-10T01:42:03.690
23
24671
<p>I would like to use NetworkManager, but prefer a keyboard driven window manager that provides as much space on the screen as possible for my code. I just hate that little strip of real estate "trays" take up on my screen. I have tried running <code>nm-*</code> from the command line, but they seam to never work without a tray.</p>
1043
4
2010-08-10T03:59:06.173
2010-09-07T20:25:01.487
Can I use NetworkManager without a tray/dock/bar?
[ "command-line", "dock", "network-manager" ]
6
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-01T07:37:03.150", "id": "5112", "postId": "1820", "score": "2", "text": "I love it when someone asks a question that's been on my mind.", "userDisplayName": null, "userId": "2383" } ]
{ "accepted": true, "body": "<p>If you're running on Ubuntu Maverick (and thus have network-manager 0.8.1), try the nmcli tool:</p>\n\n<pre><code>$ nmcli\n\nUsage: nmcli [OPTIONS] OBJECT { COMMAND | help }\n\nOPTIONS\n -t[erse] terse output\n -p[retty] pretty output\n -m[ode] tabular|multiline output mode\n -f[ields] &lt;field1,field2,...&gt;|all|common specify fields to output\n -e[scape] yes|no escape columns separators in values\n -v[ersion] show program version\n -h[elp] print this help\n\nOBJECT\n nm NetworkManager status\n con NetworkManager connections\n dev devices managed by NetworkManager\n</code></pre>\n\n<p>As above, it's just one file, and comes with NM 0.8.1.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T20:25:01.487", "id": "3829", "lastActivityDate": "2010-09-07T20:25:01.487", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1724", "parentId": "1820", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>From wikipedia...</p>\n<blockquote>\n<p>NetworkManager has two components:</p>\n<ul>\n<li><p>a service which manages connections and reports network changes</p>\n</li>\n<li><p>a graphical desktop applet which allows the user to manipulate network connections. The\nnmcli apple...
null
null
null
null
null
1829
1
1894
2010-08-10T08:49:21.107
8
1962
<p>I'd like to drag a few more folders to the places sidebar in nautilus, but want to group these new ones separately to the default folders (like Dropbox, Downloads and Documents). Is there a way to add a new separator to the list?</p>
213
null
null
2010-08-10T21:08:45.040
How can I add a separator to the Place sidebar in nautilus?
[ "nautilus", "places" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is not ideal but as far as I can see the only option you have short of <a href=\"https://bugs.launchpad.net/bugs/bugtrackers/gnome-bugs\">filing a bug and chasing it through</a> or writing and applying a patch.</p>\n\n<ul>\n<li>Open Nautilus</li>\n<li>Browse to a directory that you don't want to bookmark, for example /bin</li>\n<li>From the Bookmarks menu click on \"Add Bookmark\"</li>\n<li>Then Right click on the bookmark for /bin and choose \"Rename...\"</li>\n<li>Rename the bookmark to \"----------\"</li>\n<li>Close Nautilus and open it again</li>\n<li>you now have something that looks vaguely but not very much like a separator.</li>\n</ul>\n\n<p>EDIT: Looks like there is <a href=\"https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/260857\">already a bug filed for this</a>. <a href=\"https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/260857\">Add your own point of view here</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T21:08:45.040", "id": "1894", "lastActivityDate": "2010-08-10T21:08:45.040", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "458", "parentId": "1829", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>Hack on the code. </p>\n\n<p>AFAIK there's no gconf (or other) way to alter the places that aren't bookmarks.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-06-25T18:28:58.773", "id": "916886", "postId": "1834", ...
null
null
null
null
null
1830
1
1831
2010-08-10T09:00:05.903
8
1495
<p>The new graphical bootloader introduced in 10.04 (plymouth) looks amazing until I enable proprietary drivers for my video card. I then get a horrible flashy monster of a boot experience, which I can cope with if I have to, but I'm sure would be offputting for newer users.</p> <p>My understanding is that plymouth depends on features that currently aren't available in the proprietary drivers. My question is, is this likely to change, or should I just get used to 'one or the other' (i.e. a nice boot experience or a nice desktop experience, but not both)? Can we expect to see plymouth playing nice with proprietary graphics drivers in future, or is this solely reliant on work from the proprietary manufacturers?</p>
1052
667
2010-08-10T10:39:45.820
2011-12-01T18:45:30.443
Will plymouth allow for a nice boot experience with proprietary graphics drivers in future?
[ "boot", "nvidia", "plymouth" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You're asking a question that can only really be answered by the developers and decision makers at the companies making the hardware and the drivers.</p>\n\n<p>Ultimately, it can be done but it requires some give on both sides of the fence. Nvidia, for example, claim they could do it but require some relaxation on the licensing of certain libraries.</p>\n\n<p><a href=\"http://www.nvnews.net/vbulletin/showthread.php?t=122845\" rel=\"nofollow\">From AaronP</a> (nvidia staff):</p>\n\n<blockquote>\n <p>The last time I talked to the\n developers working on it, they told me\n that the hooks necessary to implement\n kernel modesetting were exported to\n GPL modules only, and therefore are\n not usable by the NVIDIA driver. On\n the other hand, that was a while ago\n and I haven't looked at it since. If\n the kernel developers are willing to\n work with us to make kernel\n modesetting possible for NVIDIA GPUs,\n then we'll look into it.</p>\n</blockquote>\n\n<p><a href=\"http://www.nvnews.net/vbulletin/showpost.php?p=1662277&amp;postcount=5\" rel=\"nofollow\">And again here</a>:</p>\n\n<blockquote>\n <p>Well, let me rephrase that... it was\n specifically designed to be\n incompatible with non-GPL drivers, at\n least according to Dave Airlie when I\n asked him about it a couple of months\n ago. I haven't actually looked at the\n code, myself.</p>\n</blockquote>\n\n<p>That was two years ago... So no, this hasn't been moving along particularly fast. I fear there's probably more luck in getting X loaded up faster and just using XSplash.</p>\n\n<p>But when you look at it from Nvidia's point of view, what does this feature really add for their users? Would they benefit more from 400 man-hours going into Xorg development or 400 hours going into making the boot sequence more pretty?</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-11T09:40:54.610", "id": "1831", "postId": "1831", "score": "1", "text": "Thanks for the response. I totally see your point about the need to prioritize the use of man-hour resources. Still, it's unfortunate that this is the case. In my experience unless a newcomer is ideologically attached to FOSS, it often seems to only take a few little bugs like this to turn them off (particularly when the boot screen is one of the first things they are likely to see). Not pointing fingers in any direction, just a humble observation.", "userDisplayName": null, "userId": "1052" }, { "creationDate": "2010-08-11T10:25:25.730", "id": "1839", "postId": "1831", "score": "0", "text": "If you don't like how it looks you could just remove the `splash` option from the boot parameters (hold left-shift to get into grub, press e, remove the option, control+x to boot). A blank screen might look better.", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T09:19:30.747", "id": "1831", "lastActivityDate": "2010-08-10T09:19:30.747", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1830", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>You're asking a question that can only really be answered by the developers and decision makers at the companies making the hardware and the drivers.</p>\n\n<p>Ultimately, it can be done but it requires some give on both sides of the fence. Nvidia, for example, claim they cou...
null
null
null
null
null
1832
1
1835
2010-08-10T09:26:04.637
20
107440
<p>I want a native Ubuntu installation, not an VM. Do I have options on my Mac (that don't involve destroying the 'Mac' portion of it) or should I just switch to a standard PC? If I do have options, it would be nice to know what they are :-p</p>
1057
67335
2014-08-05T05:55:09.760
2023-07-22T10:42:05.117
Is it possible to install Ubuntu on a Mac using Bootcamp?
[ "system-installation", "mac" ]
6
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-10T14:06:04.880", "id": "1749", "postId": "1832", "score": "2", "text": "Is your Mac running on an Intel chip?", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>You have options! There are help pages for installing on Macs that show the hardware support and installation alongside OSX.</p>\n\n<p>Here is the page where you select which hardware you have:</p>\n\n<p><a href=\"https://wiki.ubuntu.com/MactelSupportTeam/CommunityHelpPages\">https://wiki.ubuntu.com/MactelSupportTeam/CommunityHelpPages</a></p>\n\n<p>Just click through, select the version of Ubuntu and you'll get some installation instructions. Be sure to check the hardware compatibility too because you might not want to install if certain things aren't going to work.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2018-09-21T22:40:50.047", "id": "1769281", "postId": "1835", "score": "6", "text": "This doesn't answer the question: is it possible to install and boot to Ubuntu using Bootcamp?", "userDisplayName": null, "userId": "87036" }, { "creationDate": "2021-12-04T14:00:49.693", "id": "2377014", "postId": "1835", "score": "0", "text": "Note that for e.g. MacBookPro, the latest supported version is 11,3 which is from back in 2013-2014. Later versions seem to be unsupported.", "userDisplayName": null, "userId": "588920" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T09:33:38.320", "id": "1835", "lastActivityDate": "2010-08-10T09:33:38.320", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1832", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>You have options! There are help pages for installing on Macs that show the hardware support and installation alongside OSX.</p>\n\n<p>Here is the page where you select which hardware you have:</p>\n\n<p><a href=\"https://wiki.ubuntu.com/MactelSupportTeam/CommunityHelpPages\"...
null
null
null
null
null
1836
1
1837
2010-08-10T09:44:47.803
14
17475
<p>I have a valid, reachable SMB share on my Windows box, which I can mount with </p> <pre><code>sudo mount -t cifs //192.168.0.9/C /mnt/WinC -o username=foo,password=bar </code></pre> <p>but isn't mountable from my fstab. The fstab entry reads</p> <pre><code>//192.168.0.9 /mnt/WinC credentials=/root/.smbcredentials,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0 </code></pre> <p>and the credentials file (which has 777 permissions while I get this working) contains</p> <pre><code>username=foo password=bar </code></pre> <p>but sudo mount -a results in an error, which from a dmesg | tail, shows</p> <pre><code>[225040.991705] CIFS VFS: No username specified [225050.991721] CIFS VFS: cifs_mount failed w/return code = -22 </code></pre> <p>Anyone else seen this issue and managed to resolve it?</p>
630
null
null
2016-06-15T19:28:08.443
Problems mounting an SMB share in my fstab
[ "mount", "fstab" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Install <code>smbfs</code>. </p>\n\n<p>Sounds silly that a package could fix this but when you use credentials files, the kernel diverts to the <code>mount.cifs</code> command rather than doing the mount itself. This package provides <code>mount.cifs</code> so should get you on the road to victory!</p>\n\n<p><strong>Edit:</strong> As Klaus points out in the comments, for 13.04 and later, you need <code>cifs-utils</code>.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-08-10T10:09:44.950", "id": "1738", "postId": "1837", "score": "0", "text": "That's fixed it, thanks. I'd assumed smbfs was already installed since I was able to mount it manually.", "userDisplayName": null, "userId": "630" }, { "creationDate": "2010-08-10T10:16:07.473", "id": "1739", "postId": "1837", "score": "1", "text": "Yeah it's crazy. `smbfs` is actually the deprecated predecessor to `cifs` so it's even stranger that the `smbfs` package provides this command.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-11T11:04:49.970", "id": "1840", "postId": "1837", "score": "0", "text": "Nice explanation :)", "userDisplayName": null, "userId": "644" }, { "creationDate": "2013-05-11T08:10:54.940", "id": "369555", "postId": "1837", "score": "8", "text": "If you're using ubuntu 13.04, you should install cifs-utils instead of smbfs.", "userDisplayName": null, "userId": "155355" }, { "creationDate": "2013-08-09T14:16:03.063", "id": "420549", "postId": "1837", "score": "1", "text": "Answered decades ago, I know, but I needed this solution for LTS 12.04 and spent way-too-long searching.", "userDisplayName": null, "userId": "182729" }, { "creationDate": "2016-05-13T14:06:52.993", "id": "1153197", "postId": "1837", "score": "0", "text": "Still helps installing cifs-utils on Ubuntu 16.04", "userDisplayName": null, "userId": "543324" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-10T10:05:48.527", "id": "1837", "lastActivityDate": "2013-08-09T14:23:59.017", "lastEditDate": "2013-08-09T14:23:59.017", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1836", "postTypeId": "2", "score": "28" }
[ { "accepted": true, "body": "<p>Install <code>smbfs</code>. </p>\n\n<p>Sounds silly that a package could fix this but when you use credentials files, the kernel diverts to the <code>mount.cifs</code> command rather than doing the mount itself. This package provides <code>mount.cifs</code> so should get you ...
null
null
null
null
null
1844
1
1860
2010-08-10T13:07:07.843
22
8044
<p>I know of the <a href="http://awesome.naquadah.org/">awesome</a> window manager, which after some customization may suit my desires, but I was wondering if there is a keyboard-centric desktop environment that doesn't require too much tweaking to make it really useful. Of course gnome and I'm sure KDE have nice shortcuts, and the ability to set them up how you want, but that becomes a problem because in a lot of cases the keyboard ends out conflicting with built-in program behavior.</p> <p>Any suggestions?</p>
658
235
2012-11-21T21:22:37.280
2019-03-10T15:14:38.757
Is there a keyboard-centric desktop/WM available?
[ "software-recommendation", "keyboard" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There are plenty! (However, all the ones that I know of are also <a href=\"http://en.wikipedia.org/wiki/Tiling_window_manager\">tiling window managers</a>.)</p>\n\n<ul>\n<li><p><a href=\"http://xmonad.org\">XMonad</a> is likely the one with the largest user\ncommunity. It has extensive documentation and works well with\nGNOME/EWMH extensions (albeit you have to activate them in the\nconfiguration file). The configuration file has Haskell syntax, but\nit's certainly possible to edit it without knowing much about\nHaskell, by just copying+pasting examples from the documentation.\nDefault keybindings are <code>vim</code>-inspired, though they can all be\nremapped (including using chained keybindings like Emacs' <code>C-a C-b\nC-c</code>). It's available in Ubuntu as package <code>xmonad</code>.</p></li>\n<li><p><a href=\"http://www.bluetile.org\">Bluetile</a> is an offspring of XMonad: it\nsupports a simplified configuration file, and integrates well with\nthe GNOME desktop by default. Unfortunately, it's not available in\nUbuntu 10.04, so you have to install from source.</p></li>\n<li><p><a href=\"http://dwm.suckless.org\">DWM</a> is the \"inspiring father\" of XMonad\nand Awesome. It's very lean and fast, and available as package\n<code>dwm</code> in Ubuntu 10.04. However, by design, to change the\nconfiguration you have to edit a header file in the sources and\nrecompile; most documentation about the available options is only\navailable as mailing list posts. It does not support GNOME/EWMH by\ndefault, you will have to patch it; the <a href=\"http://plhk.ru/\">Echinus</a> fork of DWM\nstarted this way. Most <code>dwm</code> users will frown upon a \"desktop\nenvironment\" so it's probably not the right choice if you like GNOME\ngimmicks. Default key bindings are <code>vim</code>-like; they can be remapped,\nbut there's no option for chained key-combos.</p></li>\n<li><p><a href=\"http://awesome.naquadah.org\">Awesome</a> started off as a fork of DWM.</p></li>\n<li><p><a href=\"http://tuomov.iki.fi/software/\">Ion</a> is a tiling window manager fully\nprogrammable in Lua: also the \"configuration file\" is a Lua script,\nso you can map any key to any action (provided you know enough Lua\nfor the task). No support for GNOME or EWMH extensions, as far as I\nknow. Available in Ubuntu 10.04 as package <code>ion3</code>.</p></li>\n<li><p><a href=\"http://wmii.suckless.org\">wmii</a> is the predecessor of DWM (same\nauthor). It can be fully controlled by the keyboard, but has a\nsmaller selection of layouts, and the configuration format is\nbased on a \"virtual filesystem\", which makes very complex things\npossible but (IMHO) also simple things rather complicated.\nAvailable in Ubuntu 10.04 as package <code>wmii</code>.</p></li>\n<li><p><a href=\"http://freecode.com/projects/larswm\">larswm</a> can configure a key binding for\nall the operations it supports. Documentation comes in the form of\na man page, clear and complete. The user community is now very\nsmall, and the mailing list used to be silent for months. No\nsupport for EWMH/desktop extensions. Available as package <code>larswm</code>.</p></li>\n<li><p><a href=\"http://www.nongnu.org/ratpoison/\">ratpoison</a>, as the name says,\nforces you <em>not</em> to use the mouse. Every action is accomplished by\na key stroke. Default keybindings are inspired by GNU <code>screen</code> and\nEmacs; they can be rebound, subject to the constraint that there is\nalways a global \"prefix key\" to initiate the action.\n<a href=\"http://www.nongnu.org/stumpwm/\">StumpWM</a> is a rewrite of\n<code>ratpoison</code> in Common Lisp, which adds the nice option to hack the\nWM while you're running it. No support for EWMH/desktop extensions\n(by design, I'd say). Both are available in Ubuntu 10.04 (packages\n<code>ratpoison</code> and <code>stumpwm</code>).</p></li>\n</ul>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-08T19:36:01.540", "id": "17749", "postId": "1860", "score": "0", "text": "awesome is no longer a tiling wm, although it is still supporting tiling", "userDisplayName": null, "userId": "3382" }, { "creationDate": "2013-11-13T23:46:31.220", "id": "481126", "postId": "1860", "score": "0", "text": "The Bluetile author refers to `XMonad` as a library for writing window managers. I think this is an accurate description.", "userDisplayName": null, "userId": "12518" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-10T16:20:13.757", "id": "1860", "lastActivityDate": "2013-09-05T08:59:55.997", "lastEditDate": "2013-09-05T08:59:55.997", "lastEditorDisplayName": null, "lastEditorUserId": "3940", "ownerDisplayName": null, "ownerUserId": "325", "parentId": "1844", "postTypeId": "2", "score": "38" }
[ { "accepted": null, "body": "<p>Use <kbd>Meta</kbd> or <kbd>Ctrl-Alt</kbd> modifiers for desktop shortcuts.</p>\n\n<p>Most programs use <kbd>Ctrl</kbd> or <kbd>Alt</kbd> modifiers for their shortcuts (or use the function keys with no modifiers).</p>\n\n<p>Most programs don't use <kbd>Ctrl-Alt</kbd> shortcu...
null
null
null
null
null
1846
1
1850
2010-08-10T13:25:58.267
2
807
<p>Hey, Im trying to install Wolfenstein E.T however it comes up with this error message when running, Saying its missing Libgtk-1.2. In the repos there is only libgtk2.0 any ideas how i can get around this problem?</p>
633
67335
2014-08-05T03:42:31.460
2016-11-23T07:43:12.203
How can Wolfenstein Enemy Teritory with dependency on libgtk1.2 be installed on Ubuntu?
[ "software-installation", "games", "ppa", "gtk" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Either download and compile <a href=\"http://www.gtk.org/download-linux.html\" rel=\"nofollow noreferrer\">libgtk-1.2</a> or update and recompile the game (don't think this is a real possibility, but in theory it works.)\nYou can google for instructions on how to compile it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-10T13:58:12.713", "id": "1850", "lastActivityDate": "2016-11-23T07:43:12.203", "lastEditDate": "2016-11-23T07:43:12.203", "lastEditorDisplayName": null, "lastEditorUserId": "211", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "1846", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Either download and compile <a href=\"http://www.gtk.org/download-linux.html\" rel=\"nofollow noreferrer\">libgtk-1.2</a> or update and recompile the game (don't think this is a real possibility, but in theory it works.)\nYou can google for instructions on how to compile it.<...
null
null
null
null
null
1847
1
1851
2010-08-10T13:31:34.730
7
1109
<p>I have a Lenovo x61 tablet PC running Ubuntu 10.04. I've got <a href="http://www.krizka.net/2008/02/13/thinkpad-x61-tablet-automatic-screen-rotation-under-linux/" rel="nofollow">Karol Krizka's</a> auto-rotate daemon working, along with a variety of other applications like <a href="http://risujin.org/cellwriter/" rel="nofollow">cellwriter</a>, though for some reason even when it's working properly, it needed a <a href="http://wjw.blogspot.com/2009/08/cellwriter-fix.html" rel="nofollow">fix</a> for me. There's a host of other applications I use such as</p> <ul> <li>xournal, for general notetaking</li> <li>mypaint, for drawing</li> <li>easystroke, for gesture recognition</li> </ul> <p>probably others that I forget at the moment...</p> <p>But I was wondering if there are any good tablet-oriented desktop environments for Ubuntu?</p>
658
25863
2012-11-21T21:44:09.877
2013-06-16T18:34:52.987
Is there a tablet-centric desktop available for Ubuntu?
[ "desktop-environments", "ubuntu-touch", "tablet" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There really isn't any out there currently - but what you may want to install is the new <a href=\"http://en.wikipedia.org/wiki/Ubuntu_Netbook_Edition\" rel=\"nofollow\">UNE</a> (<a href=\"http://en.wikipedia.org/wiki/Ubuntu_Netbook_Edition\" rel=\"nofollow\">Ubuntu Netbox Edition</a>) which provides the new launcher application on the destkop itself. Should make using a tablet a lot more effective.</p>\n\n<p>To get this to work you'll need to add this [ppa]: <code>ppa:netbook-remix-team/ppa</code> to your system and install the relavant packages. It took me quite some time to hunt down this repository for some reason. I believe you'll then want to execute <code>sudo apt-get install unity ubuntu-netbook-unity-default-settings</code> and any other <a href=\"https://launchpad.net/~canonical-dx-team/+archive/une/+packages\" rel=\"nofollow\">packages</a> listed.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-10T20:56:05.367", "id": "1796", "postId": "1851", "score": "1", "text": "It is also worth to watch the talk held by Mark Shuttleworth at Debconf 10: http://penta.debconf.org/dc10_schedule/events/531.en.html", "userDisplayName": null, "userId": "236" }, { "creationDate": "2010-09-10T20:46:51.770", "id": "4027", "postId": "1851", "score": "0", "text": "You can also go to application > ubuntu software center and search for ubuntu-netbook and install it that way (I couldn't get the ppa to work)", "userDisplayName": null, "userId": "658" }, { "creationDate": "2010-09-10T22:23:51.197", "id": "4032", "postId": "1851", "score": "0", "text": "Thank you for the update Wayne - it appears that repository is used for the \"preview\" release, since 10.04 the official release is packaged as `ubuntu-netbook`", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T14:02:45.527", "id": "1851", "lastActivityDate": "2010-08-10T14:02:45.527", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "1847", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>There really isn't any out there currently - but what you may want to install is the new <a href=\"http://en.wikipedia.org/wiki/Ubuntu_Netbook_Edition\" rel=\"nofollow\">UNE</a> (<a href=\"http://en.wikipedia.org/wiki/Ubuntu_Netbook_Edition\" rel=\"nofollow\">Ubuntu Netbox Ed...
null
null
null
null
null
1861
1
null
2010-08-10T17:07:07.427
13
14312
<p>I'm on a clean install of Ubuntu 10.04 LTS. My monitor's native resolution is 1280x1024. However, in the Monitor Preferences application, I am only presented with 640x480 and 800x600 as options. My video card is an on board Matrox G200eW. I tried installing the proprietary driver from Matrox's website, but the installer immediately throws four errors. I also tried using xrandr to set my resolution, but it simply pops back saying "Size 1280x1024 not found in available modes." How can I get 1280x1024 added to my available sizes to that I can switch to it?</p>
884
25863
2012-02-16T20:17:08.833
2012-02-16T20:17:08.833
Why isn't my monitor's native resolution appearing as an option?
[ "10.04", "xorg", "resolution", "matrox" ]
6
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-19T05:37:01.230", "id": "2616", "postId": "1861", "score": "0", "text": "Thanks for all the help, guys. Unfortunately, I think it's a lost cause on this machine. Even when I finally manage to get 1280x1024 added as an option, selecting it just errors out.", "user...
null
[ { "accepted": null, "body": "<p>I would recommend, correctly installing your drivers. Then i am sure if your graphic card is capable of displaying the resolution 1280x1024 it will.</p>\n\n<p>:)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-10T18:53:16.963", ...
null
null
2013-03-14T16:36:19.210
null
null
1863
1
1879
2010-08-10T17:51:28.913
0
321
<p>How can I see the code of gnome panels? for example view the code is executed When I click on shutdown button in the panel.</p>
48
4
2010-08-10T18:06:11.207
2010-08-10T20:00:52.627
Where can I find the gnome applets scripts that I can look at them?
[ "gnome", "panel", "applet" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-10T17:59:38.333", "id": "1766", "postId": "1863", "score": "0", "text": "why do you want to view the code? Maybe if you give a better description of what you want to do? :)", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-08-10T18:0...
{ "accepted": true, "body": "<p>As far as I see it the relevant code is in <a href=\"http://git.gnome.org/browse/gnome-panel/tree/gnome-panel/panel-action-button.c\" rel=\"nofollow\"><code>panel-action-button.c</code></a>. This code handles the shutdown and other things. You find the complete code at <a href=\"http://git.gnome.org/browse/gnome-panel/\" rel=\"nofollow\">git repository of gnome-panel</a>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-10T23:02:37.957", "id": "1808", "postId": "1879", "score": "0", "text": "I thought it was a shell script instead a binary written in C, Thanks for the link, it is interesting to take a look to gnome source code.", "userDisplayName": null, "userId": "48" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T20:00:52.627", "id": "1879", "lastActivityDate": "2010-08-10T20:00:52.627", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "236", "parentId": "1863", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>As far as I see it the relevant code is in <a href=\"http://git.gnome.org/browse/gnome-panel/tree/gnome-panel/panel-action-button.c\" rel=\"nofollow\"><code>panel-action-button.c</code></a>. This code handles the shutdown and other things. You find the complete code at <a hre...
null
null
null
null
null
1866
1
1870
2010-08-10T18:15:22.640
0
227
<p>Every time I remove or install anything to do with Microsoft, either it be fonts or dependencies for wine. </p> <p>I constantly find my theme messing up. Does anyone know why this happens?</p> <p>Please and thank you.</p>
333
235
2011-09-10T19:19:10.003
2014-03-04T00:37:13.107
Themes mess up any time I install anything in wine
[ "gnome", "windows", "themes" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Wine should not do anything to the Ubuntu theme. I think you should file a bug report with Wine. <a href=\"http://bugs.winehq.org/\" rel=\"nofollow\">http://bugs.winehq.org/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T18:32:54.053", "id": "1870", "lastActivityDate": "2010-08-10T18:32:54.053", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "295", "parentId": "1866", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Wine should not do anything to the Ubuntu theme. I think you should file a bug report with Wine. <a href=\"http://bugs.winehq.org/\" rel=\"nofollow\">http://bugs.winehq.org/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentL...
null
null
null
null
null
1871
1
1876
2010-08-10T18:48:00.640
29
37935
<p>I am not talking about <code>shutdown</code> and <code>reboot</code> commands. I want to initiate the same routine from command line that would be performed if I would press the logout/reboot/shutdown button inside the KDE desktop.</p>
4
41
2010-08-18T00:57:21.873
2023-12-07T15:59:39.427
How can I safely shutdown/reboot/logout KDE from the command line?
[ "kde", "command-line", "shutdown", "reboot" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-10T18:51:28.540", "id": "1773", "postId": "1871", "score": "0", "text": "I dont know if you could do that. one of the commands would eventually close the terminal your using to interact with it. Maybe more ideas on why you need to do this? :)", "userDisplayName": n...
{ "accepted": true, "body": "<p>For KDE 5+:</p>\n<pre><code>qdbus org.kde.Shutdown /Shutdown logout\nqdbus org.kde.Shutdown /Shutdown logoutAndReboot\nqdbus org.kde.Shutdown /Shutdown logoutAndShutdown\n</code></pre>\n<p>The last option specifies which method gets called. It seems the options for KDE4 mentioned below are partially supported(reboot didnt work so I ended up using these newer methods).</p>\n<p>Ref: <a href=\"https://www.reddit.com/r/kde/comments/ojpvwx/how_to_reboot_properly_from_the_cli/h54a2ge?utm_source=share&amp;utm_medium=web2x&amp;context=3\" rel=\"nofollow noreferrer\">Reddit</a></p>\n<p>For KDE 4:</p>\n<p><em>Note that this answer was written in 2010 for KDE 4. It may not apply to modern systems.</em></p>\n<pre><code>qdbus org.kde.ksmserver /KSMServer org.kde.KSMServerInterface.logout -1 -1 -1\n</code></pre>\n<p>The three integer parameters are the <code>confirm</code>, <code>sdtype</code> and <code>sdmode</code> arguments to <a href=\"https://api.kde.org/4.x-api/kde-workspace-apidocs/plasma-workspace/html/namespaceKWorkSpace.html#a0c75f4db070a83b47f0bfc5026383aeb\" rel=\"nofollow noreferrer\">KWorkSpace::requestShutDown</a>. Their values are explained at the top of the page. Since the page has disappeared, here are the values (still present in a <a href=\"https://webcache.googleusercontent.com/search?q=cache:_0W89JZwYrMJ:https://api.kde.org/4.x-api/kde-workspace-apidocs/plasma-workspace/html/namespaceKWorkSpace.html+&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=fr\" rel=\"nofollow noreferrer\">cache</a>).</p>\n<pre><code>enum ShutdownConfirm {\n ShutdownConfirmDefault = -1,\n ShutdownConfirmNo = 0,\n ShutdownConfirmYes = 1\n}\n</code></pre>\n<blockquote>\n<ul>\n<li><code>ShutdownConfirmDefault</code>:\nObey the user's confirmation setting.</li>\n<li><code>ShutdownConfirmNo</code>:\nDon't confirm, shutdown without asking.</li>\n<li><code>ShutdownConfirmYes</code>:\nAlways confirm, ask even if the user turned it off.</li>\n</ul>\n</blockquote>\n<pre><code>enum ShutdownType {\n ShutdownTypeDefault = -1,\n ShutdownTypeNone = 0,\n ShutdownTypeReboot = 1,\n ShutdownTypeHalt = 2,\n ShutdownTypeLogout = 3\n}\n</code></pre>\n<blockquote>\n<ul>\n<li><code>ShutdownTypeDefault</code>:\nSelect previous action or the default if it's the first time.</li>\n<li><code>ShutdownTypeNone</code>:\nOnly log out.</li>\n<li><code>ShutdownTypeReboot</code>:\nLog out and reboot the machine.</li>\n<li><code>ShutdownTypeHalt</code>:\nLog out and halt the machine.</li>\n<li><code>ShutdownTypeLogout</code>:\nTemporary brain damage.\nDon't use. Same as ShutdownTypeNone</li>\n</ul>\n</blockquote>\n<pre><code>enum ShutdownMode {\n ShutdownModeDefault = -1,\n ShutdownModeSchedule = 0,\n ShutdownModeTryNow = 1,\n ShutdownModeForceNow = 2,\n ShutdownModeInteractive = 3\n}\n</code></pre>\n<blockquote>\n<ul>\n<li><code>ShutdownModeDefault</code>:\nSelect previous mode or the default if it's the first time.</li>\n<li><code>ShutdownModeSchedule</code>:\nSchedule a shutdown (halt or reboot) for the time all active sessions have exited.</li>\n<li><code>ShutdownModeTryNow</code>:\nShut down, if no sessions are active.\nOtherwise do nothing.</li>\n<li><code>ShutdownModeForceNow</code>:\nForce shutdown.\nKill any possibly active sessions.</li>\n<li><code>ShutdownModeInteractive</code>:\nPop up a dialog asking the user what to do if sessions are still active.</li>\n</ul>\n</blockquote>\n", "commentCount": "7", "comments": [ { "creationDate": "2014-02-10T08:29:08.273", "id": "541506", "postId": "1876", "score": "0", "text": "Gilles' answer helped me as well. Just a small note there: it doesn't work from su.\nIn my case this was part of a command issued using sudo. In that case it doesn't work. Complains `Cannot find 'org.kde.KSMServerInterface.logout' in object /KSMServer at org.kde.ksmserver`. However works very well when run with the regular user ^_^", "userDisplayName": null, "userId": "246624" }, { "creationDate": "2020-08-04T09:24:49.833", "id": "2139686", "postId": "1876", "score": "0", "text": "The linked webpage is no longer accessible, nor could I find any replacement or web.archive.org entry. From [reddit](https://www.reddit.com/r/kde/comments/70hnzg/command_to_properly_shutdownreboot_kde_machine/): **Confirm:** \"-1\": default user config, \"0\": No confirmation windows, \"1\": Always with confirmation window. **sdtype:** \"-1\": default user config, \"0\": logout, \"1\": reboot, \"2\": halt. **sdmode:** \"-1\": default user config, \"0\": shutdown after all session have ended, \"1\": shutdown if no active sessions, \"2\": force shutdown, \"3\" ask user what to do if sessions are still active.", "userDisplayName": null, "userId": "124933" }, { "creationDate": "2020-08-04T09:55:09.423", "id": "2139695", "postId": "1876", "score": "0", "text": "@kdb I found that page still in a Google cache, but that probably won't last long. I've copied the relevant part into my answer.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2020-08-04T09:59:59.890", "id": "2139696", "postId": "1876", "score": "0", "text": "Curiously, `org.kde.KSMServerInterface.logout` did not work for me, but I managed to reboot with `qdbus org.kde.ksmserver /KSMServer logout 0 1 2` (see [C.D.'s answer](https://askubuntu.com/a/1123899/124933)).", "userDisplayName": null, "userId": "124933" }, { "creationDate": "2020-08-04T10:05:25.903", "id": "2139697", "postId": "1876", "score": "1", "text": "@kdb The KDE APIs have changed in the last 10 years. C.D.'s answer applies to more recent versions of KDE than mine.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2021-03-22T08:57:22.260", "id": "2258970", "postId": "1876", "score": "0", "text": "Could you please sort your explanation in the same order of the arguments? It improves readability:\n(i) ShutdownConfirm, (ii) ShutdownType and (iii) ShutdownMode correspoinding to (i) confirm, (ii) sdtype and (iii) sdmode", "userDisplayName": null, "userId": "195571" }, { "creationDate": "2023-12-07T14:50:50.190", "id": "2619835", "postId": "1876", "score": "0", "text": "I had to use `qdbus-qt5` instead of `qdbus`. KDE openSUSE, 2023.", "userDisplayName": null, "userId": "195571" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-10T19:51:07.470", "id": "1876", "lastActivityDate": "2023-12-07T15:59:39.427", "lastEditDate": "2023-12-07T15:59:39.427", "lastEditorDisplayName": null, "lastEditorUserId": "195571", "ownerDisplayName": null, "ownerUserId": "1059", "parentId": "1871", "postTypeId": "2", "score": "35" }
[ { "accepted": true, "body": "<p>For KDE 5+:</p>\n<pre><code>qdbus org.kde.Shutdown /Shutdown logout\nqdbus org.kde.Shutdown /Shutdown logoutAndReboot\nqdbus org.kde.Shutdown /Shutdown logoutAndShutdown\n</code></pre>\n<p>The last option specifies which method gets called. It seems the options for KDE4 menti...
null
null
null
null
null
1874
1
1891
2010-08-10T19:13:24.003
11
2968
<p>I recently installed Ubuntu in my uncle's laptop. He seems to like it and he is asking me for some good Ubuntu books for beginners. I was thinking about The Official Ubuntu Book. Any other suggestions would be very much appreciated.</p> <p>He comes from a Windows background if that would help.</p>
295
527764
2017-03-10T06:10:28.320
2017-03-10T06:10:28.320
Are there any good books for new Ubuntu users?
[ "community", "documentation" ]
7
1
CC BY-SA 3.0
[ { "creationDate": "2010-08-10T20:23:51.683", "id": "1790", "postId": "1874", "score": "1", "text": "Please see also: http://ubuntu.stackexchange.com/questions/575/list-of-free-ubuntu-books", "userDisplayName": null, "userId": "236" } ]
{ "accepted": true, "body": "<p>I've read lots of good books about Ubuntu and Linux in the past few months. This is the first great book.</p>\n\n<p>— Arsgeek.com review of Beginning Ubuntu Linux, Second Edition</p>\n\n<p>Keir Thomas walks you through the whole Ubuntu experience from beginning to end, comforting you with a calm voice when you might be feeling a bit lost ... He has done a great and thorough job.</p>\n\n<p>— Free Software Magazine review of Beginning Ubuntu Linux, Second Edition</p>\n\n<p>Winner of a Linux Journal Editor's Choice 2006 award (first edition)!</p>\n\n<p>Beginning Ubuntu Linux, Second Edition updates the best-selling and award-winning first edition. It's the perfect guide for those switching to the world's favorite Linux. The new edition has been thoroughly updated to cover technology introduced in the 6.10 release.</p>\n\n<p>In the 680+ fully illustrated pages, you'll learn how to install Linux, set up your hardware and software, customize the desktop experience, browse the Web and send/receive e-mail, play back audio and video, edit digital images, use the OpenOffice.org office suite, and more.</p>\n\n<p>Additionally, you'll discover how to perform vital maintenance tasks, such as securing your computer against hackers, updating online, optimizing your system, installing and managing software, backing up, accessing your computer remotely, scheduling tasks, and more.</p>\n\n<p>A whole third of the book is dedicated to Linux internals, including managing system processes and working at the command line. Two appendixes pre a glossary of Linux terms and an index of commands that can be used to control Ubuntu.</p>\n\n<p>Beginning Ubuntu Linux, Second Edition is a complete, comprehensive, and unbiased guide to getting the most from Ubuntu.\nDVD-ROM</p>\n\n<p>Beginning Ubuntu Linux, Second Edition features a unique DVD-ROM companion disk containing the full Ubuntu installation that you can install on your computer. A full installation guide is pred in the book. Also included on the DVD-ROM are the Ubuntu sister projects, such as Kubuntu, Xubuntu, Edubuntu, and others. Both the long-term support and recent 6.10 releases of all projects are pred.\nIn Detail Part 1: Introducing the World of Linux</p>\n\n<p>Opening the book are several chapters pring a brief but complete history of Linux. You'll learn about the key figures in the Linux movement and discover why the politics behind free software are so important.\nPart 2: Installing Ubuntu</p>\n\n<p>Here you'll find a fully illustrated guide to both installing Ubuntu on your computer and initially preparing the computer for Ubuntu. Detailed screenshots guide you through every step. In addition, there's a problem-solving chapter pring solutions for the most common issues.\nPart 3: The No-Nonsense Getting Started Guide</p>\n\n<p>The six chapters of Part 3 take you from zero to hero in as little time as possible. You'll learn what's what on the Ubuntu desktop and how to customize Ubuntu to suit your workflow. You'll be introduced to Linux replacements for your favorite Windows programs, and you'll be introduced to the Linux file system, so you can start working straightaway.\nPart 4: The Shell and Beyond</p>\n\n<p>The five chapters in Part 4 introduce the heart of Linux: the command line. You'll be introduced to the BASH shell, and a full rundown of the Linux filesystem is pred. You'll learn how to work with text files. The closing chapters of this section teach pro-level tricks you can use at the command line to work more efficiently.\nPart 5: Multimedia</p>\n\n<p>Here you'll learn how to set up Ubuntu to work with common audio and video files that you might have used under Windows or Macintosh. Then you'll be introduced to Ubuntu's audio and video playback software. Additionally, a complete guide to image editing and digital image management is pred.\nPart 6: Office Tasks</p>\n\n<p>The seven chapters in this section pre a comprehensive guide to the OpenOffice.org office suite. You'll learn how to undertake common tasks using the word processor, spreadsheet, presentations package, and database applications. Additionally, a complete guide to using Ubuntu's e-mail and personal information manager is pred.\nPart 7: Keeping your System Running</p>\n\n<p>The six chapters in this part of the book pick up from Part 4 and expand on various system management/command-line skills. You'll learn how to perform vital maintenance tasks, such as managing users, or installing and removing software. It's in this part of the book that you'll really learn your Linux stripes!</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2010-08-11T22:27:30.117", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-10T20:48:28.240", "id": "1891", "lastActivityDate": "2010-08-10T20:48:28.240", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1005", "parentId": "1874", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>You certainly took a good step and joining here. Asking question would be beneficial to both you and people who come after you.</p>\n\n<p>I have found this <a href=\"http://rads.stackoverflow.com/amzn/click/0470589884\" rel=\"nofollow\">book</a> to be especially useful, bit o...
2010-08-11T22:27:30.117
null
2014-03-17T06:45:49.210
null
null
1877
1
64544
2010-08-10T19:55:17.697
132
100716
<p>I frequently cross this issue, and always have to google for an answer. Does anyone have a permanent fix for BADSIG errors from <code>apt-get</code>?</p> <blockquote> <p>W: GPG error: <a href="http://download.virtualbox.org">http://download.virtualbox.org</a> lucid Release: The following signatures were invalid: BADSIG 54422A4B98AB5139 Oracle Corporation (VirtualBox archive signing key) </p> </blockquote>
163
3550
2011-10-06T13:56:59.600
2014-08-15T13:15:57.747
What is the easiest way to resolve apt-get BADSIG GPG errors?
[ "apt", "gnupg" ]
6
8
CC BY-SA 3.0
[ { "creationDate": "2010-08-10T21:17:11.900", "id": "1800", "postId": "1877", "score": "1", "text": "Are you using apt-cacher-ng?", "userDisplayName": null, "userId": "66" }, { "creationDate": "2011-10-07T17:13:06.707", "id": "74379", "postId": "1877", "score": "0", ...
{ "accepted": true, "body": "<p>Here's the (easiest) solution:</p>\n\n<p>Type the following commands in the Terminal:</p>\n\n<pre><code>$ sudo -i\n# apt-get clean\n# cd /var/lib/apt\n# mv lists lists.old\n# mkdir -p lists/partial\n# apt-get clean\n# apt-get update\n</code></pre>\n\n<p><a href=\"http://www.ubuntugeek.com/how-to-fix-the-ubuntu-gpg-error-badsig.html\">Credits: ubuntugeek.com</a></p>\n\n<p><strong>Edit:</strong></p>\n\n<p>If the error occurs again (maybe after a few days/months), open Nautilus as root > navigate to <code>var/lib/apt</code> > delete the \"lists.old\" folder > then open the \"lists\" folder and delete the \"partial\" folder. Now, execute the aforementioned commands again.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2012-01-01T23:03:37.037", "id": "105200", "postId": "64544", "score": "10", "text": "This solves the more common error for me--updating through an Internet connection with a proxy (WiFi \"cafe\" that requires web logon) which corrupts some of my lists if I get logged off or forget to log on during an update.", "userDisplayName": null, "userId": "31658" }, { "creationDate": "2012-02-01T07:02:41.010", "id": "115425", "postId": "64544", "score": "3", "text": "What would the actual error be if qbi's answer doesn't help but this does?", "userDisplayName": null, "userId": "44498" }, { "creationDate": "2012-08-08T11:08:14.090", "id": "213718", "postId": "64544", "score": "0", "text": "It also happens to me because of: WiFi \"cafe\" that requires web logon", "userDisplayName": null, "userId": "48496" }, { "creationDate": "2013-07-24T16:03:03.097", "id": "411846", "postId": "64544", "score": "5", "text": "I wish the OP would check this as the answer!", "userDisplayName": null, "userId": "5326" }, { "creationDate": "2013-10-15T07:09:47.573", "id": "460042", "postId": "64544", "score": "0", "text": "@ArtOfCode: the error is exactly the same. This answer helped me, but on the web you only find the method that qbi points out and that you can find everywhere on the web.", "userDisplayName": null, "userId": "11316" }, { "creationDate": "2014-01-20T05:39:54.570", "id": "524648", "postId": "64544", "score": "0", "text": "Note that this is also documented solution on the VirtualBox linux [download pages](https://www.virtualbox.org/wiki/Linux_Downloads), under \"What to do when experiencing The following signatures were invalid: BADSIG ... \"", "userDisplayName": null, "userId": "3448" }, { "creationDate": "2015-04-25T04:39:23.517", "id": "864136", "postId": "64544", "score": "0", "text": "meet exactly the same error and successfully solve with this solution, thanks", "userDisplayName": null, "userId": "116567" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-10-06T11:35:05.083", "id": "64544", "lastActivityDate": "2012-06-03T13:49:34.430", "lastEditDate": "2012-06-03T13:49:34.430", "lastEditorDisplayName": null, "lastEditorUserId": "25798", "ownerDisplayName": null, "ownerUserId": "26315", "parentId": "1877", "postTypeId": "2", "score": "135" }
[ { "accepted": null, "body": "<p>The important part of your error message is the following in <strong>bold</strong>:</p>\n\n<blockquote>\n <p>W: GPG error: <a href=\"http://download.virtualbox.org\">http://download.virtualbox.org</a> lucid Release: The following signatures were invalid: BADSIG <strong>54422...
null
null
null
null
null
1881
1
1887
2010-08-10T20:01:38.820
63
93422
<p>What are some CD ripping programs for Ubuntu? Can you list the Pros? What are the Cons? For each program there should be a screenshot, sources to install, and instructions to install and use.</p>
1065
47291
2014-10-29T21:55:16.240
2023-04-02T02:37:16.580
What are some CD Ripping Programs you can use on Ubuntu?
[ "music", "cd", "cd-ripping" ]
16
1
CC BY-SA 3.0
[ { "creationDate": "2010-08-10T20:43:57.750", "id": "1795", "postId": "1881", "score": "12", "text": "This should probably be a community wiki...", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p><strong>Ubuntu Default CD Ripping Software</strong> : </p>\n\n<p>To rip a CD, you will require a suitable CD-ripping application. One is installed by default on Ubuntu, and there are others available through Ubuntu's software channels, as reported in the <a href=\"https://help.ubuntu.com/community/CDRipping\">Ubuntu Documentation</a>.</p>\n\n<p><strong>Sound Juicer</strong></p>\n\n<p>Sound Juicer is Ubuntu's default CD-ripping application, and also has the ability to play your CDs and download track data from the Internet.</p>\n\n<p><img src=\"https://help.ubuntu.com/community/CDRipping?action=AttachFile&amp;do=get&amp;target=sound-juicer.png\" alt=\"alt text\"></p>\n\n<p>To rip a CD using Sound Juicer, simply insert an audio CD; Sound Juicer should start automatically. Alternatively, you can select Sound Juicer from <code>Applications -&gt; Sound &amp; Video -&gt; Audio CD Extractor</code>. By default, the CD will be encoded into the OggVorbis format, a Free Format. If you wish to rip a CD to a non-free format such as MP3 or AAC, you will need to install some additional software. </p>\n\n<p><strong>Kubuntu Default CD Ripping Software</strong> :</p>\n\n<p>There are two methods of ripping an Audio CD in a default installation of Kubuntu. One is using Konqueror's audiocd:/ KIO-slave and the other is KaudioCreator (<code>KMenu-&gt;Multimedia-&gt;KaudioCreator</code>). On inserting the Audio CD, you should be presented with the KDE Audio CD Daemon asking you what you wish to do. To use the KIO-slave method (which is relatively easier), select the 'Open in a new Window' option. Or, if you prefer using KAudioCreator, select the Extract and Encode Audio tracks option.</p>\n\n<p>Using audiocd:/ to rip a CD</p>\n\n<p>In Konqueror's location bar, type audiocd:/ and press enter. You should now see the tracks in the CD along with folders named Ogg Vorbis, FLAC, MP3 etc. Click on the folder which corresponds to the format in which you wish to encode, eg. Ogg Vorbis.</p>\n\n<p>Now, copy the tracks that you need from that folder and paste it in the desired location (<code>/home/kubuntu</code> in the example). The tracks are automagically ripped, encoded and copied to the location you specified!</p>\n\n<p>Note: Copying speeds might not be as fast as those achieved when copying a file directly from the CD as the files are also being ripped and encoded. If you wish to modify some of the settings (like editing the tagging sytax or modifying the encoding settings), you can access it either through System Settings (<code>KMenu-&gt;System Settings-&gt;Sound</code> and <code>Multimedia-&gt;Audio CD</code>) or through KDE Control Center (<code>kcontrol</code>).</p>\n\n<p>Using <strong>KAudioCreator</strong></p>\n\n<p>Launch KaudioCreator (<code>Kmenu-&gt;Multimedia-&gt;KaudioCreator</code>). It should automatically display the tracks in the disc. You can modify the settings to suit your needs (<code>Settings-&gt;Configure KaudioCreator</code>), and also choose an encoder. Click on the Rip Selection icon to start the Ripping and encoding process. </p>\n\n<p>Other CD Ripping Software :\nIn alphabetical order.</p>\n\n<p><strong>ABCDE</strong></p>\n\n<p>Those who want a no-nosense, fast, customizable ripping solution should try ABCDE.</p>\n\n<p>And example conversion from CD to AAC/MP4:</p>\n\n<pre><code>abcde -a cddb,read,encode,tag,move,playlist,clean -d /dev/cdrom -o m4a -V -x\n</code></pre>\n\n<p><strong>Asunder</strong></p>\n\n<p>Asunder is an easy-to-use, plain CD ripper that converts into MP3, OGG, FLAC, WAV, and the new open codec WavPack. Asunder is in the Ubuntu repository and can be installed with Synaptic or Software Center.</p>\n\n<p><strong>Grip</strong></p>\n\n<p>I have been using Grip until Edgy. It's very easy to use but still very configurable.</p>\n\n<p>Note: Grip is no longer supported by its developers, or by Debian or Ubuntu. It has been removed from the repositories in Ubuntu 9.10.</p>\n\n<p><strong>Ripper X</strong></p>\n\n<p><em>To install</em>:</p>\n\n<pre><code>sudo apt-get install ripperx\n</code></pre>\n\n<p><strong>RubyRipper</strong></p>\n\n<p>RubyRipper has been recommended in many forum threads and seems to be one of Linux's best ripping solutions. Also, many feel the closest to EAC in quality of rips.</p>\n\n<p>RubyRipper is not included in the default Ubuntu install and is not included in any of the repositories. Fortunately there is a DEB package available.</p>\n\n<p><em>To install</em>:</p>\n\n<p>1.Install dependencies by typing in the terminal:</p>\n\n<pre><code>sudo apt-get install cd-discid cdparanoia flac lame mp3gain normalize-audio ruby-gnome2 ruby vorbisgain\n</code></pre>\n\n<p>2.Download the DEB package from here and follow the instructions. </p>\n\n<p><em>Alternate install</em>:</p>\n\n<p>Open a terminal window and type: </p>\n\n<pre><code>sudo add-apt-repository ppa:aheck/ppa\nsudo apt-get update\nsudo apt-get install rubyripper\nsudo apt-get install rubyripper-gtk\n</code></pre>\n", "commentCount": "8", "comments": [ { "creationDate": "2010-08-10T21:11:32.380", "id": "1799", "postId": "1887", "score": "0", "text": "Don't forget to include apturl links (as suggested in http://meta.ubuntu.stackexchange.com/questions/123/should-we-apturl-whenever-possible)", "userDisplayName": null, "userId": "252" }, { "creationDate": "2010-08-11T15:18:16.757", "id": "1859", "postId": "1887", "score": "25", "text": "The above answer appears to be an unattributed cut and paste from https://help.ubuntu.com/community/CDRipping", "userDisplayName": null, "userId": "252" }, { "creationDate": "2011-10-22T06:59:34.153", "id": "80044", "postId": "1887", "score": "6", "text": "I didn't find Sound Juicer installed by default in 11.04. Is that correct?", "userDisplayName": null, "userId": "16480" }, { "creationDate": "2013-03-25T20:50:53.780", "id": "341764", "postId": "1887", "score": "2", "text": "+1 but please update your answer ;-) Rhythmbox seems to be the default ripper on Ubuntu 12.10...", "userDisplayName": null, "userId": "42102" }, { "creationDate": "2014-04-18T07:36:51.260", "id": "590276", "postId": "1887", "score": "1", "text": "Added simpler method of install **RubyRipper** to: http://askubuntu.com/questions/293701/how-to-install-ruby-ripper-or-another-app-that-does-mp3s-through-a-gui", "userDisplayName": null, "userId": "34576" }, { "creationDate": "2015-02-24T13:40:23.443", "id": "818494", "postId": "1887", "score": "0", "text": "What additional software must I install to be able to rip into mp3 format with Sound Juicer?", "userDisplayName": null, "userId": "103448" }, { "creationDate": "2015-12-11T10:54:57.207", "id": "1041551", "postId": "1887", "score": "0", "text": "The `ppa:aheck/ppa` repository does not work anymore to install RubyRipper, [david6's answer](http://askubuntu.com/a/449498/425040) does however.", "userDisplayName": null, "userId": "425040" }, { "creationDate": "2020-11-02T16:21:58.753", "id": "2188316", "postId": "1887", "score": "0", "text": "Pity Sound Juicer doesn't support FLAC. Now, where does it rip the files to? Ah...it's the music folder.", "userDisplayName": null, "userId": "110495" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-10T20:15:41.157", "id": "1887", "lastActivityDate": "2013-12-29T16:06:21.850", "lastEditDate": "2013-12-29T16:06:21.850", "lastEditorDisplayName": null, "lastEditorUserId": "1132", "ownerDisplayName": null, "ownerUserId": "1005", "parentId": "1881", "postTypeId": "2", "score": "39" }
[ { "accepted": null, "body": "<p><a href=\"http://apt.ubuntu.com/p/sound-juicer\" rel=\"nofollow\">Sound Juicer</a> works well for me. Take a look at the <a href=\"https://help.ubuntu.com/community/CDRipping\" rel=\"nofollow\">community docs</a>, or <a href=\"http://burtonini.com/blog/computers/sound-juicer\...
null
null
null
null
null
1889
1
2144
2010-08-10T20:34:55.837
2
3470
<p>One of my notebooks is a Compaq nc4200 (Mobile Intel 915GM Express). All Ubuntu kernels > 2.6.32-20 don't boot on that machine. Instead I get an error message:</p> <pre><code>error: unexpectedly disconnected from boot status daemon Begin: Waiting for root file system ... </code></pre> <p>After some googling I found <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574755" rel="nofollow">Bug #574755</a> in Debians BTS. In this case plymouth had some bug. So I tried to add <code>i915 modeset=1</code> to <code>/etc/initramfs-tools/modules</code>. This made the boot screen complete lack. I saw no output anymore. Second I tried to remove the plymouth-package. After purging it I got the same message again.</p> <p>I dug a bit further. From my point of view this must be some kind of file system thing. Output from boot:</p> <pre><code>Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Waiting for root file system ...` </code></pre> <p>After some time there is a timeout and a BusyBox shell appears:</p> <pre><code>Gave up waiting for root device. Common problems: - Boot args (cat /proc/cmdline) - Check rootdelay= (did the system wait long enough?) - Check root= (did the system wait for the right device?) - Missing modules (cat /proc/modules; ls /dev) ALERT! r/dev/disk/by-uuid/(UUID-of-my-sda1) does not exist. Dropping to a shell! BusyBox v1.19.3 (Ubuntu 1:1.10.3-7ubuntu1.1) built-in shell (ash) Enter 'help' for a lost of built-in commands. (initramfs) </code></pre> <p>Now I'm out of ideas. What can be the cause of it? How I resolve this issue?</p>
236
94914
2014-02-18T14:08:58.367
2014-02-18T14:08:58.367
Kernel > 2.6.32-20 doesn't boot (root file system does not exist)
[ "filesystem", "boot", "kernel", "i915" ]
3
7
CC BY-SA 3.0
[ { "creationDate": "2010-08-10T21:04:20.620", "id": "1797", "postId": "1889", "score": "0", "text": "what is your kernel configuration ?", "userDisplayName": null, "userId": "1005" }, { "creationDate": "2010-08-11T07:57:29.750", "id": "1826", "postId": "1889", "score":...
{ "accepted": true, "body": "<p>Have you tried to use the old notation /dev/sdxn instead of using UUID?.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-13T18:50:40.020", "id": "2115", "postId": "2144", "score": "0", "text": "I misunderstood your answer in the first place. If I change the kernel command line to `kernel /boot/vmlinuz-... root=/dev/sda1 ...` all seems to work perfect. My system boots Ubuntu, mainline and vanilla kernels without problems.", "userDisplayName": null, "userId": "236" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-13T06:58:02.763", "id": "2144", "lastActivityDate": "2010-08-13T06:58:02.763", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "211", "parentId": "1889", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>It's possible that your drive is not coming online fast enough and the kernel is giving up on it before it is ready. There's a way to test this to work around it.</p>\n\n<p>The instructions below assume you are running Ubuntu 9.10 or later. If you are running an earlier rel...
null
null
null
null
null
1892
1
1903
2010-08-10T20:50:25.940
2
3393
<p>Previously linuxant release driver for conexant modem (HCF or HSF), now for newer kernel this site doesn't release for newer kernel version (after 2.6.31-17 version). how to use conexant modem in Ubuntu with newer Kernel than 2.6.31-17 (... , 10.4 , ...)?</p> <p>Linuxant Ubuntu driver : <a href="http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php" rel="nofollow">http://www.linuxant.com/drivers/hsf/full/downloads-ubuntu-x86.php</a></p>
1005
null
null
2015-06-25T18:26:48.597
Conexant modem in Ubuntu
[ "drivers", "modem" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There is a compile-it-yourself option. See <a href=\"http://www.linuxant.com/drivers/hsf/full/downloads.php#generic\" rel=\"nofollow\">here</a>.</p>\n\n<p>Download the <code>tar</code> and then follow <code>METHOD C</code> on the <a href=\"http://www.linuxant.com/drivers/hsf/install.php\" rel=\"nofollow\">installation instructions</a>.</p>\n\n<p>Following your comment, I decided to try building it. It went fine. Here's what I did:</p>\n\n<ul>\n<li>Download and extract the tar for the right arch.</li>\n<li><p><code>cd</code> into the new directory and then</p>\n\n<pre><code>sudo make debprecomp\n</code></pre></li>\n<li><p>Assuming everything worked, there should be a <code>.deb</code> file sitting in the directory above the current working dir. Just double-click it and it should install.</p></li>\n</ul>\n\n<p>After that just follow the rest of the installation instructions.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-11T11:05:13.277", "id": "1841", "postId": "1903", "score": "0", "text": "Are you sure that this way work on newer version of kernel like 2.6.31 ?", "userDisplayName": null, "userId": "1005" }, { "creationDate": "2010-08-11T12:42:59.243", "id": "1848", "postId": "1903", "score": "0", "text": "No but you can easily find out.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-11T12:46:30.357", "id": "1849", "postId": "1903", "score": "1", "text": "Well I just built it fine. I don't have an applicable modem so I can't test if it works. I'm using the mainline 2.6.35 so I assume it should build for things in between .31 and .35 too.", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-10T22:55:38.683", "id": "1903", "lastActivityDate": "2015-06-25T18:25:29.697", "lastEditDate": "2015-06-25T18:25:29.697", "lastEditorDisplayName": null, "lastEditorUserId": "367165", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1892", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>There is a compile-it-yourself option. See <a href=\"http://www.linuxant.com/drivers/hsf/full/downloads.php#generic\" rel=\"nofollow\">here</a>.</p>\n\n<p>Download the <code>tar</code> and then follow <code>METHOD C</code> on the <a href=\"http://www.linuxant.com/drivers/hsf/...
null
0
null
null
null
1895
1
null
2010-08-10T21:29:21.987
7
1160
<p>Imagine I have three Ubuntu computers <code>home</code>, <code>laptop</code>, <code>beach-house</code>. They all have the same version of Ubuntu, 10.04 installed, and are kept up to date from the repositories.</p> <p>I use <code>f-spot</code>, <code>thunderbird</code>, and <code>google-chrome</code> on all of the computers. Is there a way to keep the data and configuration in sync across them, without requiring constant connectivity for normal (non-synchronous) usage? </p> <p>For example, they should be usable without network connectivity, so something like <a href="http://nfs.sourceforge.net/">NFS</a> won't work. </p> <p>An ideal solution would not require manual action to start the syncing process. </p>
66
null
null
2011-02-01T21:13:26.000
How should I synchronize configurations and data across computers?
[ "10.04", "sync", "thunderbird", "f-spot", "google-chrome" ]
7
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-10T23:13:15.317", "id": "1809", "postId": "1895", "score": "0", "text": "A similar question has been asked: http://ubuntu.stackexchange.com/questions/69/keeping-multiple-workstations-in-sync", "userDisplayName": null, "userId": "41" } ]
null
[ { "accepted": null, "body": "<p>You could use a startup script that syncs (with rsync) the necessary files if the network is up. Hence you could use upstart to trigger the script and base it on the network ready event.</p>\n\n<p>Alternatively, maybe it would be possible to use Ubuntu-one for the synchroniza...
null
null
2013-03-14T16:36:06.963
null
null
1907
1
null
2010-08-11T02:16:29.443
3
268
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/481/how-do-i-find-the-package-that-provides-a-file">How do I find the package that provides a file?</a> </p> </blockquote> <p>If I know the name of a library (Eg. libnss3.so) how do I figure out which package to install to get this library? Is there an easier way to do this?</p>
170
-1
2017-04-13T12:24:49.590
2010-08-11T19:31:41.080
If I need a specific library how do I find out which packages can install that library?
[ "package-management", "libraries" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2011-06-05T19:11:25.407
null
null
1908
1
1915
2010-08-11T02:20:08.437
1
3091
<p>I recently upgraded a friend's Dell Mini 12 (Inspiron 1210) from Ubuntu 8.10 to 10.04 netbook edition. After installing, and performing the available updates, I'm unable to detect any wireless networks (it knows it has a wireless card, but won't list any active networks). </p> <p>There also seems to be an issue with the display drivers: when scrolling, resizing, or drawing any windows there is a noticeable lag as I watch the screen redraw. As if there are no compatible display drivers installed.</p> <p>All these problems go away the moment I boot up a version of 8.10. But I'd like to keep 10.04 if possible.</p> <p>Are these common problems? Everything I've read suggest this is laptop should be compatible. Any suggestions? Thanks.</p>
1045
235
2011-01-17T14:54:51.680
2012-05-17T23:53:28.673
No wireless and display issues on Dell Inspiron 1210 (Mini 12)
[ "10.04", "ubuntu-netbook" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>According to the <a href=\"https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks#Dell%20Mini%2012%20%28Inspiron%201210%29\">Ubuntu wiki page on netbooks</a> the display driver issue is well known. For Lucid <a href=\"https://wiki.ubuntu.com/HardwareSupportComponentsVideoCardsPoulsbo/\">the recommended fix</a> is to install updated graphics drivers from a PPA.</p>\n\n<p>Per that page execute the following commands in the Terminal:</p>\n\n<pre><code>sudo add-apt-repository ppa:gma500/ppa &amp;&amp; sudo apt-get update\nsudo apt-get install poulsbo-driver-2d poulsbo-driver-3d poulsbo-config\n</code></pre>\n\n<p>then reboot to enable the newly installed drivers.</p>\n\n<p>With wireless, the solution is less well-documented, but it looks like many netbooks have success using the Broadcom STA drivers. These can be enabled by the \"Hardware Drivers\" application (under the \"Administration\" menu).</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-11T23:09:21.170", "id": "1898", "postId": "1915", "score": "0", "text": "Fantastic! That solved both problems. My friend will be happy to have her laptop back.", "userDisplayName": null, "userId": "1045" }, { "creationDate": "2012-03-05T21:18:40.620", "id": "130006", "postId": "1915", "score": "0", "text": "+1 Thanks a lot, that fixed display issues with my Asus EEE 1201HA", "userDisplayName": null, "userId": "20809" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T03:10:33.933", "id": "1915", "lastActivityDate": "2010-08-11T03:10:33.933", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "115", "parentId": "1908", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>According to the <a href=\"https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks#Dell%20Mini%2012%20%28Inspiron%201210%29\">Ubuntu wiki page on netbooks</a> the display driver issue is well known. For Lucid <a href=\"https://wiki.ubuntu.com/HardwareSupportComponentsVideoC...
null
null
null
null
null
1909
1
null
2010-08-11T02:22:53.377
1
854
<p>I'm new to Ubuntu and I'm afraid I've done something really stupid.</p> <p>After booting, When prompted to enter a password to unlock my login keyring, I tried to enter my password, but it won't let me.</p> <p>I can move my cursor but everything else is frozen.</p> <p>I tried to access the terminal by using <kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F2</kbd>, I entered my login and password from there and it worked, I just don't know what to do afterwards.</p> <p>Don't know what other information I can provide other than the fact that I am using Ubuntu 10.04</p>
null
527764
2021-05-16T07:19:13.870
2021-05-16T07:19:13.870
After entering password in keyring box the desktop freezes
[ "gnome", "10.04", "keyrings" ]
2
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Switch to X (the graphical interface that is frozen) usually by typing <kbd>Alt</kbd>+<kbd>7</kbd> and then type <kbd>Alt</kbd>+<kbd>SysRq</kbd>+<kbd>k</kbd> .</p>\n\n<p>This will kill X and it will restart. This is kind of a \"nasty\" solution but without additional details ...
null
null
null
null
Maddie
1916
1
1917
2010-08-11T03:44:04.627
15
9549
<p>I've got cron jobs sending mail to my user at <code>/var/mail</code>. I know how to access that at the command line with the mail command. But, while a big command line fan, I do not like reading mail (even system mail) that way.</p> <p>My mail client of choice is Thunderbird. Can I read /var/mail messages in Thunderbird? How?</p> <p>I'm running Ubuntu 9.04 and Thunderbird 2.0.0.24 (though I'm soon to upgraded to 10.04).</p>
179
59676
2012-08-15T06:37:08.573
2023-10-29T21:21:58.377
How can I access system mail in /var/mail/ via thunderbird?
[ "thunderbird", "system", "mail" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2018-12-23T15:08:31.760", "id": "1820239", "postId": "1916", "score": "1", "text": "Similar/duplicate question is [here.](https://askubuntu.com/questions/301988/using-movemail-with-thunderbird-on-ubuntu/1103958#1103958)", "userDisplayName": null, "userId": "568145" }...
{ "accepted": true, "body": "<p>In <strong>Ubuntu 10.04</strong>, with Thunderbird 3, the option is accomplished by:</p>\n\n<ol>\n<li><p>Select <code>Edit</code>,   <code>Account Settings</code> </p>\n\n<p><img src=\"https://i.stack.imgur.com/acOoB.png\" alt=\"enter image description here\"></p></li>\n<li><p>Choose <code>Account Actions</code>,   <code>Add other account</code></p>\n\n<p><img src=\"https://i.stack.imgur.com/F0wyw.png\" alt=\"enter image description here\"></p></li>\n<li><p>Select <code>Unix Spool (Movemail)</code>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/8HCcg.png\" alt=\"enter image description here\"></p></li>\n</ol>\n\n<p>The UI to access this menu is slightly different in Thunderbird 2, but I didn't have it handy. </p>\n\n<p>In Thunderbird 2, do the following, adapted from the <a href=\"http://mail.google.com/support/bin/answer.py?answer=86399\" rel=\"noreferrer\">Gmail FAQ</a>:</p>\n\n<ol>\n<li>Click the Tools menu, and select Account Settings..</li>\n<li>Click the Add Account... button to launch Account Wizard.</li>\n<li>Select Movemail from the list. </li>\n</ol>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-11T12:33:20.680", "id": "1847", "postId": "1917", "score": "1", "text": "Well, now I feel foolish. (I'd tried some time ago and hope that the option in the wizard post-dates that, else I don't know how I missed it!) Thanks. It was also necessary to run `sudo chmod 01777 /var/mail` to get this to work, as without, thunderbird complained it couldn't write a `~.lock` file.", "userDisplayName": null, "userId": "179" }, { "creationDate": "2010-08-11T17:05:48.730", "id": "1866", "postId": "1917", "score": "2", "text": "@vanden: You should find a lower permission that works or create a group that allows access. World writeable is dangerous.", "userDisplayName": null, "userId": "877" }, { "creationDate": "2010-08-11T20:14:10.260", "id": "1880", "postId": "1917", "score": "1", "text": "@Dennis: Thanks. I wasn't pleased by the permissions, either. They were suggested by the thunderbird interface. I tried removing world write access, but that prevented access to the mail. Having fetched the backlog, I've reverted.", "userDisplayName": null, "userId": "179" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T04:22:24.213", "id": "1917", "lastActivityDate": "2014-03-16T15:27:35.767", "lastEditDate": "2014-03-16T15:27:35.767", "lastEditorDisplayName": null, "lastEditorUserId": "65926", "ownerDisplayName": null, "ownerUserId": "66", "parentId": "1916", "postTypeId": "2", "score": "15" }
[ { "accepted": true, "body": "<p>In <strong>Ubuntu 10.04</strong>, with Thunderbird 3, the option is accomplished by:</p>\n\n<ol>\n<li><p>Select <code>Edit</code>,   <code>Account Settings</code> </p>\n\n<p><img src=\"https://i.stack.imgur.com/acOoB.png\" alt=\"enter image description here\"></p></li>\n<li><...
null
null
null
null
null
1918
1
1937
2010-08-11T05:53:18.307
8
3616
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/162075/my-computer-boots-to-a-black-screen-what-options-do-i-have-to-fix-it">My computer boots to a black screen, what options do I have to fix it?</a> </p> </blockquote> <p>I installed Lucid Lynx over PXE onto this dell server seemingly successfully, but booting from the HD results in a black, unpowered screen. There appears to be no network connectivity to the box either. It may have landed at a textual busybox type prompt, but I can't see it. <kbd>Ctrl</kbd>-<kbd>Alt</kbd>-<kbd>Delete</kbd> seems to reboot.</p> <p>On my last attempt I held shift and the grub menu came up, but recovery mode produced the same results.</p> <p>Should I drop into the grub prompt and give the kernel a magical boot option? Should I boot from a rescue cd and munge some bits on the HD? Give up and install windows?</p>
576
-1
2017-04-13T12:23:07.557
2012-01-03T10:54:16.047
How do I troubleshoot booting into black screen?
[ "10.04", "boot", "pxe" ]
2
3
CC BY-SA 3.0
[ { "creationDate": "2010-08-11T07:48:45.027", "id": "1824", "postId": "1918", "score": "0", "text": "Have you removed the `quiet` option from grubs kernel commandline? If not, try to boot without `quiet` and `splash`. You'll see some output.", "userDisplayName": null, "userId": "236" },...
{ "accepted": true, "body": "<p>Here are a couple of \"magical boot options\" to try:</p>\n\n<ul>\n<li><code>nomodeset</code></li>\n<li><code>i915.modeset=0 xforcevesa</code></li>\n</ul>\n\n<p>I'd remove <code>quiet splash</code> when trying these and only one at a time, not together as they'll likely conflict.</p>\n\n<hr>\n\n<p>Edit: for an explanation of <em>how</em> to use these:</p>\n\n<ul>\n<li>When booting, hold left-<kbd>Shift</kbd></li>\n<li>Highlight the first option and press <kbd>e</kbd></li>\n<li><p>Go down to the line that looks like:</p>\n\n<pre><code>/boot/vmlinuz-3.0.blah-generic root=UUID=blah ro quiet splash\n</code></pre></li>\n<li><p>Replace <code>quite splash</code> with your boot option of choice.</p></li>\n</ul>\n\n<p>If that works out well, you can make the changes to <code>/etc/default/grub</code> by editing the <code>GRUB_CMDLINE_LINUX_DEFAULT</code> value. After saving, run <code>sudo update-grub</code>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-11T21:14:10.187", "id": "1891", "postId": "1937", "score": "0", "text": "thank you for your options. before I saw your answer I used the ubuntu pxe rescue to install nvidia-latest, which eventually resolved my issue. Dell Precision T3500", "userDisplayName": null, "userId": "576" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T13:23:29.883", "id": "1937", "lastActivityDate": "2012-01-03T10:54:16.047", "lastEditDate": "2012-01-03T10:54:16.047", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "1918", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Here are a couple of \"magical boot options\" to try:</p>\n\n<ul>\n<li><code>nomodeset</code></li>\n<li><code>i915.modeset=0 xforcevesa</code></li>\n</ul>\n\n<p>I'd remove <code>quiet splash</code> when trying these and only one at a time, not together as they'll likely confl...
null
null
2012-10-05T07:57:48.273
null
null
1919
1
1923
2010-08-11T06:01:33.127
69
24990
<p>A lot of applications like Firefox, Chrome etc, get closed when I accidentally press <kbd>Ctrl</kbd>+<kbd>Q</kbd> instead of <kbd>Ctrl</kbd>+<kbd>W</kbd> because of the proximity of the <em><kbd>Q</kbd></em> and <em><kbd>W</kbd></em> keys on the keyboard. Is there a way this shortcut can be removed or reset on a system wide basis?</p>
234
332494
2015-10-02T19:57:38.663
2021-05-29T14:55:04.907
How can I disable Ctrl+Q for all applications (system wide)?
[ "gnome", "configuration", "shortcut-keys", "system" ]
10
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The best way is to disable the keyboard setting in your specific application. For Firefox there is an extension <a href=\"http://forums.mozillazine.org/viewtopic.php?t=72994\" rel=\"noreferrer\">keyconfig</a>. This allows you to change keyboard settings.</p>\n\n<p>If you want to disable <kbd>Ctrl</kbd>+<kbd>Q</kbd> for your whole system, I would suggest to make a new setting:</p>\n\n<ol>\n<li>Go to System -> Preferences -> Keyboard settings</li>\n<li>Click <strong>Add</strong></li>\n<li>Give it a name like <em>fake setting</em> and enter <code>/bin/false</code> as command. Apply your changes.</li>\n<li>Click on '<strong>Disabled</strong>' and press <kbd>Ctrl</kbd>+<kbd>Q</kbd>.</li>\n</ol>\n\n<p>Now you should have a new entry with your applied name and your keyboard setting. Every time you press <kbd>Ctrl</kbd>+<kbd>Q</kbd> your system will run the command <code>/bin/false</code> which basically does nothing. So this is a workaround to disable the setting.</p>\n", "commentCount": "13", "comments": [ { "creationDate": "2010-08-11T13:37:51.550", "id": "1851", "postId": "1923", "score": "2", "text": "Awesome answer, and how did you do the styled button shortcuts! :)", "userDisplayName": null, "userId": "316" }, { "creationDate": "2010-08-11T15:33:16.703", "id": "1860", "postId": "1923", "score": "3", "text": "@jathanism: Use the `kbd` html tag.", "userDisplayName": null, "userId": "833" }, { "creationDate": "2012-10-15T06:23:50.250", "id": "250442", "postId": "1923", "score": "4", "text": "When you want to press `Ctrl-Q` the window will close. You can never assign this key using this method", "userDisplayName": null, "userId": "61218" }, { "creationDate": "2014-04-20T05:22:05.117", "id": "592529", "postId": "1923", "score": "3", "text": "@AnwarShah -- I just tried this solution and it worked for me.", "userDisplayName": null, "userId": "66569" }, { "creationDate": "2016-05-21T13:38:48.057", "id": "1159347", "postId": "1923", "score": "0", "text": "I'm using GNOME Shell 3.20.2 on Archlinux and this worked for me.", "userDisplayName": null, "userId": "318437" }, { "creationDate": "2017-01-06T16:01:35.143", "id": "1345562", "postId": "1923", "score": "0", "text": "this is so hacky but it works splendidly. Ubuntu GNOME 16.04.", "userDisplayName": null, "userId": "4460" }, { "creationDate": "2017-01-18T15:35:51.773", "id": "1355601", "postId": "1923", "score": "0", "text": "Fail. This doesn't let me use Ctrl+Q in an application that defines this shortcut by default (e.g. IntelliJ)", "userDisplayName": null, "userId": "495443" }, { "creationDate": "2017-03-01T06:02:26.403", "id": "1388307", "postId": "1923", "score": "0", "text": "@MarkJeronimus: guess that's a problem of the application, then. But I'm sure you can disable that in IntelliJ as well.", "userDisplayName": null, "userId": "399474" }, { "creationDate": "2017-03-01T11:49:34.947", "id": "1388439", "postId": "1923", "score": "0", "text": "I want it in IntelliJ because it's a standard shortcut across platforms", "userDisplayName": null, "userId": "495443" }, { "creationDate": "2017-09-26T15:12:37.763", "id": "1532984", "postId": "1923", "score": "1", "text": "keyconfig no longer works in Firefox 57.", "userDisplayName": null, "userId": "232993" }, { "creationDate": "2020-03-05T17:57:44.513", "id": "2042160", "postId": "1923", "score": "0", "text": "System-wide disable of `Ctrl+Q` is all that worked for me. I use the command `true`.", "userDisplayName": null, "userId": "150172" }, { "creationDate": "2020-09-28T08:02:58.307", "id": "2167889", "postId": "1923", "score": "1", "text": "this works in ubuntu mate 20.04, but the program is named like \"keyboard shortcuts\"", "userDisplayName": null, "userId": "111941" }, { "creationDate": "2021-03-16T22:10:40.907", "id": "2256661", "postId": "1923", "score": "0", "text": "I love this solution, but I modified it to use Ctrl+Q as \"Hide Window\" instead", "userDisplayName": null, "userId": "34298" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T08:14:02.097", "id": "1923", "lastActivityDate": "2017-10-28T15:00:46.460", "lastEditDate": "2017-10-28T15:00:46.460", "lastEditorDisplayName": null, "lastEditorUserId": "477638", "ownerDisplayName": null, "ownerUserId": "236", "parentId": "1919", "postTypeId": "2", "score": "99" }
[ { "accepted": null, "body": "<p>Probably inserting the shortcut under System -> Preferences -> Keyboard Shortcuts and \"disabling\" it should do the trick.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-08-11T07:33:50.743", "id": "1823", "postId": "1...
null
null
null
null
null
1926
1
1928
2010-08-11T08:52:56.590
4
1461
<p>Empathy uses a very small font size. I'd like to have some larger font. But the system setting has no entry for fonts. How can I use another/larger font in empathy?</p>
236
4
2010-08-11T13:17:25.890
2015-06-25T18:24:35.400
How can the font size in empathy be configured?
[ "10.04", "gnome", "fonts", "empathy" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This bug has been reported. However, if you are using the adium theme there is a workaround <a href=\"https://bugs.launchpad.net/empathy/+bug/504771/comments/9\" rel=\"nofollow\">here</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T09:14:33.020", "id": "1928", "lastActivityDate": "2015-06-25T18:24:35.400", "lastEditDate": "2015-06-25T18:24:35.400", "lastEditorDisplayName": null, "lastEditorUserId": "367165", "ownerDisplayName": null, "ownerUserId": "809", "parentId": "1926", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>This bug has been reported. However, if you are using the adium theme there is a workaround <a href=\"https://bugs.launchpad.net/empathy/+bug/504771/comments/9\" rel=\"nofollow\">here</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, ...
null
null
null
null
null
1927
1
1929
2010-08-11T08:53:03.000
6
290
<p><a href="http://launchpad.net/ubuntu/+source/stackapplet" rel="nofollow">A package</a> was recently added to Ubuntu. (It was synced from Debian.)</p> <p>I searched for it on <a href="http://packages.ubuntu.com" rel="nofollow">http://packages.ubuntu.com</a>, but it isn't showing up.</p> <p>How long does it take?</p>
5
null
2015-12-14T17:10:03.940
2015-12-14T17:10:03.940
How long till a package shows up in the repository?
[ "package-management", "debian", "repository" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-11T09:19:40.590", "id": "1830", "postId": "1927", "score": "1", "text": "Usually you'll find it at: http://packages.ubuntu.com/maverick/main/newpkg But the site isn't working at the moment.", "userDisplayName": null, "userId": "236" }, { "creationDate":...
{ "accepted": true, "body": "<p>The packages.ubuntu.com website for maverick is not working (yet), i.e. you can use it only to search for packages in releases &lt;= 10.04. If you install the <strong>devscripts</strong> package you can use the command <strong>rmadison</strong>:</p>\n\n<pre><code>rmadison stackapplet\n</code></pre>\n\n<p>will show you all versions in the repositories:</p>\n\n<pre><code>stackapplet | 1.2.0-1 | maverick/universe | source, all\n</code></pre>\n\n<p>Apparently it's there now.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-11T09:49:50.053", "id": "1835", "postId": "1929", "score": "0", "text": "There is a 't' missing (stackapplet). ;)", "userDisplayName": null, "userId": "236" }, { "creationDate": "2010-08-11T10:00:15.930", "id": "1836", "postId": "1929", "score": "0", "text": "Thanks, corrected. Actually now rmadison is able to find it :-)", "userDisplayName": null, "userId": "275" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T09:33:45.373", "id": "1929", "lastActivityDate": "2010-08-11T09:59:36.400", "lastEditDate": "2010-08-11T09:59:36.400", "lastEditorDisplayName": null, "lastEditorUserId": "275", "ownerDisplayName": null, "ownerUserId": "275", "parentId": "1927", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>The packages.ubuntu.com website for maverick is not working (yet), i.e. you can use it only to search for packages in releases &lt;= 10.04. If you install the <strong>devscripts</strong> package you can use the command <strong>rmadison</strong>:</p>\n\n<pre><code>rmadison sta...
null
null
null
user364819
null
1938
1
null
2010-08-11T13:55:52.800
9
920
<p>Which podcasts in either the Ubuntu or general Linux categories are the most helpful or most enjoyable. </p> <p>One podcast per answer which could be voted independently would be useful and possibly mentioning if it is highly technical, generally informative, or just fun.</p>
49
25798
2012-07-07T12:55:58.023
2012-07-07T12:55:58.023
What Ubuntu / Linux podcasts are most helpful?
[ "community" ]
7
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Not exclusively Ubuntu but Dan and Fab at <a href=\"http://linuxoutlaws.com/podcast\" rel=\"nofollow\">Linux Outlaws</a> have a great podcast. Recorded live usually on a Monday evening (UK time) </p>\n", "commentCount": "2", "comments": [ { "creationDate...
2010-08-11T14:45:14.213
null
2011-12-14T02:38:57.777
null
null
1942
1
null
2010-08-11T14:33:04.100
8
45259
<p>I have been trying for a while to get Evolution to connect to my Exchange account. I think the complication is the that the OWA url is https://owa[...]. I am able to connect with Android phones, iPhones, etc., but I can't do it with Evolution.</p> <p>Is there a way to make this work?</p>
423
8844
2012-05-04T17:21:15.490
2012-05-04T17:21:15.490
How can Evolution connect to Exchange via the OWA connector?
[ "evolution", "ms-exchange" ]
3
3
CC BY-SA 3.0
[ { "creationDate": "2010-08-11T15:17:46.133", "id": "1858", "postId": "1942", "score": "1", "text": "What version of Exchange server is this? <= 2003 or > 2003?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-12T15:01:12.493", "id": "1936", "postId"...
null
[ { "accepted": null, "body": "<p>You'll need to use the <code>evolution-mapi</code> plugin - It took me a good long while to get it setup properly with my machine at work. I was able to get calendar and mail to sync properly. Some interesting things I had to do:</p>\n\n<ul>\n<li>For <code>server</code> I had...
null
null
null
null
null
1943
1
1944
2010-08-11T15:04:10.517
27
15255
<p>In <a href="https://www.urbandictionary.com/define.php?term=ubuntu" rel="nofollow noreferrer">Urban Dictionary</a>, Ubuntu is defined as</p> <blockquote> <p><a href="https://www.urbandictionary.com/define.php?term=Ubuntu" rel="nofollow noreferrer">Ubuntu</a> is an ancient african word, meaning &quot;I can't <a href="https://www.urbandictionary.com/define.php?term=configure" rel="nofollow noreferrer">configure</a> <a href="https://www.urbandictionary.com/define.php?term=Debian" rel="nofollow noreferrer">Debian</a>&quot;.</p> </blockquote> <p>I'm confused about the meaning. How true is this sentence? Are really Ubuntu and Debian so close to each other?</p>
101
1103140
2021-12-05T10:08:15.943
2021-12-05T10:08:15.943
"Ubuntu is an ancient african word, meaning 'I can't configure Debian.'" in Urban Dictionary
[ "debian" ]
6
6
CC BY-SA 4.0
[ { "creationDate": "2010-08-11T15:13:52.823", "id": "1857", "postId": "1943", "score": "0", "text": "The term Ubuntu has been explained in this question [What does “Ubuntu” mean?](http://ubuntu.stackexchange.com/questions/424/what-does-ubuntu-mean/425#4250)", "userDisplayName": null, "use...
{ "accepted": true, "body": "<p>Not true at all.</p>\n\n<p>Actually Ubuntu means (from <a href=\"http://www.ubuntu.com/project/about-ubuntu\" rel=\"nofollow\">the site</a>): </p>\n\n<blockquote>\n <p>Ubuntu is an ancient African word meaning 'humanity to others'. It also means 'I am what I am because of who we all are'. The Ubuntu operating system brings the spirit of Ubuntu to the world of computers.</p>\n</blockquote>\n\n<p>And also from <a href=\"http://www.ubuntu.com/community/ubuntu-and-debian\" rel=\"nofollow\">ubuntu site</a>: </p>\n\n<blockquote>\n <p>Debian is 'the rock upon which Ubuntu is built'.</p>\n</blockquote>\n\n<p>So, Ubuntu is a Linux Distribuition derived from Debian.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2021-12-04T06:14:37.043", "id": "2376876", "postId": "1944", "score": "0", "text": "The links are no longer showing the quoted text.", "userDisplayName": null, "userId": "1103140" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T15:06:44.800", "id": "1944", "lastActivityDate": "2014-12-29T19:53:32.067", "lastEditDate": "2014-12-29T19:53:32.067", "lastEditorDisplayName": null, "lastEditorUserId": "431", "ownerDisplayName": null, "ownerUserId": "431", "parentId": "1943", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>Not true at all.</p>\n\n<p>Actually Ubuntu means (from <a href=\"http://www.ubuntu.com/project/about-ubuntu\" rel=\"nofollow\">the site</a>): </p>\n\n<blockquote>\n <p>Ubuntu is an ancient African word meaning 'humanity to others'. It also means 'I am what I am because of wh...
null
null
null
null
null
1954
1
2098
2010-08-11T17:27:53.047
1
166
<p>I would like to route packages received by a VM host to different VM guest, on basis of application layer, in particular domains given in urls. It is impossible to route on network layer level, since IP address limitations (to the outside) do not allow this.</p>
4
null
null
2010-09-25T17:01:51.467
Are there any packages in Ubuntu that allow routing on application layer level?
[ "kvm-virtualization", "routing" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>nginx is a light-weight proxy that can do this with web and e-mail traffic.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-12T21:59:52.803", "id": "2098", "lastActivityDate": "2010-09-25T17:01:51.467", "lastEditDate": "2010-09-25T17:01:51.467", "lastEditorDisplayName": null, "lastEditorUserId": "4", "ownerDisplayName": null, "ownerUserId": "4", "parentId": "1954", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>You mention URLs so forgive me if I make an assumption that this is web traffic. Could you put an apache + mod_proxy on the domU / VM host and direct the traffic based on URL that way?</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "c...
null
null
null
null
null
1956
1
null
2010-08-11T17:39:13.980
1
1628
<p>After upgrading the Ubuntu to 10.04 my Nautilus file manager gives lot of problem. Nautilus freezes after few minutes of start. I tried with Thunar, but I did not like that. Now I have Dolphin too, when Nautilus goes problem, then I start work with Dolphin. I do not like this. I want to work on Nautilus or equivalent one.</p> <p>I work with lot of images using GIMP and Inkscape. I tried many things including reinstalled the OS for 6 time in 4 months. I cannot leave Ubuntu, but I am limbing. Some body help me to fix it. Thanks in Advance.</p>
null
235
2011-01-17T14:55:09.293
2011-01-17T14:55:09.293
How can I prevent or diminish Nautilus freezing problems?
[ "10.04", "nautilus" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-11T17:40:57.970", "id": "1867", "postId": "1956", "score": "2", "text": "Please phrase the title as a question!", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-11T19:15:10.027", "id": "1873", "postId": "1956", "score...
null
[ { "accepted": null, "body": "<p>You need to first diagnose your problem.</p>\n\n<p>Try launching Nautilus from a Terminal by typing <code>nautilus</code> and pressing enter.\nAny errors or warnings will be displayed in the terminal and this may help you to find the issue. </p>\n\n<p>Your issue may already h...
null
null
2013-03-14T17:04:06.087
null
Karthick Bala
1962
1
1964
2010-08-11T19:23:14.627
64
74507
<p>I was able to setup ssh to use private/public key authentication. Now I am able to do</p> <pre><code>ssh user@server1 </code></pre> <p>And it logs on with the private key. Now I want to connect to another server and use a different key. How do set it up so</p> <pre><code>ssh user@server1 </code></pre> <p>uses privatekey1</p> <pre><code>ssh user@server2 </code></pre> <p>and uses privatekey2</p>
331
367165
2015-06-25T18:23:00.950
2021-02-16T11:39:59.990
How can multiple private keys be used with ssh?
[ "ssh", "authentication" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-12T11:56:25.387", "id": "1918", "postId": "1962", "score": "7", "text": "No real reason - ones a personal mythbox and the other is a work server and I didn't want to use my home key at work.", "userDisplayName": null, "userId": "331" }, { "creationDate"...
{ "accepted": true, "body": "<p>There are a few options.</p>\n\n<ol>\n<li><p>Load both keys into your ssh agent using <code>ssh-add</code>. Then both keys will be available when connecting to both servers</p></li>\n<li><p>Create your <code>$HOME/.ssh/config</code> file and create a <code>Host</code> section for server1 and another for server2. In each <code>Host</code> section, add an <code>IdentityFile</code> option pointing to the appropriate private key file</p></li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-12T11:58:51.120", "id": "1919", "postId": "1964", "score": "2", "text": "ssh agent was a great idea, also if I have both the public and private key files, ie key1 and key1.pub, in ~/.ssh it will automatically load them.", "userDisplayName": null, "userId": "331" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T19:27:55.723", "id": "1964", "lastActivityDate": "2015-06-25T18:23:13.120", "lastEditDate": "2015-06-25T18:23:13.120", "lastEditorDisplayName": null, "lastEditorUserId": "367165", "ownerDisplayName": null, "ownerUserId": "96", "parentId": "1962", "postTypeId": "2", "score": "52" }
[ { "accepted": null, "body": "<p>You can set this up in your <code>~/.ssh/config</code> file. You would have something like this:</p>\n\n<pre><code>Host server1\nIdentityFile ~/.ssh/key_file1\n\nHost server2\nIdentityFile ~/.ssh/key_file2\n</code></pre>\n\n<p><code>man ssh_config</code> is a reference</p>\n"...
null
null
null
null
null
1966
1
null
2010-08-11T19:30:54.640
8
4159
<p>Most Linux software is packaged in tarballs. All of them require but a few commands to compile and install them. </p> <p>My question is; we have gdebi for standalone debian packages, so why not an app to install tarballs the same way? Why is such an apparently simple process not automated? Why must we continue to intimidate and drive away new users with ideas of compiling software?</p>
null
203
2010-08-16T06:24:50.413
2013-03-27T20:15:30.707
Is there any simple way to install tarballs?
[ "package-management", "software-center" ]
9
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>.deb packages are tarballs with the necessary information to do proper package management added to them.</p>\n\n<p>If you just install a tarball, how do you make sure that all dependencies are met? All the necessary libraries are installed?</p>\n\n<p>How do you want to remove...
null
null
null
null
Dante Ashton
1974
1
1975
2010-08-11T19:46:23.993
10
18458
<p>In rearranging the panel, I removed the Network Manager Applet. I tried to add it back, but it doesn't show up in the list (Add To Panel). I can start it up and see it as a running process (nm-applet), and I'm still connected to the internets, but I don't know how to get the panel icon back.</p>
90
667
2010-08-11T20:27:04.350
2015-05-25T17:55:46.240
How can I add the Network Manager Applet to the panel after removing?
[ "gnome", "panel", "network-manager" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You have to add the Notification Area applet to the panel. The network manager will show up there.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T19:53:30.327", "id": "1975", "lastActivityDate": "2010-08-11T19:53:30.327", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1107", "parentId": "1974", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>You have to add the Notification Area applet to the panel. The network manager will show up there.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T19:53:30.327", "id...
null
null
null
null
null
1978
1
1979
2010-08-11T20:08:07.997
6
556
<p>On my desktop computer, the GNOME main menu on the panel has a different look: it's just one "Ubuntu logo" icon; clicking on it displays the "Applications" menu on top, with "Resources" and "System" being two sub-menus (last two entries). </p> <p>I actually like this alternate style more than the default one, and would like to have it on my laptop as well. What should I set/alter to have the alternate look on another computer?</p> <p>(The desktop has always been this way -- I guess it's because it was a Debian machine before, and I installed Ubuntu without reformatting <code>/home</code>.)</p>
325
25863
2012-11-21T21:48:43.083
2012-11-21T21:48:43.083
alternate look for the GNOME main menu
[ "gnome", "panel" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ol>\n<li>Right click on the panel. </li>\n<li>Click 'Add to Panel...'. </li>\n<li>Select 'Main Menu' (not 'Menu Bar', this is the default menu applet). </li>\n<li>Click 'Add'.</li>\n</ol>\n\n<p>You can remove the old menu by right clicking it and clicking 'Remove from Panel'.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T20:22:21.350", "id": "1979", "lastActivityDate": "2010-08-11T20:22:21.350", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "667", "parentId": "1978", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<ol>\n<li>Right click on the panel. </li>\n<li>Click 'Add to Panel...'. </li>\n<li>Select 'Main Menu' (not 'Menu Bar', this is the default menu applet). </li>\n<li>Click 'Add'.</li>\n</ol>\n\n<p>You can remove the old menu by right clicking it and clicking 'Remove from Panel'.</...
null
null
null
null
null
1982
1
1985
2010-08-11T20:32:55.067
3
3267
<p>I'd like to set up authenticated, encrypted SMTP on my remote Ubuntu server, how do I do that? </p> <p>It's just a personal server, so I'd like a cheap option, i.e. not buying SSL certs - self-signed will do for now at least.</p> <p>Update: I'm a little tied to exim as I've got some other stuff configured in that.</p>
302
302
2010-08-17T01:43:06.393
2010-09-21T20:12:43.590
How can I set up an authenticated encrypted SMTP server?
[ "security", "server", "mail", "smtp", "ssl" ]
5
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T01:52:57.223", "id": "2803", "postId": "1982", "score": "0", "text": "FYI, you can get free SSL certs that will validate in most browsers (updated WinXP's IE6, Firefox 2.0, OS X) from http://startssl.com. It's what I'm using on all my sites.", "userDisplayName":...
{ "accepted": true, "body": "<p>I would suggest <a href=\"http://www.postfix.org/\" rel=\"nofollow\">Postfix</a>. This is a mail server which is very easy to set up (in my opinion). You'll find some useful documents:</p>\n\n<ul>\n<li><a href=\"http://postfix.state-of-mind.de/patrick.koetter/smtpauth/\" rel=\"nofollow\">Postfix SMTP AUTH (and TLS) HOWTO</a></li>\n<li><a href=\"http://www.postfix.org/TLS_README.html\" rel=\"nofollow\">Postfix TLS Readme</a></li>\n<li><a href=\"http://postfix.wiki.xs4all.nl/index.php?title=Main_Page\" rel=\"nofollow\">Postfix-Wiki</a></li>\n<li><a href=\"http://www.postfix.org/documentation.html\" rel=\"nofollow\">Postfix documentation site</a></li>\n</ul>\n\n<p>Those documents cover the basic setup of Postfix. If you encounter problems you should come back (or better, ask Superuser).</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-17T01:42:33.087", "id": "2403", "postId": "1985", "score": "0", "text": "Thanks, but I should have specified that I'm a little tied to exim as we've got some other stuff configured in that.", "userDisplayName": null, "userId": "302" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-11T20:53:26.033", "id": "1985", "lastActivityDate": "2010-08-11T20:53:26.033", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "236", "parentId": "1982", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>You can do that by using postfix and dovecot packages. There are lots of detailed instructions available. Just to mention a few:</p>\n\n<p><a href=\"http://johnny.chadda.se/article/mail-server-howto-postfix-and-dovecot-with-mysql-and-tlsssl-postgrey-and-dspam/\" rel=\"nofollo...
null
null
2013-03-14T17:04:12.467
null
null
1986
1
2080
2010-08-11T20:55:13.360
8
1207
<p>I have Windows XP and Ubuntu installed on separate partitions. </p> <p>Is it possible to "boot" my Ubuntu install from within Windows? What I am looking for is something similar to a Virtual Machine, but that will run the copy of Ubuntu already installed on my hard drive. I'd like to be able to dualboot Ubuntu and Windows, but also have the ability to access my Ubuntu install from within Windows without having to reboot.</p>
965
965
2017-10-17T00:46:52.040
2017-10-17T00:46:52.040
Is it possible to run currently installed Ubuntu from Windows?
[ "boot", "windows", "system-installation" ]
7
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-11T21:05:25.973", "id": "1888", "postId": "1986", "score": "0", "text": "Do you mean run your Ubuntu installation (Like Ubuntu itself) from within windows - or access the files from the Ubuntu partition in Windows?", "userDisplayName": null, "userId": "41" },...
{ "accepted": true, "body": "<p>You can use coLinux and run your Ubuntu kernel with colinux: </p>\n\n<ol>\n<li><p>I installed Ubuntu as normal on a separate partition and configured the computer to dualboot between Ubuntu/XP.</p></li>\n<li><p>I installed coLinux with the Debian with backports image that is available on the coLinux website.</p></li>\n<li><p>Configured coLinux so it could mount the Ubuntu partition, the trick here is to figure out the correct partition number. The partition number in coLinux seems to be lower that the partition number used when booting the computer with Ubuntu. In my case I had to setup:</p>\n\n<pre><code>&lt;block_device index=\"1\" path=\"\\Device\\Harddisk0\\Partition5\" enabled=\"true\" alias=\"hda7\"/&gt;\n</code></pre></li>\n<li><p>Boot coLinux with the Debian with backports image and after boot mount the ubuntu partition in my case <code>/dev/hda7</code></p></li>\n<li><p>To make it possible to boot ubuntu inside coLinux you need to turn of some services autostarted at boot, most of them har hardware related in some way and is not supported inside coLinux. You still want to run these services when not running ubuntu inside colinux. I did this by first creating a /etc/inid.d/colinux script according to <a href=\"http://wiki.colinux.org/cgi-bin/DualBootSystem\" rel=\"nofollow\">http://wiki.colinux.org/cgi-bin/DualBootSystem</a><br>\nThis script should of course be created in the <code>/etc/init.d</code> directory on the ubuntu partition and not on the \"debian with backports\" image.<br>\nWhen this script has been created you also need to edit the <code>default.colinux.xml</code> file so it contains a <code>COLINUX=1</code> boot-parameter, in my case:</p>\n\n<pre><code>&lt;bootparams&gt;root=/dev/hda8 COLINUX=1&lt;/bootparams&gt;\n</code></pre>\n\n<p>This script now makes it possible to turn of some autostarted services when starting inside coLinux but still run these services when dualbooting the computer with ubuntu.\nYou also has to make sure to run this script at boot time by inserting links in the <code>/etc/rcS.d</code> directory.</p></li>\n<li><p>The next step is to turn of services by inserting if-statements inside the service scripts in <code>/etc/init.d</code> (on the ubuntu partition).</p>\n\n<pre><code>if [ -f /var/local/colinux ] ; then\nexit 0\nfi\n</code></pre>\n\n<p><br>\nI had to turn off the following services when booting inside coLinux to make it boot, coLinux crashed during boot when any of these services were running:</p>\n\n<pre><code>/etc/init.d/gdm \n/etc/init.d/powernowd \n/etc/init.d/hotkey-setup \n/etc/init.d/pcmcia \n/etc/init.d/vbesave\n</code></pre></li>\n<li><p>Create colinux customized versons of some other files, the colinux script in init.d mentioned above makes it possible to have a colinux-version and a non-colinux version of some different files.\nIn my case I have special versions of the following files:<br><br>\n<code>/etc/fstab</code> (coLinux mounts the ntfs partitions using smbfs instead of ntfs read-only mounting)<br>\n<code>/etc/network/interfaces</code> (I didn't get colinux to work using DHCP so it has hardcoded IP numbers instead)<br>\n<code>/etc/gdm/gdm.conf</code> (I am not really sure this is used since gdm can't be started at boot, but I have a special version for coLinux with all [servers] disabled. It may be used when using vnc but I am not sure if it is needed)<br><br>\nIt is important to remember to edit correct file when setting up these files this way because the normal files will be overwritten with *-colinux or *-non-colinux versions at each boot. It might be possible to setup symbolic links instead of overwriting the files but I have not tested this.</p></li>\n<li><p>Finally you will have to setup coLinux so it boots using the Ubuntu partition instead of the \"debian with backports\" image, this is done by setting a boot partition in the default.colinux.xml file, in my case it pointed to <code>/dev/hda8</code> <br>\n<code>&lt;bootparams&gt;root=/dev/hda8 COLINUX=1&lt; /bootparams&gt;</code> <br><br></p></li>\n<li>It should now be possible to either start Ubuntu by selecting it in the dualboot(grub) menu when booting the computer or by starting XP and startup coLinux. Observe that when running inside coLinux the Ubuntu kernel is actually not used instead the coLinux kernel is used. This is important to think about for example if you need to recompiling kernels and kernel modules.</li>\n</ol>\n\n<p>Finally, don't do the same mistake as I did. As described in this thread, I put XP/coLinux into sleep in hibernate mode and then dualbooted into Ubuntu. My Ubuntu file system got corrupt at next boot of XP and I decided to do a total reinstallation of Ubuntu.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-12T20:18:45.790", "id": "1989", "postId": "2080", "score": "2", "text": "It's great Idea, I think My friend also do this because I heard Colinux from him too.", "userDisplayName": null, "userId": "965" }, { "creationDate": "2010-08-12T20:22:02.397", "id": "1990", "postId": "2080", "score": "1", "text": "fantastic answer :-)", "userDisplayName": null, "userId": "1005" }, { "creationDate": "2010-10-16T01:24:56.203", "id": "7492", "postId": "2080", "score": "5", "text": "If you're just going to copy and paste someone else's work, [you should give them the credit](http://ubuntuforums.org/showthread.php?t=81444#post439988).", "userDisplayName": null, "userId": "2449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-12T20:16:51.177", "id": "2080", "lastActivityDate": "2015-02-07T13:36:51.907", "lastEditDate": "2015-02-07T13:36:51.907", "lastEditorDisplayName": null, "lastEditorUserId": "62483", "ownerDisplayName": null, "ownerUserId": "1005", "parentId": "1986", "postTypeId": "2", "score": "10" }
[ { "accepted": null, "body": "<p>I dont think you can boot your Ubuntu install from your windows machine without a virtual machine. If there is way, outside of that it would be cool. How is it different from VM?</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-12T13...
null
null
null
null
null
1991
1
1992
2010-08-11T21:50:10.653
37
19402
<p>I'm setting up a server for backing up my desktop box remotely. I want to prevent remote password access to the server, permitting only users with private keys (AKA my desktop box) to access it. How can I block remote password access while allowing physical password access to the server?</p>
108
null
null
2017-09-01T22:21:01.647
Disable password access through SSH?
[ "security", "ssh", "password", "remote-access" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Just insert the following to the sshd config on the server (<code>/etc/ssh/sshd_config</code>)</p>\n\n<pre><code>PasswordAuthentication no\n</code></pre>\n\n<p>You might need to reload the ssh service</p>\n\n<pre><code>sudo service ssh reload\n</code></pre>\n\n<p>That should do the trick ;)</p>\n\n<p>For more options type <code>man sshd_config</code> in to your terminal.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-15T21:51:46.753", "id": "2276", "postId": "1992", "score": "1", "text": "See this thread for more hints: http://ubuntu.stackexchange.com/questions/2271/how-to-harden-an-ssh-server", "userDisplayName": null, "userId": "455" }, { "creationDate": "2016-06-22T03:27:23.390", "id": "1187240", "postId": "1992", "score": "1", "text": "do i need to restart ssh after that?", "userDisplayName": null, "userId": "74670" }, { "creationDate": "2017-09-01T22:20:13.810", "id": "1516887", "postId": "1992", "score": "0", "text": "Of course, you must.", "userDisplayName": null, "userId": "566421" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-11T21:58:48.140", "id": "1992", "lastActivityDate": "2017-09-01T22:21:01.647", "lastEditDate": "2017-09-01T22:21:01.647", "lastEditorDisplayName": null, "lastEditorUserId": "566421", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "1991", "postTypeId": "2", "score": "48" }
[ { "accepted": true, "body": "<p>Just insert the following to the sshd config on the server (<code>/etc/ssh/sshd_config</code>)</p>\n\n<pre><code>PasswordAuthentication no\n</code></pre>\n\n<p>You might need to reload the ssh service</p>\n\n<pre><code>sudo service ssh reload\n</code></pre>\n\n<p>That should ...
null
null
null
null
null
1993
1
2003
2010-08-11T22:14:36.883
7
5045
<p>I've purchased a Dell Inspiron 1545 for my wife. Due to some really bad judgement from the design team, the only indicator you have is the power one.</p> <p>What do you guys recommend in terms of having some nice indicators for CAPS/NUM Lock and HDD activity? I just feel so lost without some quick visual clue on those items.</p>
160
235
2012-01-01T18:31:51.450
2014-03-16T16:12:09.147
Looking for CAPS LOCK/NUM LOCK and HDD activity indicators
[ "software-recommendation", "indicator" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>For the caps lock and num lock you can use the Indicator-keylock package. It looks like this:</p>\n\n<p><img src=\"https://i.stack.imgur.com/mjfHa.png\" alt=\"alt text\"></p>\n\n<p>And instructions for installing are available at: <a href=\"http://www.webupd8.org/2010/07/indicator-keylock-displays-keyboard.html\" rel=\"nofollow noreferrer\">http://www.webupd8.org/2010/07/indicator-keylock-displays-keyboard.html</a></p>\n\n<p>For the hdd activity monitor you can use the system monitor applet available in the gnome-applets package. Go to preferences and choose to display disk activity.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-12T00:23:14.827", "id": "2003", "lastActivityDate": "2014-03-16T16:12:09.147", "lastEditDate": "2014-03-16T16:12:09.147", "lastEditorDisplayName": null, "lastEditorUserId": "65926", "ownerDisplayName": null, "ownerUserId": "289", "parentId": "1993", "postTypeId": "2", "score": "10" }
[ { "accepted": null, "body": "<p>Not really an answer, but I'd just add a system monitor to the panel. Showing it in the leds would be kind of cool: and it's technically possible, I just don't know of pre-canned code to do it. You can script it using <code>xset -led</code>.</p>\n", "commentCount": "0",...
null
null
null
null
null
2007
1
2009
2010-08-12T02:06:38.373
72
142885
<p>With regards to Plymouth --</p> <p>Are there alternative boot screens available?</p> <p>What's the easiest way to change the boot screen?</p>
195
169736
2014-02-13T01:59:43.090
2023-08-13T19:53:27.157
How do I change the plymouth bootscreen?
[ "plymouth" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can get a list of themes available via the repositories through <a href=\"http://www.nongnu.org/synaptic/\" rel=\"nofollow noreferrer\">Synaptic Package Manager</a> or through the command line via <code>aptitude</code>:</p>\n\n<pre><code>$ aptitude search plymouth-theme\np lubuntu-plymouth-theme - plymouth theme for Lubuntu\np plymouth-theme-fade-in - graphical boot animation and logger - fade-in theme\np plymouth-theme-glow - graphical boot animation and logger - glow theme\ni plymouth-theme-kubuntu-logo - graphical boot animation and logger - kubuntu-logo theme\np plymouth-theme-sabily - plymouth theme for Sabily\np plymouth-theme-script - graphical boot animation and logger - script theme\np plymouth-theme-solar - graphical boot animation and logger - solar theme\np plymouth-theme-spinfinity - graphical boot animation and logger - spinfinity theme\np plymouth-theme-text - graphical boot animation and logger - text theme\nc plymouth-theme-ubuntu-logo - graphical boot animation and logger - ubuntu-logo theme\ni plymouth-theme-ubuntu-text - graphical boot animation and logger - ubuntu-logo theme\np plymouth-theme-ubuntustudio - Ubuntu Studio Plymouth theme\np xubuntu-plymouth-theme - Plymouth theme for Xubuntu\n</code></pre>\n\n<p>You can then install the resulting packages via Synaptic or apt as normal:</p>\n\n<pre><code>$ sudo apt install plymouth-theme-solar\n</code></pre>\n\n<p>If you're looking for something not in the repositories, <a href=\"http://www.ubuntugeek.com/\" rel=\"nofollow noreferrer\">UbuntuGeek</a> has an excellent tutorial on how to <a href=\"http://www.ubuntugeek.com/quick-tipplymouth-themes-in-ubuntu-10-04-lucid-lynx.html\" rel=\"nofollow noreferrer\">install and create your own custom Plymouth themes</a>.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-10-29T13:46:55.713", "id": "10368", "postId": "2009", "score": "5", "text": "Be careful because not all of the themes support the boot messages generated by Ubuntu.", "userDisplayName": null, "userId": "3694" }, { "creationDate": "2020-01-20T13:25:59.110", "id": "2020345", "postId": "2009", "score": "0", "text": "`apt` works as wel.", "userDisplayName": null, "userId": "42522" }, { "creationDate": "2020-12-14T07:17:37.040", "id": "2209491", "postId": "2009", "score": "0", "text": "Tried `sudo apt install plymouth-theme-ubuntu-logo` on 20.10 -- still \"kubuntu\" logo on boot.", "userDisplayName": null, "userId": "428527" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-12T02:34:15.607", "id": "2009", "lastActivityDate": "2020-01-21T08:26:11.773", "lastEditDate": "2020-01-21T08:26:11.773", "lastEditorDisplayName": null, "lastEditorUserId": "66", "ownerDisplayName": null, "ownerUserId": "66", "parentId": "2007", "postTypeId": "2", "score": "45" }
[ { "accepted": true, "body": "<p>You can get a list of themes available via the repositories through <a href=\"http://www.nongnu.org/synaptic/\" rel=\"nofollow noreferrer\">Synaptic Package Manager</a> or through the command line via <code>aptitude</code>:</p>\n\n<pre><code>$ aptitude search plymouth-theme\n...
null
null
null
null
null
2013
1
2016
2010-08-12T06:33:00.100
5
4469
<p>This is an issue I've been facing for a long time. However I am still able to use my ubuntu via recovery mode, where I log-in to the shell, where I type <code>startx</code>. Sometimes when i restart, it goes in clean. But most of the time I get hung up with the splash screen.</p> <p>Wondering if this is an issue with mount: heard that ubuntu will check the hdd once after every 30 mounts. I seem to notice it has not being doing that for a while.</p>
1123
235
2011-09-10T19:13:36.023
2011-09-10T19:13:36.023
Stuck at boot time in the splash screen prior to gui login dialog
[ "10.04", "boot" ]
3
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-12T07:06:46.567", "id": "1904", "postId": "2013", "score": "0", "text": "Can you switch to a terminal pressing CTRA+ALT+F1 when it's hang?. I suspect more of a plymouth issue than mount problem, but it could be a couple of things.", "userDisplayName": null, "us...
{ "accepted": true, "body": "<p><strong>Boot in recovery mode</strong></p>\n\n<p>Try pressing <kbd>Esc</kbd> right after you BIOS screen to access the grub menu, there you choose \"Recovery mode\" this will give you more debug messages. When the recovery menu appears you can \"Drop to root shell prompt\" and then look at the logfiles in <code>/var/log</code> folder, especially dmesg.0 (Kernel debug messages from last boot) this might point you in the right direction.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-17T15:34:14.297", "id": "2459", "postId": "2016", "score": "0", "text": "http://paste.ubuntu.com/479448/ - this is the last 50 lines of `dmesg.0`", "userDisplayName": null, "userId": "1123" }, { "creationDate": "2010-08-17T16:24:17.610", "id": "2467", "postId": "2016", "score": "1", "text": "The problem might be in line 36, 37, 38 i would start by starting from a live-cd and choose recovery-mode, then enter a terminal and run: `fsck -c -f /dev/sdb1` Looks like it was hanging for 4min 50sec, does that seem right?", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-11-09T09:51:03.530", "id": "12757", "postId": "2016", "score": "0", "text": "Think you've to execute what Source Lab has given a couple of times, and by default make it to substitute yes for each question it asks...", "userDisplayName": null, "userId": "1123" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-12T08:38:35.737", "id": "2016", "lastActivityDate": "2010-08-12T08:38:35.737", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "455", "parentId": "2013", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p><strong>Boot in recovery mode</strong></p>\n\n<p>Try pressing <kbd>Esc</kbd> right after you BIOS screen to access the grub menu, there you choose \"Recovery mode\" this will give you more debug messages. When the recovery menu appears you can \"Drop to root shell prompt\" an...
null
null
null
null
null
2014
1
null
2010-08-12T07:06:50.530
6
4003
<p>How do I remove an app (Tonido) in Ubuntu?</p>
794
527764
2022-03-16T09:39:14.607
2022-03-16T09:39:22.030
How do I remove an application?
[ "software-uninstall" ]
3
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>If you had installed the app through the <em>normal means</em>, I mean the Software Centre, synaptic or a .deb file, etc... you need to search for the app in the Software Centre and click uninstall.</p>\n\n<p>You can also uninstall it from the command line using</p>\n\n<pre><...
null
null
2022-03-16T09:39:37.273
null
null
2018
1
null
2010-08-12T09:03:22.013
6
4913
<p>The Ubuntu standard mail client Evolution provides two plugins for spam filtering:</p> <ul> <li>Bogofilter</li> <li>SpamAsassin</li> </ul> <p>What is the difference? Are there any advantages / disadvantages (speed / accuracy / ...)? </p> <p><strong>Note:</strong> I'm mainly interested in "out-of-the-box" performance, not in advanced configuration of either of the spam filters.</p>
275
23878
2012-10-08T15:33:48.817
2012-10-08T15:33:48.817
What spam filter should I use with Evolution: Bogofilter or SpamAssasin?
[ "mail", "evolution" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2018-11-20T10:28:23.073", "id": "1802213", "postId": "2018", "score": "1", "text": "I strongly disagree with Luis Alvarado's decision to close this question. Why is spam filtering of no interest to anyone? How is it too localized?", "userDisplayName": null, "userId": "...
null
[ { "accepted": null, "body": "<p>Well in a perfect world, you'd probably run emails through both before emails got anywhere near a client machine... But that's a discussion for another time.</p>\n\n<p>Simply put SpamAssassin is a safer choice. It might not catch as much spam, (it probably will) but you're pr...
null
null
2013-03-14T17:04:17.287
null
null
2021
1
2022
2010-08-12T10:15:14.097
16
6032
<p>With each kernel update, a new entry is placed in Grub to provide a way to boot that specific kernel version.</p> <p>I have about 5 at the moment and, to be honest, once I have confirmed I can boot into the new kernel version, I never go back to a previous version.</p> <p>I'd like to manage the items in this list from the desktop rather than edit the file, is there a way to do this using the GUI from within Ubuntu itself?</p>
1008
null
null
2012-10-31T19:34:55.993
Is there a way to manage my Grub menu options from with the GUI/desktop?
[ "grub2", "gui" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes, remove the packages.</p>\n\n<p>Load up synaptic and search for <code>linux-image</code>. Click the first column to sort by packages that are actually installed and then click the green boxes to alter the state. </p>\n\n<p>You're looking for packages that look like: <code>linux-image-2.6.31-ubuntu10</code>. Don't remove <code>linux-image</code> as that will stop updates coming in.</p>\n\n<p>Just mark the ones you don't want anymore and then click apply. I would suggest (if you're happy with it) removing all but the current kernel and the one before it (just in case).</p>\n\n<p>When you're done, click apply and grub gets cleaned up.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-08-12T11:51:38.077", "id": "1917", "postId": "2022", "score": "3", "text": "This will also save a bit of space on your disk since each kernel-image-2.6* takes up around 100mb and at the speed that new kernels come out in Ubuntu it can easily get to 1-2 GB's", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-12T14:04:39.350", "id": "1931", "postId": "2022", "score": "0", "text": "Amen to disk space. This is especially true when you're on an early development release and you get new kernel builds every other day.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-12T15:25:59.200", "id": "1940", "postId": "2022", "score": "0", "text": "It honestly never occurred to me to uninstall the packages. Big +1 for saving space!", "userDisplayName": null, "userId": "1008" }, { "creationDate": "2010-10-07T20:07:30.370", "id": "5440", "postId": "2022", "score": "0", "text": "What if the \"mark for removal\" option is greyed out?", "userDisplayName": null, "userId": "2638" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-12T10:45:02.117", "id": "2022", "lastActivityDate": "2010-08-12T10:45:02.117", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "2021", "postTypeId": "2", "score": "13" }
[ { "accepted": true, "body": "<p>Yes, remove the packages.</p>\n\n<p>Load up synaptic and search for <code>linux-image</code>. Click the first column to sort by packages that are actually installed and then click the green boxes to alter the state. </p>\n\n<p>You're looking for packages that look like: <code...
null
null
null
null
null
2028
1
2233
2010-08-12T12:37:38.080
2
1345
<p>I just installed Ubuntu 10.04 LTS.</p> <p>However, my D-Link DWM-152 (HSDPA USB modem) is not able to be detected.</p> <p>I am having exactly same result as c_siswan <a href="http://ubuntuforums.org/showthread.php?t=1476983" rel="nofollow">http://ubuntuforums.org/showthread.php?t=1476983</a></p> <p>Can anyone suggest me a solution?</p>
1131
41
2010-10-15T15:55:02.870
2011-12-04T07:53:51.900
How can I troubleshoot the lack of detection of the D-Link DWM-152 (HSDPA USB modem)?
[ "10.04", "modem" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Go to www.dlink.com, support+download and then search for DWM-152 and update your firmware. Have a look at this Blogpost saylinux.wordpress.com/2010/07/20/using-d-link-3g-usb-dwm-152-with-ubuntu-10-04/</p>\n\n<p>Maybe it works with network-manager if you try the newest developer version from here: <a href=\"https://launchpad.net/~network-manager/+archive/trunk\" rel=\"nofollow\">https://launchpad.net/~network-manager/+archive/trunk</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-17T01:57:16.357", "id": "2404", "postId": "2233", "score": "0", "text": "Works pretty well. I am happy.", "userDisplayName": null, "userId": "1131" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-14T00:03:12.817", "id": "2233", "lastActivityDate": "2010-10-15T15:55:11.233", "lastEditDate": "2010-10-15T15:55:11.233", "lastEditorDisplayName": null, "lastEditorUserId": "41", "ownerDisplayName": null, "ownerUserId": "1068", "parentId": "2028", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Give <a href=\"http://www.sakis3g.org/\" rel=\"nofollow\">sakis3g</a> a try. If it works than we know the modem works on Ubuntu and it's just a matter of including it in usb_modeswitch data or toggling it manually and we can work towards that.</p>\n", "commentCount": "1",...
null
null
null
null
null
2033
1
2040
2010-08-12T13:24:34.813
2
217
<p>I would like to have a general list of steps I can do to troubleshoot problems with sound.</p>
4
4
2010-08-12T13:43:06.703
2011-10-27T18:37:24.590
Are there anywhere instructions explaining how to troubleshoot sound problems on the Ubuntu desktops?
[ "sound" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes, there are: <a href=\"https://wiki.ubuntu.com/DebuggingSoundProblems\" rel=\"nofollow\">https://wiki.ubuntu.com/DebuggingSoundProblems</a></p>\n\n<p>The first step on a current (10.04) distribution should be to run:</p>\n\n<pre><code>ubuntu-bug audio\n</code></pre>\n\n<p>in a terminal or after pressing <kbd>Alt</kbd>+<kbd>F2</kbd>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-12T14:03:40.680", "id": "2040", "lastActivityDate": "2011-10-27T18:37:24.590", "lastEditDate": "2011-10-27T18:37:24.590", "lastEditorDisplayName": null, "lastEditorUserId": "17739", "ownerDisplayName": null, "ownerUserId": "275", "parentId": "2033", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Yes, there are: <a href=\"https://wiki.ubuntu.com/DebuggingSoundProblems\" rel=\"nofollow\">https://wiki.ubuntu.com/DebuggingSoundProblems</a></p>\n\n<p>The first step on a current (10.04) distribution should be to run:</p>\n\n<pre><code>ubuntu-bug audio\n</code></pre>\n\n<p>...
null
null
null
null
null
2034
1
7763
2010-08-12T13:27:21.080
55
17218
<p>The OCD in me wants directories I do not like the name of to be hidden since I do not interact with them directly.</p> <p>How can I hide directories without using the dot notation?</p>
333
480481
2018-10-20T11:57:17.310
2024-03-01T08:48:17.840
How can I hide directories or files without changing their names?
[ "gui", "directory", "hidden-files" ]
6
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Assuming you only care about hiding the files from showing up in nautilus, there is a <a href=\"https://bugzilla.gnome.org/show_bug.cgi?id=311010\" rel=\"noreferrer\">bug</a> on the GNOME Bugzilla about this. However, currently, that bug has not been resolved.</p>\n\n<p>There is another way to hide files from appearing in nautilus. If you create a file called <code>.hidden</code> inside of a directory, any filename listed in the file will not be displayed.</p>\n\n<p>For example, below is a .hidden file that I created. This file will hide any files or folders named <code>b</code> or <code>e</code> located in the same directory as the .hidden file.</p>\n\n<p><img src=\"https://i.stack.imgur.com/Qfc6L.png\" alt=\"Example .hidden File\"></p>\n\n<p>Below is a screenshot of the folder that contains the .hidden file. Note that you only see three files: <code>a</code>, <code>c</code>, and <code>f</code>. You do not see the .hidden file due to the '.' at the beginning of its name.\n<img src=\"https://i.stack.imgur.com/yUypG.png\" alt=\"Example Folder\"></p>\n\n<p>The screenshot below is of the same folder as before. However, this time, I hit <kbd>Ctrl</kbd>+<kbd>H</kbd> to cause nautilus to display hidden files and folders. Notice how there are several additional files that show up. You now see several files that were previously hidden due to having names that began with a '.'. There are also now files called 'b' and 'e', which although not having names beginning with a '.', were hidden due to being listed in the .hidden file.</p>\n\n<p><img src=\"https://i.stack.imgur.com/WVEKs.png\" alt=\"Example Folders With Hidden Files Visible\"></p>\n\n<p>Files mentioned in the .hidden file will only be hidden in nautilus. Tools like <code>ls</code> will still display them. The .hidden file is also not recursive. It only affects files in the same directory as the .hidden file is in.</p>\n\n<p>Some people on the forum have gone ahead and created scripts for nautilus that make it easier to add files to the .hidden file. The <a href=\"http://ubuntuforums.org/showpost.php?p=4985689&amp;postcount=5\" rel=\"noreferrer\">first script</a> includes a nice explanation about how to install and use the scripts, but the <a href=\"http://ubuntuforums.org/showpost.php?p=4986335&amp;postcount=6\" rel=\"noreferrer\">second script</a> is a bit cleaner and shorter. Feel free to use either script to make your life a bit easier.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-09-08T06:49:40.770", "id": "230913", "postId": "7763", "score": "0", "text": "+1. Just a note, IF you think you have to add `'` for file or folder name which contains ` ` space, it is not. Simply add the file or folder name", "userDisplayName": null, "userId": "61218" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-16T18:21:28.397", "id": "7763", "lastActivityDate": "2010-10-16T18:21:28.397", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "469", "parentId": "2034", "postTypeId": "2", "score": "81" }
[ { "accepted": null, "body": "<p>Unix and Linux only supports hiding folders that being with a <code>.</code>. </p>\n\n<p>If you really want to get them out of the way, but want them to not have <code>.</code>s, put them all in a <code>.hidden</code> in the same directory as the file or folder you want to hi...
null
null
null
Roger Pate
null
2035
1
77387
2010-08-12T13:30:16.687
0
1074
<p>I have a desktop that has both Gnome and KDE installed.</p> <p>When I start non-KDE applications under my user account running KDE, the application widgets obtain the same window decoration, style etc as my KDE applications.</p> <p>However, when I have to start an application with root privileges (i.e. via kdesudo), the style is like Gnome, not like KDE.</p> <p>What do I need to do to change this?</p>
4
null
null
2013-01-27T17:32:28.350
How can I make non-kde/non-qt application started with root privileges look integrated into my KDE desktop?
[ "gnome", "kde", "style" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It's in the docs ... </p>\n\n<p><a href=\"http://docs.kde.org/stable/en/kdebase-workspace/kdm/configuring-kdm.html#kdm-kcontrol-module\" rel=\"nofollow\">KDE Configuration ...</a> </p>\n\n<p>However, you cannot give sudo access before a user is logged in ... </p>\n\n<p>Since kdm must run before any user is logged in, it is not associated with any particular user. Therefore, it is not possible to have user-specific configuration files; all users share the common kdmrc. It follows from this that the configuration of kdm can only be altered by those users that have write access to <code>$KDEDIR/share/config/kdm/kdmrc</code> (normally restricted to system administrators logged in as root).</p>\n\n<p><strong>Edit</strong>: I apologize. The answer above does not address the problem ... for clarification I believe this is a possible workaround ...</p>\n\n<p>I tried this and it seems to work ...</p>\n\n<pre><code>su - \n[password]\ncd ~/.kde/share/apps\nln -s /home/[user]/.kde/share/apps/color-schemes ./color-schemes\nln -s /home/[user]/.kde/share/apps/QtCurve ./QtCurve\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-11-09T13:01:11.287", "id": "87094", "postId": "77387", "score": "0", "text": "I am logged in as a user. The problem is that applications that are started within that environment using kdesudo (because the need root privileges) look different (window decorators) than when started without those privileges.", "userDisplayName": null, "userId": "4" }, { "creationDate": "2011-11-09T23:25:57.900", "id": "87372", "postId": "77387", "score": "0", "text": "Ahh .. yes ... that happens ... If you for instance call an application as kdesudo ~ {kdesudo synaptic} it will run as the un-styled root account. However, if you just run synaptic and then run as sudo it will retain the kde profile ...", "userDisplayName": null, "userId": "32986" }, { "creationDate": "2011-12-16T21:35:43.303", "id": "100783", "postId": "77387", "score": "0", "text": "Try this ~ works for me :-)", "userDisplayName": null, "userId": "32986" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-11-09T06:54:34.447", "id": "77387", "lastActivityDate": "2011-12-16T22:04:24.820", "lastEditDate": "2011-12-16T22:04:24.820", "lastEditorDisplayName": null, "lastEditorUserId": "32986", "ownerDisplayName": null, "ownerUserId": "32986", "parentId": "2035", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>This <em>might</em> work. It's a bit manual and you might even need to install it if it doesn't come with the core gnome stuff but there you go.</p>\n\n<pre><code>sudo gnome-theme-manager\n</code></pre>\n\n<p>My basis for this is gnome stores its theme settings in the user's ...
null
null
null
null
null
2038
1
2042
2010-08-12T13:55:04.680
6
3432
<p>In Ubuntu 10.04, when I goto System > Administration > Software Sources and goto the Authentication tab, I can view all of my keys allowing me to download from third party sources.</p> <p>How would I back this up to copy all of my sources and keys to a new system?</p>
1010
333
2010-08-12T15:21:07.667
2010-11-18T17:10:30.057
Backup Software Sources
[ "ppa", "apt", "aptitude", "synaptic", "gnupg" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The method to backup your sources list has <a href=\"https://askubuntu.com/questions/2038/backup-software-sources/2039#2039\">already been described</a> by garbagecollector (also note the additional directory as explained by <a href=\"https://askubuntu.com/questions/2038/backup-software-sources/2043#2043\">Javier Rivera</a>). </p>\n\n<p>To backup the trusted keys added to your system you can use the apt-key command line program. I don't know if there is a way to do this from the GUI.</p>\n\n<p>From a terminal you can run something like this:</p>\n\n<pre><code>sudo apt-key exportall &gt; ~/repositories.key\n</code></pre>\n\n<p>Then on your other system you should be able to import that key file from Software Sources or you can use apt-key again:</p>\n\n<pre><code>sudo apt-key add /path/to/repositories.key\n</code></pre>\n\n<p>I only have one Ubuntu desktop system so I haven't tested this out, but I think it should work.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-12T14:19:59.143", "id": "2042", "lastActivityDate": "2010-08-12T22:47:11.857", "lastEditDate": "2017-04-12T07:23:19.023", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "453", "parentId": "2038", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>I believe this would help backing up your sources.</p>\n\n<pre><code>sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup\n</code></pre>\n\n<p>Then do the reverse when you are your new system.</p>\n\n<p>Maybe also try this <a href=\"http://www.le-web.org/back-in-time/\"...
null
null
null
null
null
2045
1
2046
2010-08-12T14:53:14.897
53
80545
<p>I was wondering how do you know where the largest files in my system are stored.</p> <p>For example---</p> <p>Disk Space Used: 1GB Java: 500MB Java Percentage: 50% maybe represented in a pie chart. Maybe?</p> <p>I know this maybe a feature overkill. I sometimes forget having stored things and wonder why my disk is so full. </p> <p>So basically a command that will allow me to run on the file system and provide me with information on disk space used.</p> <p>Please and thank you.</p>
333
4
2010-08-12T15:07:57.077
2018-07-05T21:59:58.637
How to determine where biggest files/directories on my system are stored?
[ "filesystem", "disk", "memory", "command-line" ]
7
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The Disk Usage Analyzer is available under Ubuntu > Accessories > Disk Usage Analyzer. It provides you with a snazzy pie graph showing what files and folders take up the most space:</p>\n\n<p><img src=\"https://i.stack.imgur.com/C9Ro1.png\" alt=\"enter image description here\"></p>\n\n<p>The documentation on it is a little sparse, but you can find more information on <a href=\"https://help.ubuntu.com/community/Baobab\" rel=\"noreferrer\">the Ubuntu wiki</a>, and the <a href=\"http://www.marzocca.net/linux/baobab/\" rel=\"noreferrer\">project page</a>.</p>\n\n<p>If you're interested in using the command line, there's <code>du</code> which is described <a href=\"https://askubuntu.com/q/1224\">here</a>.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2012-11-14T15:26:10.093", "id": "268761", "postId": "2046", "score": "1", "text": "Mmm. Delicious pie...", "userDisplayName": null, "userId": "252" }, { "creationDate": "2014-12-05T15:58:54.867", "id": "765305", "postId": "2046", "score": "0", "text": "Disk Usage Analyzer does not show individual files, only directories. It is very difficult to analyze a directory without this information, so it is actually of little use.", "userDisplayName": null, "userId": "204815" }, { "creationDate": "2014-12-07T16:01:54.690", "id": "766353", "postId": "2046", "score": "0", "text": "Using this to find problem directories, it's fairly easy to ls -l that directory to look for large files.", "userDisplayName": null, "userId": "355581" }, { "creationDate": "2019-10-17T18:10:08.713", "id": "1974015", "postId": "2046", "score": "1", "text": "`sudo apt install baobab` for other *ubuntu systems.", "userDisplayName": null, "userId": "214597" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-12T15:00:30.340", "id": "2046", "lastActivityDate": "2014-03-16T16:27:54.213", "lastEditDate": "2017-04-13T12:23:41.140", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "252", "parentId": "2045", "postTypeId": "2", "score": "57" }
[ { "accepted": true, "body": "<p>The Disk Usage Analyzer is available under Ubuntu > Accessories > Disk Usage Analyzer. It provides you with a snazzy pie graph showing what files and folders take up the most space:</p>\n\n<p><img src=\"https://i.stack.imgur.com/C9Ro1.png\" alt=\"enter image description here\...
null
null
null
null
null
2048
1
2051
2010-08-12T15:03:03.470
2
495
<p>Does it make sense to run a cloud on only one server? If so what are the benefits? Are there any nice tools managing my VMs (apart from virt-manager) even if I do not use the EC2 cloud?</p>
4
null
null
2010-10-15T05:16:08.130
What is the difference between running VMs and a Ubuntu EC2 cloud?
[ "cloud", "virtualization" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I run several kvm virtual machines on a couple of the servers that I'm responsible for at one of my places of work. I chose to set them up this way for a couple of reasons. </p>\n\n<p>The configuration of each guest server is focused on the task assigned to it. I've set up one for internal websites, another for handling Samba shares, etc.) This also means I can make changes with one set of services without affecting the others.</p>\n\n<p>In theory, I can move the virtual machine from one physical system to another without making a lot of changes. (I haven't ended up doing this much because the servers I have aren't currently running the same architecture.)</p>\n\n<p>And, it is really easy to setup new virtual machines for trying out new configurations using the <a href=\"https://launchpad.net/vmbuilder\" rel=\"nofollow\">Virtual Machine Builder</a>.</p>\n\n<p>I don't know much about other tools for managing the virtual machines because I only use the <a href=\"http://manpages.ubuntu.com/manpages/lucid/en/man1/vmbuilder.1.html\" rel=\"nofollow\">vmbuilder</a> and <a href=\"http://manpages.ubuntu.com/manpages/lucid/en/man1/virsh.1.html\" rel=\"nofollow\">virsh</a> command line tools which work well for my admittedly basic requirements.</p>\n\n<p>Update: I might have misunderstood the question. My setup is just kvm virtual machines on individual servers, there is no \"<a href=\"http://www.ubuntu.com/cloud\" rel=\"nofollow\">cloud</a>\" in the Ubuntu Enterprise Cloud or Amazon EC2 sense.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-12T15:31:58.393", "id": "2051", "lastActivityDate": "2010-10-15T05:16:08.130", "lastEditDate": "2010-10-15T05:16:08.130", "lastEditorDisplayName": null, "lastEditorUserId": "453", "ownerDisplayName": null, "ownerUserId": "453", "parentId": "2048", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>As <a href=\"https://askubuntu.com/questions/1541/is-there-any-advantage-to-setting-up-a-personal-cloud-instead-of-running-a-person/1550#1550\">I said in another thread</a>, when you're dealing with a single computer, can't really do \"cloud\" computing because at its core, c...
null
null
null
null
null