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
17012
1
17013
2010-12-11T22:41:22.500
240
226408
<p>Is it possible to get a list of packages that were most recently installed through apt-get?</p>
2331
null
null
2024-01-24T20:01:37.953
Is it possible to get a list of most recently installed packages?
[ "package-management", "apt" ]
9
8
CC BY-SA 2.5
[ { "creationDate": "2015-11-05T21:41:12.647", "id": "1015165", "postId": "17012", "score": "1", "text": "http://serverfault.com/questions/175504/how-do-i-get-the-history-of-apt-get-install-on-ubuntu", "userDisplayName": null, "userId": "52975" }, { "creationDate": "2016-04-02T10:4...
{ "accepted": true, "body": "<p>Command to list recently installed packages that were installed via any method (<code>apt-get</code>, Software Center et al.): </p>\n\n<pre><code>grep \" install \" /var/log/dpkg.log\n</code></pre>\n\n<p><strong>Example output:</strong></p>\n\n<pre><code>2010-12-08 15:48:14 install python-testtools &lt;none&gt; 0.9.2-1\n2010-12-08 15:48:16 install quickly-widgets &lt;none&gt; 10.09\n2010-12-08 22:21:31 install libobasis3.3-sdk &lt;none&gt; 3.3.0-17\n2010-12-09 12:00:24 install mc &lt;none&gt; 3:4.7.0.6-1\n2010-12-09 23:32:06 install oggconvert &lt;none&gt; 0.3.3-1ubuntu1\n2010-12-09 23:34:50 install mpg123 &lt;none&gt; 1.12.1-3ubuntu1\n2010-12-09 23:34:52 install dir2ogg &lt;none&gt; 0.11.8-1\n2010-12-09 23:34:53 install faad &lt;none&gt; 2.7-4\n2010-12-09 23:34:54 install wavpack &lt;none&gt; 4.60.1-1\n2010-12-10 11:53:00 install playonlinux &lt;none&gt; 3.8.6\n</code></pre>\n\n<hr>\n\n<p>You could run this command to list only the recently installed package names,</p>\n\n<pre><code>awk '$3~/^install$/ {print $4;}' /var/log/dpkg.log\n</code></pre>\n\n<p>Command to list history of <code>apt-get</code> (NOTE: this doesn't list dependencies installed, it simply lists previous <code>apt-get</code> commands that were run):</p>\n\n<pre><code>grep \" install \" /var/log/apt/history.log\n</code></pre>\n\n<p><strong>Example output:</strong></p>\n\n<pre><code>Commandline: apt-get install libindicate-doc\nCommandline: apt-get install googlecl\nCommandline: apt-get --reinstall install ttf-mscorefonts-installer\nCommandline: apt-get install valac libvala-0.10-dev\nCommandline: apt-get install libgtksourceview-dev\nCommandline: apt-get install python-sphinx\nCommandline: apt-get install python-epydoc\nCommandline: apt-get install quickly-widgets\nCommandline: apt-get install libreoffice3* libobasis3.3*\nCommandline: apt-get install mc\n</code></pre>\n", "commentCount": "12", "comments": [ { "creationDate": "2010-12-12T14:36:47.180", "id": "18270", "postId": "17013", "score": "0", "text": "the problem with synaptic is that it doesn't show what you do with aptitude, apt-get and dpkg, for this reason +1 for this option", "userDisplayName": null, "userId": "3550" }, { "creationDate": "2012-12-07T18:19:43.773", "id": "279750", "postId": "17013", "score": "0", "text": "This command will not show updates. Use the software center to see everything.", "userDisplayName": null, "userId": "5326" }, { "creationDate": "2013-10-16T02:08:25.837", "id": "460607", "postId": "17013", "score": "1", "text": "It might be better to to save a text file like this `cat /var/log/apt/history.log | grep \"\\ install\\ \" > install.log`", "userDisplayName": null, "userId": "112263" }, { "creationDate": "2014-09-10T22:54:27.557", "id": "711002", "postId": "17013", "score": "6", "text": "`grep \" install \" /var/log/dpkg.log` will suffice. There's no need to use `cat`. See also [this](http://en.wikipedia.org/wiki/Cat_%28Unix%29#Useless_use_of_cat).", "userDisplayName": null, "userId": "325662" }, { "creationDate": "2014-09-25T18:55:47.783", "id": "720980", "postId": "17013", "score": "2", "text": "note that this seems only to find packages which were newly installed. Packages for which a new version was installed appear as `upgrade` in `dpkg.log`", "userDisplayName": null, "userId": "21435" }, { "creationDate": "2014-11-04T21:53:21.363", "id": "747776", "postId": "17013", "score": "0", "text": "This is great, I used it with the \"remove\" string to get a list of recently unistalled packages!", "userDisplayName": null, "userId": "9942" }, { "creationDate": "2016-01-14T19:45:28.927", "id": "1065880", "postId": "17013", "score": "0", "text": "\"installed\" seems to show both upgraded and installed.", "userDisplayName": null, "userId": "128587" }, { "creationDate": "2016-07-17T16:59:29.840", "id": "1206000", "postId": "17013", "score": "0", "text": "Why does this only show packages from the last two weeks?", "userDisplayName": null, "userId": "463546" }, { "creationDate": "2016-10-21T18:53:13.513", "id": "1285674", "postId": "17013", "score": "0", "text": "@AleksandrDubinsky there is log rotate in some cases. So older log may be \"dpkg.log.1\" and even older are compressed into \"dpkg.2.gz\". Here is a better version of this answer using zgrep to quickly look inside `.gz` compressed log then order the output oldest to newest:`zgrep -sh . /var/log/dpkg.log{.[0-9]{.gz,},} | awk '$3~/^install$/ {print $1\" \"$2\" \"$4;}'`", "userDisplayName": null, "userId": "447632" }, { "creationDate": "2018-01-12T19:29:47.250", "id": "1606856", "postId": "17013", "score": "1", "text": "And a better version: `zgrep \" install \" /var/log/dpkg.log*`", "userDisplayName": null, "userId": "334636" }, { "creationDate": "2019-03-01T14:50:36.857", "id": "1855826", "postId": "17013", "score": "0", "text": "doesn't return anything for me, do you have idea why (it isn't that I didn't installed anything of course ;))", "userDisplayName": null, "userId": "164370" }, { "creationDate": "2021-06-13T16:39:27.760", "id": "2299195", "postId": "17013", "score": "0", "text": "It may be under dpkg.log.{n}", "userDisplayName": null, "userId": "1325488" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-11T22:45:37.947", "id": "17013", "lastActivityDate": "2016-07-16T13:51:34.700", "lastEditDate": "2016-07-16T13:51:34.700", "lastEditorDisplayName": null, "lastEditorUserId": "216503", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "17012", "postTypeId": "2", "score": "276" }
[ { "accepted": true, "body": "<p>Command to list recently installed packages that were installed via any method (<code>apt-get</code>, Software Center et al.): </p>\n\n<pre><code>grep \" install \" /var/log/dpkg.log\n</code></pre>\n\n<p><strong>Example output:</strong></p>\n\n<pre><code>2010-12-08 15:48:14 ...
null
null
null
null
null
17017
1
17019
2010-12-11T23:14:58.863
4
4434
<p>The IPV6 protocol has a feature called "Extended Unique Identifier" or EUI-64 witch in short uses the MAC address of the network card when choosing an IPV6 Adress.</p> <p>Proof: <a href="http://www.youtube.com/watch?v=30CnqRK0GHE&amp;NR=1" rel="nofollow">http://www.youtube.com/watch?v=30CnqRK0GHE&amp;NR=1</a> at 7:36 video time.</p> <p>If you want to be anonymous on the internet (so that nobody can find you when you download something, etc.) you need this EUI-64 to be bipassed in order for the MAC address not to be discovered by harmful third parties on the internet and for privacy.</p> <p>How do you avoid EUI-64 MAC address usage in IPV6 selection in Ubuntu? Also for DHCP IPV6?</p>
4782
3037
2011-01-03T21:40:41.003
2011-07-08T04:36:49.117
How to be anonymous on IPV6 protocol by not using MAC address in EUI-64?
[ "ipv6", "privacy" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2021-11-12T23:33:38.870", "id": "2367275", "postId": "17017", "score": "0", "text": "`witch` should be `which`, `bipassed` should be `bypassed`", "userDisplayName": null, "userId": "955434" } ]
{ "accepted": true, "body": "<p>Omitting the MAC address improves your privacy, but it doesn't \"make you anonymous\". Every (IPv4 or IPv6) network still has a unique prefix, otherwise you wouldn't be able to receive any packets.</p>\n\n<p>In any case, this site shows how to enable the randomized suffix:\n<a href=\"http://otrs.menandmice.com/otrs/public.pl?Action=PublicFAQ&amp;ItemID=91\">http://otrs.menandmice.com/otrs/public.pl?Action=PublicFAQ&amp;ItemID=91</a></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-10T04:14:11.970", "id": "27990", "postId": "17019", "score": "0", "text": "Just to \"round out\" this question, would using a spoofed MAC (ifconfig hw ether on NICs that support it for example) along with the rfc4941 extensions enabled further improve privacy or does the IPv6 stack still create the address using the actual NIC's MAC instead of the spoofed one?", "userDisplayName": null, "userId": "10458" }, { "creationDate": "2011-07-08T04:34:00.807", "id": "58396", "postId": "17019", "score": "2", "text": "@bumbling fool It wouldn't increase privacy. Computers outside your LAN never see your MAC (unless it is part of your IP address). MAC addresses are like a computer's name. If you are in a room and someone says your name, it gets your attention and you listen. Computers on a LAN listen for packets with their name and usually ignore the rest. As soon as your traffic is routed (like a person standing in a doorway and passing on a message) your MAC is replaced by the router's MAC and your IP address is used to tell where the traffic should go. MAC spoofing is for being \"anonymous\" on a LAN only.", "userDisplayName": null, "userId": "9308" }, { "creationDate": "2017-02-18T17:16:35.140", "id": "1380808", "postId": "17019", "score": "0", "text": "Your answer is *missing the answer*. (i.e. a link-only)", "userDisplayName": null, "userId": "87630" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-11T23:31:44.100", "id": "17019", "lastActivityDate": "2010-12-11T23:31:44.100", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7210", "parentId": "17017", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Omitting the MAC address improves your privacy, but it doesn't \"make you anonymous\". Every (IPv4 or IPv6) network still has a unique prefix, otherwise you wouldn't be able to receive any packets.</p>\n\n<p>In any case, this site shows how to enable the randomized suffix:\n...
null
null
null
null
null
17020
1
null
2010-12-12T00:37:27.077
1
2973
<p>I installed ubuntu 10.10 netbook edition on acer aspire one happy. I tried to change the visual effects however it won't let me. It says Mutter is running, can't switch to other effects. I'd like to know how I can switch to other effects. Thank you from now.</p>
null
235
2010-12-12T05:20:07.410
2011-03-31T16:05:04.293
Can't change Visual Effects when running Unity
[ "10.10", "unity", "ubuntu-netbook", "compiz" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The \"Visual Effects\" configuration is based on Compiz, while the default Unity user interface in Ubuntu 10.10 Netbook Edition uses Mutter. If you want the regular effects in Ubuntu 10.10, you will have to run the Desktop session (you can select it from the login screen).</...
null
null
null
null
Menekse Kardes
17027
1
17028
2010-12-12T02:10:37.177
0
111
<p>I am about to install Ubuntu on VMWare (my host PC is Windows 7). Are there any tutorials (Step - by - Step) that I can look into.</p>
7215
235
2010-12-12T05:20:58.423
2010-12-12T05:20:58.423
How do I install 9.04 in VMWare?
[ "server", "installation", "windows-7", "vmware", "9.04" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Not really, I mean there probably are, but Ubuntu's pretty easy to setup. The oldest version I ever setup was 6.10, and it was pretty much the same as 10.10 was two months ago.</p>\n\n<p>It's really easy. Just follow the prompts. (Unless you mean the VMWare part, that's also easy, just load the iso file and say boot)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-12T02:24:59.130", "id": "18197", "postId": "17028", "score": "0", "text": "Phew! That easy? I will give it a try, if I run into some problems...I will always come back here. Better still, I will post a How - To series.", "userDisplayName": null, "userId": "7215" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T02:15:40.620", "id": "17028", "lastActivityDate": "2010-12-12T02:15:40.620", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6647", "parentId": "17027", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Not really, I mean there probably are, but Ubuntu's pretty easy to setup. The oldest version I ever setup was 6.10, and it was pretty much the same as 10.10 was two months ago.</p>\n\n<p>It's really easy. Just follow the prompts. (Unless you mean the VMWare part, that's also ...
null
null
null
null
null
17030
1
17032
2010-12-12T02:37:20.180
3
1049
<p>Any idea why the desktop launcher "gnome-terminal -x byobu" doesn't read my ~/.byobu/windows.ssh_sessions?</p> <p>Here's my ~/.byobu/windows.ssh_sessions file I use with byobu successfully:</p> <pre><code>screen -t Ubu-MySQL ssh master@192.168.1.3 screen -t Ubu-alfresco ssh master@192.168.1.4 screen -t Ubu-Master ssh master@192.168.1.5 screen -t Ubu-zimbra ssh master@192.168.1.6 screen -t Ubu-SugarCRM ssh master@192.168.1.7 screen -t Ubu-eFront ssh master@192.168.1.8 </code></pre> <p>and here's the variable entry from my .bashrc:</p> <pre><code>export BYOBU_WINDOWS=/home/jj/.byobu/windows.ssh_sessions byobu </code></pre> <p>I tried it in .profile also, no love. </p> <p>Thanks for your time.</p>
6738
null
null
2012-02-18T22:54:54.417
desktop byobu launcher doesn't read my ~/.byobu/windows.ssh_sessions file
[ "gnome-terminal", "byobu" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T03:43:24.227", "id": "18207", "postId": "17030", "score": "0", "text": "Hrm.. Fixed. I ran byobu-launcher and setup some new windows. Then made a .sh script with byobu-launcher in it. chmod 700 (and a she-bang! of course)scr", "userDisplayName": null, "userI...
{ "accepted": true, "body": "<p>I believe that you're supposed to start byobu by running <code>byobu-launcher</code>, which handles all the setup details and config files.</p>\n\n<p>Edit: You are setting an environment variable in <code>.bashrc</code>, which means it will only be set in bash. Running byobu directly from gnome-terminal means that bash is not involved. Putting the environment variable in <code>.profile</code> should make it session-wide, but you would have to log out and back in for it to take effect.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-12T03:23:19.533", "id": "18202", "postId": "17032", "score": "0", "text": "Thanks for the clue, but neither \"gnome-terminal -x byobu-launcher\" or just \"byobu-launcher\" from the desktop icon is reading the windows.ssh_sessions file. I even tried \"gnome-terminal -x byobu-launcher -c ~/.byobu/windows.ssh_sessions\". No love. Thanks.", "userDisplayName": null, "userId": "6738" }, { "creationDate": "2010-12-12T04:13:08.287", "id": "18218", "postId": "17032", "score": "0", "text": "Thanks Ryan, +1 for the clue. Exact instructions are at http://ubuntuforums.org/showthread.php?p=10228516#post10228516", "userDisplayName": null, "userId": "6738" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T02:58:19.227", "id": "17032", "lastActivityDate": "2010-12-12T11:02:50.697", "lastEditDate": "2010-12-12T11:02:50.697", "lastEditorDisplayName": null, "lastEditorUserId": "880", "ownerDisplayName": null, "ownerUserId": "880", "parentId": "17030", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I believe that you're supposed to start byobu by running <code>byobu-launcher</code>, which handles all the setup details and config files.</p>\n\n<p>Edit: You are setting an environment variable in <code>.bashrc</code>, which means it will only be set in bash. Running byobu ...
null
null
null
null
null
17031
1
17036
2010-12-12T02:55:59.460
19
30225
<p>I have a PDF file, and I'd like to comment in adobe style. Is there a way to enable that somehow, or are there any alternatives?</p>
6681
169736
2014-07-23T13:07:55.450
2016-05-04T08:30:30.010
Is there a way to enable commenting adobe PDF?
[ "adobe-reader" ]
8
3
CC BY-SA 3.0
[ { "creationDate": "2010-12-12T03:36:55.793", "id": "18205", "postId": "17031", "score": "2", "text": "You need Acrobat,then open the PDF and choose Comments>>Enable For Commenting And Analysis In Adobe Reader.", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010...
{ "accepted": true, "body": "<p>There is a feature to add annotations using the default gnome evince, but the tool doesn't have the feature switched on in Ubuntu 10.10, so you have a choice between:</p>\n\n<p><code>pdfedit</code> - Dedicated tool for editing pdf files.</p>\n\n<p><code>flpsed</code> - Useful, but not as polished.</p>\n\n<p><code>inkscape</code> - Importing the pdf, adding your visible notes and exporting back to pdf, downside is, they're not real pdf notes.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2016-06-15T15:16:19.477", "id": "1182179", "postId": "17036", "score": "0", "text": "OP asked for \"comment in adobe style\" so that means Adobe compatible comments. So inkscape comments are not adobe style and evince is not either. Is either pdfedit or flpsed commenting mechanisms \"adobe style\"?", "userDisplayName": null, "userId": "14413" }, { "creationDate": "2016-06-19T18:48:04.363", "id": "1185368", "postId": "17036", "score": "0", "text": "Then the answer must be: That's impossible until Adobe stops being obstructionist to Linux and provides versions of their software. Otherwise we have no choice but to develop our own style.", "userDisplayName": null, "userId": "132" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T03:56:42.880", "id": "17036", "lastActivityDate": "2010-12-12T03:56:42.880", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "17031", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>There is a feature to add annotations using the default gnome evince, but the tool doesn't have the feature switched on in Ubuntu 10.10, so you have a choice between:</p>\n\n<p><code>pdfedit</code> - Dedicated tool for editing pdf files.</p>\n\n<p><code>flpsed</code> - Useful...
null
null
null
null
null
17035
1
null
2010-12-12T03:54:25.500
3
8430
<p>Due to various reasons, I have my main monitor set as the secondary display in <code>xorg.conf</code>. I would like to have gnome initialize <code>metacity</code>, <code>gnome-panel</code> as running primarily on <code>:0.1</code>, instead of <code>:0.0</code>. Is this possible at all?</p> <p>To clarify, this is a laptop with its LCD turned off. My main monitor is connected to the VGA out and is driven by the <code>nouveau</code> driver for NVIDIA; a secondary monitor is on a displaylink usb-vga donverter. The seconday monitor is set in <code>xorg.conf</code> as the primary display (no way around it).</p> <p>I can do things like <code>DISPLAY=:0.1 gnome-terminal</code> to run applications on the main monitor. My question is whether it is possible to do this (GNOME-) system-wide.</p>
1725
1725
2010-12-12T06:29:21.387
2011-03-08T01:27:14.670
How can I set a second screen (DISPLAY=:0.1) as the default gnome display?
[ "gnome", "xorg", "gnome-panel", "metacity" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T03:59:16.693", "id": "18212", "postId": "17035", "score": "0", "text": "Disable the built-in lcd", "userDisplayName": null, "userId": "5691" } ]
null
[ { "accepted": null, "body": "<p>Maybe the following thread is a partial solution (at least for the panels): <a href=\"http://www.uluga.ubuntuforums.org/showthread.php?t=1114767\" rel=\"nofollow\">http://www.uluga.ubuntuforums.org/showthread.php?t=1114767</a></p>\n", "commentCount": "0", "comments": ...
null
null
null
null
null
17039
1
null
2010-12-12T04:07:50.710
2
294
<p>I have been looking for a couple of years for a clean, usable On Screen Keyboard for touchscreen interfaces for Ubuntu, and most have fallen short. With the increase interest in tablets and netbooks, is a project for improvement on your radar?</p>
null
34576
2012-10-28T01:11:40.893
2013-02-27T07:34:03.600
Will there be a focus on creating a dockable On Screen Keyboard for Unity?
[ "unity", "multi-touch", "tablet", "ubuntu-touch" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T07:04:57.450", "id": "18236", "postId": "17039", "score": "0", "text": "whats wrong with the gnome one?", "userDisplayName": null, "userId": "5691" } ]
null
[ { "accepted": null, "body": "<p>During the Gnome 2010 Boston summit there was a whole session dedicated to producing a replacement for the gnome onscreen keyboard (gok).</p>\n\n<p><a href=\"http://live.gnome.org/Caribou\" rel=\"nofollow\">http://live.gnome.org/Caribou</a></p>\n\n<p>Ted Gould from Canonical'...
null
null
null
null
James Haner
17042
1
null
2010-12-12T04:37:37.697
2
604
<p>When I go to the Places menu and click on home or any other folder except Network, I get Error File not found popup box.</p> <p>I can open these folder from short cuts on the desktop and they work fine.</p> <p>I have tried changing the file association to File Browser or Nautalus as suggested on the ubuntu forums. They appears to have worked for other people but does not work for me.</p> <p>I'm running ubuntu 10.04</p> <p>How do I fix my Places menu folders?</p>
7217
235
2010-12-12T05:18:24.290
2012-12-18T06:18:21.830
File not found in places menu
[ "10.04", "nautilus", "places" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I fixed it.</p>\n\n<ol>\n<li>Install Ubuntu Tweak</li>\n<li>Run Ubuntu Tweak</li>\n<li>Navigate to System File Type Manager</li>\n<li>Select All</li>\n<li>Double click on Folder</li>\n<li>Select Nautalus</li>\n</ol>\n\n<p>The problem was Folder was assigned to wine and not th...
null
null
null
null
null
17043
1
17368
2010-12-12T04:38:27.213
4
992
<p>I like Ubuntu (on a server as well as on a client) and Debian and am interested in getting Ubuntu/Debian-related job. So I look forward to get certified to enrich my CV.</p> <p>But the options I've found in <a href="http://shop.canonical.com/index.php?cPath=21" rel="nofollow">Canonical eShop</a> are too expensive for me, the most interesting one "Deploying Ubuntu Server Edition" even costs £1010.54 - an enormous price for me (it's near my half-year income, as I am a sysadmin freelancer in an East European country).</p> <p>Are there cheaper ways to get certified? I can hardly invest more than €100 in this, but have got some experience already and supposedly can prepare myself. I'd prefer a 100% on-line way.</p>
2390
169736
2014-07-21T02:06:55.797
2014-07-21T02:06:55.797
Are there affordable and recognised Ubuntu/Debian online certification courses/exams?
[ "certification" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T07:01:54.287", "id": "18235", "postId": "17043", "score": "1", "text": "I fear you're out of luck...", "userDisplayName": null, "userId": "935" } ]
{ "accepted": true, "body": "<p>If you have the opportunity to travel to conferences, occasionally <a href=\"http://www.lpi.org/\" rel=\"nofollow\">Linux Professional Institute</a> will offer their most basic exam on site, for free. It is a first step towards full certification. Since the Ubuntu certification is based on the LPI, it may be possible for you to take several exams spread out over time to decrease the impact on your finances. </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T16:51:59.197", "id": "17368", "lastActivityDate": "2010-12-14T16:51:59.197", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2059", "parentId": "17043", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>If you have the opportunity to travel to conferences, occasionally <a href=\"http://www.lpi.org/\" rel=\"nofollow\">Linux Professional Institute</a> will offer their most basic exam on site, for free. It is a first step towards full certification. Since the Ubuntu certificat...
null
null
null
null
null
17044
1
null
2010-12-12T04:44:07.887
3
2807
<p>I just recently upgraded from 10.04 to 10.10 using the update manager tool.</p> <p>After the upgrade, I was asked to reboot and it fails with</p> <blockquote> <p>An error occurred while mounting /media/psf Press S to skip mounting or M for manual recovery</p> </blockquote> <p>Skipping gives me this:</p> <p><img src="https://i.stack.imgur.com/SJaWW.jpg" alt="alt text"></p> <p>Logging in with the command line prompt doesn't bring me to the UI, but stays in terminal mode. I would appreciate next steps to resolving this situation.</p> <p>I am running Ubuntu on a Parallels 5 VM.</p> <p>A reboot using recovery mode ends the same way but with this screen I also ran into a mention of mountall having an error, but I'm having trouble replicating the screen at the moment:</p> <p><img src="https://i.stack.imgur.com/9Ebkq.jpg" alt="alt text"></p>
7218
235
2010-12-12T05:30:19.470
2012-01-02T00:25:34.927
Upgrading to 10.10 causes mountall error in Parallels
[ "10.10", "boot", "upgrade", "parallels" ]
2
5
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T04:44:41.287", "id": "18225", "postId": "17044", "score": "0", "text": "A reboot using recovery mode ends the same way but with this [screen](http://i52.tinypic.com/24gna07.jpg)\n\nI also ran into a mention of mountall having an error, but I'm having trouble replica...
null
[ { "accepted": null, "body": "<p>I found a solution that worked for me. Try uninstalling parallels tools from your VM. To do this select the 'Virtual machine' menu item in parallels when your VM is running, select 'Reinstall Parallels Tools'. When the ISO mounts run the install script and select the remove o...
null
null
2012-02-02T23:54:33.910
null
null
17047
1
17089
2010-12-12T05:10:00.683
30
16810
<p>I've noticed this situation several times (but I'm not sure if it is always the same command). </p> <p>I don't even know how to describe the lead-up to this situation, unless it is because of a detached script I've been testing which hasn't terminated properly... </p> <p>The best I can do is present this image of <code>htop</code> (Tree view)... I've only shown the first few. There is a total of 63 subordinate entries (plus the 1 parent)... and t hey just sit there! </p> <p>I'd like to know what is going on?... and is the "64" some kind of limit? </p> <p>Whatever the case, it just seems bizzare to have 64 threads/processes "running" </p> <p><strong>Update:</strong><br> I've just rebooted the system, and this time, the first thing I did was to check <code>htop</code>...<br> <strong>console-kit-daemon</strong> shows 63 threads... so It looks like this may be a normal situation... It still seems a bit strange to me... Does anyone know why there are so many threads for <strong>console-kit-daemon</strong> ?</p> <hr> <p><img src="https://i.stack.imgur.com/ZKvAw.png" alt="alt text"></p>
2670
2670
2010-12-12T12:51:55.577
2010-12-12T15:44:52.490
In htop, I sometimes see lists of 64 processes, identical for all but the PID. What are they?
[ "process" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2016-09-18T07:48:08.523", "id": "1256402", "postId": "17047", "score": "0", "text": "http://unix.stackexchange.com/questions/10362/why-does-htop-show-more-process-than-ps", "userDisplayName": null, "userId": "52975" } ]
{ "accepted": true, "body": "<p>The 60+ threads is a <a href=\"https://bugs.launchpad.net/ubuntu/+source/consolekit/+bug/148454\" rel=\"noreferrer\">bug<img src=\"https://i.stack.imgur.com/qXheB.png\" alt=\"alt text\"></a> with <a href=\"http://www.freedesktop.org/wiki/Software/ConsoleKit\" rel=\"noreferrer\">ConsoleKit</a>. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-12T20:01:46.413", "id": "18310", "postId": "17089", "score": "4", "text": "Thanks DoR... This has solved the \"puzzle\"... On the bug page, someone suggested to change htop's **settings** to not \"display userland threads\". I tried it, and it turns out to be the same setting as pressing **H**... However, because of this, I've now become aware of some of htop's useful settings; eg. Showing threads in a different colour... Highlighting the basename... and I see that **kernel threads** can be toggled on/off too... So, as well as learning about *console-kit-daemon's* unusual behavioue, this new insight into *htop* is a bonus :)", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2018-08-15T20:15:58.610", "id": "1745959", "postId": "17089", "score": "0", "text": "@Peter.O thank you! didn't know pressing `H` hides the userland threads", "userDisplayName": null, "userId": "70023" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T15:44:52.490", "id": "17089", "lastActivityDate": "2010-12-12T15:44:52.490", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "114", "parentId": "17047", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Those are user threads (as opposed to processes), and you can hide them using the 'H' toggle in htop. See this explanation in its man page:</p>\n\n<blockquote>\n <p>H Hide user threads: on systems\n that represent them differently than\n ordinary processes (such...
null
null
null
null
null
17052
1
17053
2010-12-12T07:44:47.330
4
1587
<p>What are the pros and cons of </p> <ul> <li>dpkg</li> <li>APT</li> <li>aptitude</li> <li>Ubuntu software centre</li> <li>synaptic package manager</li> </ul> <p>when used to install, remove and update software?</p>
null
null
2011-05-23T15:58:12.017
2011-05-23T15:58:12.017
Comparison of dpkg/APT/aptitude/Ubuntu software centre/synaptic package manager
[ "installation", "package-management", "uninstall" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<ul>\n<li>dpkg is tool to install/remove/configure... only a sigle package</li>\n<li>apt and aptitude are tools for working with software repositories -- they can download packages from them, solve dependecies, calculate updates etc. they're using dpkg to install/configure packages (there are some differences between apt and aptitude, but in general, they are doing the same)</li>\n<li>Synaptic is simple GUI for apt</li>\n<li>Software Center is also GUI for apt (I think it's using python-apt) and it's much more \"user friendly\" than Synaptic</li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T08:06:08.500", "id": "17053", "lastActivityDate": "2010-12-12T08:06:08.500", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6861", "parentId": "17052", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<ul>\n<li>dpkg is tool to install/remove/configure... only a sigle package</li>\n<li>apt and aptitude are tools for working with software repositories -- they can download packages from them, solve dependecies, calculate updates etc. they're using dpkg to install/configure packa...
null
null
null
user7182
user7182
17054
1
17069
2010-12-12T08:11:30.760
3
913
<p>On Asus EEE PC 1005PX, the mouse buttons are pretty stiff. So, I want to use the <code>windows</code> key and the <code>menu</code> key on the keyboard as <code>left</code> and <code>right</code> mouse buttons respectively. Is it possible to achieve this?</p>
2968
3037
2010-12-12T14:58:08.957
2015-12-16T06:55:58.767
How to use keyboard keys as mouse buttons?
[ "keyboard", "mouse" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li><p>Yes you can, Install <a href=\"http://packages.ubuntu.com/btnx\" rel=\"nofollow noreferrer\">btnx</a> <a href=\"http://apt.ubuntu.com/p/btnx\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install btnx\"></a></p></li>\n<li><p>After installation it will be found under <strong>Application>>System Tools</strong> </p></li>\n</ul>\n\n<p><img src=\"https://i.stack.imgur.com/A0ECK.png\" alt=\"alt text\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2013-11-08T17:19:09.303", "id": "476936", "postId": "17069", "score": "0", "text": "btnx wasn't available to me but I found a way in Ubuntu12 with http://askubuntu.com/questions/372526/how-can-i-use-my-keyboard-as-a-mouse", "userDisplayName": null, "userId": "24294" }, { "creationDate": "2014-11-13T16:40:31.043", "id": "752482", "postId": "17069", "score": "0", "text": "why is this accepted if you didn't try it?", "userDisplayName": null, "userId": "14747" }, { "creationDate": "2015-02-21T18:36:32.890", "id": "816433", "postId": "17069", "score": "0", "text": "Seems like btnx is only available for 10.04?", "userDisplayName": null, "userId": "367990" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-12T10:39:48.363", "id": "17069", "lastActivityDate": "2015-12-16T06:55:58.767", "lastEditDate": "2017-03-11T18:59:56.407", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17054", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<ul>\n<li><p>Yes you can, Install <a href=\"http://packages.ubuntu.com/btnx\" rel=\"nofollow noreferrer\">btnx</a> <a href=\"http://apt.ubuntu.com/p/btnx\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install btnx\"></a></p></li>\n<li><p>After...
null
null
null
null
null
17056
1
null
2010-12-12T08:13:58.843
3
2788
<p>I use Ubuntu 10.10. I abused sudo and accidentally overwrote my /bin/bash file via a typo, so I booted to the LiveCD and restored my copy with a "good" one from the Ubuntu 10.10 LiveOS. This did not fix the problem. Explanation: bash no longer works in gnome-terminal.</p> <ul> <li>no longer shows username@computername in prompt, just shows $ sign</li> <li>keyboard shortcuts no longer work- tab, arrow keys, etc. all insert codes now.</li> <li>aliases, also a function of bash, do not work.</li> </ul> <p>Any help on this? Where do I start? I'd rather learn how to fix this instead of just reinstalling the OS. Thanks!</p> <p>I tried to reinstall bash via Terminal with <code>sudo apt-get -f install bash</code> but I can't even get it to install with the -f (force) parameter. I get this error:</p> <pre><code>Errors were encountered while processing: /var/cache/apt/archives/bash_4.1-2ubuntu4_i386.deb E: Sub-process /usr/bin/dpkg returned an error code (1) </code></pre> <p>P.S. Once I get aliases working again, I'm aliasing "cp" to "cp -i" and "mv" to "mv -i".</p>
null
41
2010-12-12T17:31:14.370
2017-02-21T09:32:06.177
Overwrote /bin/bash, after replacing still broken
[ "10.10", "bash", "re-installation" ]
5
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T09:30:44.393", "id": "18244", "postId": "17056", "score": "2", "text": "Open your terminal and type `echo $SHELL` what it says??Also could you post the output of `ls -l ~/.bash*`", "userDisplayName": null, "userId": "5691" } ]
null
[ { "accepted": null, "body": "<ul>\n<li><p>Type <code>reset</code> in your terminal and press Enter. It's a way to reset the tty driver.</p></li>\n<li><p>If that didn't help you, delete bash and then re-install it.</p></li>\n</ul>\n\n<p><strong>Installing BASH:</strong></p>\n\n<ul>\n<li>First delete <code>/b...
null
null
null
null
Slink
17062
1
17066
2010-12-12T10:00:43.467
28
254398
<p>I can navigate my files quite fast through terminal. Faster than double clicking... open... look, double click... etc.</p> <p>How do I open a directory in the Ubuntu GUI? For example:</p> <pre><code>cd projects {some cmd} client_project </code></pre> <p>Then voila, it opens in the Ubuntu GUI as if i navigated manually?</p> <p>Also, how can I open a URL in my default browser via terminal. It'd be awesome to go: <kbd>F12</kbd></p> <pre><code>open http://google.com </code></pre> <p>And Chrome opens it up.</p>
2490
169736
2014-01-08T13:09:15.160
2021-09-07T08:03:16.857
How to open a directory/folder and a URL through Terminal
[ "command-line" ]
7
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><strong>To Open Directory:</strong></p>\n\n<ul>\n<li><p>To open a Folder from terminal type the following, </p>\n\n<pre><code>nautilus /path/to/that/folder\n</code></pre>\n\n<p>or</p>\n\n<pre><code>xdg-open /path/to/the/folder\n</code></pre>\n\n<p>i.e</p>\n\n<pre><code>nautilus /home/karthick/Music\nxdg-open /home/karthick/Music\n</code></pre></li>\n<li><p>Simply typing nautilus will take you file browser,</p>\n\n<pre><code>nautilus\n</code></pre></li>\n</ul>\n\n<p><strong>To Open URL:</strong> </p>\n\n<ul>\n<li><p>You can type any one of the following in terminal, </p>\n\n<pre><code>xdg-open http://google.com \ngoogle-chrome http://google.com \nopera http://google.com\nfirefox http://google.com\n</code></pre></li>\n<li><p>If you want to open two URL's at the same time then leave some space after the first URL and type the second, </p>\n\n<pre><code>firefox www.google.com www.gmail.com\n</code></pre></li>\n</ul>\n\n<p><strong>Note:</strong> </p>\n\n<ul>\n<li>Linux is case-sensitive, so type the file name correctly.</li>\n<li>You can also add an alias to short the command,for example if you need <code>openurl</code> instead of <code>x-www-browser</code> you should edit the .bashrc file<br>\n<code>gedit ~/.bashrc</code></li>\n<li><p>In the bottom of the file add the following lines</p>\n\n<pre><code>alias openurl=x-www-browser\n</code></pre>\n\n<p><img src=\"https://i.stack.imgur.com/KoFdU.png\" alt=\"alt text\"> </p></li>\n<li>Save and close the file. </li>\n<li><p>Now you can open URLs by typing, </p>\n\n<pre><code>openurl http://google.com\n</code></pre></li>\n</ul>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-12-12T13:33:27.520", "id": "18263", "postId": "17066", "score": "3", "text": "xdg-open works for directrories and other files, too", "userDisplayName": null, "userId": "2369" }, { "creationDate": "2010-12-12T13:37:56.037", "id": "18264", "postId": "17066", "score": "0", "text": "@FlorianDiesch forgot to include that,thanks for remembering :)", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010-12-12T18:59:56.853", "id": "18300", "postId": "17066", "score": "1", "text": "It's worth pointing out more gernerally that `xdg-open` should have the same result as clicking on any file in a folder or on your desktop. It should open your file/folder/url with the default application to handle that file type. I have it aliased as `go` in my `~/.bashrc`", "userDisplayName": null, "userId": "570" }, { "creationDate": "2010-12-12T21:39:29.177", "id": "18329", "postId": "17066", "score": "0", "text": "Awesome, thanks a lot. I installed Komodo and it set up `komodo somefile.html` to open files but i didn't see it in the bashrc file. Where else could it be *and* could I change it to `edit somefile.html` but opens in Komodo as if i typed komodo?", "userDisplayName": null, "userId": "2490" }, { "creationDate": "2010-12-12T22:43:45.117", "id": "18340", "postId": "17066", "score": "0", "text": "Well, there's already a `/usr/bin/edit`, so I'd choose something else, but anyways... In `~/.bashrc` add a line that says `alias edit='komodo'`", "userDisplayName": null, "userId": "570" }, { "creationDate": "2010-12-18T03:17:24.983", "id": "19190", "postId": "17066", "score": "0", "text": "Everything worked fine, except, the openurl thing runs chrome in the terminal as well as the GUI. If i close temrinal it shuts off Chrome? Whys that?", "userDisplayName": null, "userId": "2490" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-12T10:20:46.343", "id": "17066", "lastActivityDate": "2017-01-09T06:44:10.573", "lastEditDate": "2017-01-09T06:44:10.573", "lastEditorDisplayName": null, "lastEditorUserId": "158442", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17062", "postTypeId": "2", "score": "48" }
[ { "accepted": null, "body": "<p>You can just call the aplication. Both Nautilus and Chrome accept path (url) as parameter.</p>\n\n<p><code>nautilus /directory/subdirectory/subsubdirectory</code></p>\n\n<p>or</p>\n\n<p><code>cd /directory/subdirectory/subsubdirectory</code> and then <code>nautilus .</code> (...
null
null
null
null
null
17070
1
null
2010-12-12T10:55:53.713
4
419
<p>I thought the daily build on <a href="http://cdimage.ubuntu.com/daily-live/current/" rel="nofollow">http://cdimage.ubuntu.com/daily-live/current/</a> would be updated daily, but the current build is 6 days old. I would love to try out Natty and Compiz Unity on a live USB-drive, but it's not much use if it's not updated.</p> <p>Any reason why the build is so old? Does anybody know when it will be updated again?</p>
839
null
null
2010-12-12T23:02:45.923
Why is Natty's daily live build not updated daily anymore?
[ "unity", "compiz", "11.04", "build" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T13:16:21.853", "id": "18261", "postId": "17070", "score": "0", "text": "Did you check their Launchpad page? Might find a clue there.", "userDisplayName": null, "userId": "3651" } ]
null
[ { "accepted": null, "body": "<p>The developers are currently <a href=\"https://lists.ubuntu.com/archives/ubuntu-devel-announce/2010-December/000795.html\" rel=\"nofollow\">moving the default Python version from 2.6 to 2.7</a>, which involves rebuilding (and sometimes changing) a lot of applications that are...
null
null
null
null
null
17071
1
null
2010-12-12T10:56:19.227
14
16301
<p>Do we know when Adobe release X reader for Ubuntu? It has some good features!</p>
3872
169736
2014-05-04T21:30:24.473
2014-05-04T21:30:24.473
Is Acrobat reader X coming to Ubuntu?
[ "adobe-acrobat" ]
6
7
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T11:02:44.590", "id": "18252", "postId": "17071", "score": "6", "text": "I've found this -- http://forums.adobe.com/thread/753068?tstart=0 -- topic at dobe forum, but there's no answer...", "userDisplayName": null, "userId": "6861" }, { "creationDate"...
null
[ { "accepted": null, "body": "<p>Here is a very nice and fast alternative to Acrobat Reader - FoxitReader for Linux <a href=\"http://www.foxitsoftware.com/pdf/desklinux/\" rel=\"nofollow\">FoxitSoftware PDF Reader web site</a>. I am very glad that Foxit released a reader for Linux platform (I am using this s...
null
null
2014-05-05T22:48:49.507
null
null
17072
1
17073
2010-12-12T11:06:15.567
7
3068
<p>I have several Ubuntu servers. Two of them are working as DNS servers. One of my name servers (let's call it DNS1) went down for maintenance. I sill had another DNS server running (DNS2).</p> <p>All other servers are configured to use the nameservers as follows </p> <p><code>/etc/resolv.conf</code> :</p> <pre><code>nameserver DNS1 nameserver DNS2 </code></pre> <p>I can still resolve DNS names using the DNS2 server, but the name resolution takes a long time. It is clear to me that any given server is first trying to access DNS1, and then it is trying DNS2 after failure.</p> <p>I tried to swap the two lines. The name resolution became too fast.</p> <p>I am wondering if there is a way to dynamically change the <code>resolv.conf</code> file based on the state of the configured nameservers. Of course, I can write a shell script myself to do the job. But I prefer to find a better way if there is one.</p>
5927
8844
2011-03-31T23:29:09.633
2011-03-31T23:29:09.633
Dynamic /etc/resolv.conf file?
[ "server", "dns", "resolv.conf" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>No a direct solution but you can smooth things a little by adding options to your <code>resolv.conf</code> for instance :</p>\n\n<pre><code>nameserver DNS1\nnameserver DNS2\n\noptions rotate\noptions timeout:2\noptions attempts:1\n</code></pre>\n\n<p>the default for <code>timeout</code> is 5 seconds, and default value for <code>attempts</code> is 2.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-12T12:15:53.043", "id": "18255", "postId": "17073", "score": "0", "text": "Glad I could help.", "userDisplayName": null, "userId": "3782" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T11:32:37.823", "id": "17073", "lastActivityDate": "2010-12-12T11:32:37.823", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3782", "parentId": "17072", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>No a direct solution but you can smooth things a little by adding options to your <code>resolv.conf</code> for instance :</p>\n\n<pre><code>nameserver DNS1\nnameserver DNS2\n\noptions rotate\noptions timeout:2\noptions attempts:1\n</code></pre>\n\n<p>the default for <code>tim...
null
null
null
null
null
17074
1
17176
2010-12-12T12:25:07.560
5
3319
<p>Is this a specific unity configuration or a dual monitor configuration problems ?</p> <p><em>In NVIDIA X Server Settings. Make this the primary display for the X screen, is my choice the middle display. But the launcher is on the left display.</em></p>
6415
235
2010-12-12T19:49:02.140
2011-07-03T02:05:41.723
Dual monitor Unity launcher opening on wrong monitor
[ "unity", "nvidia", "11.04", "multiple-monitors", "launcher" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T13:02:24.917", "id": "18256", "postId": "17074", "score": "3", "text": "This sound like a bug, consider reporting it on launchpad. But since unity is still in alpha versions, you should be not surprised it works incorrectly. If I were you I would give it more time a...
{ "accepted": true, "body": "<p>Currently Unity sits itself down at 0,0. Supporting right monitor as primary is simply not implemented yet. It will be by release.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-01T10:56:28.933", "id": "21020", "postId": "17176", "score": "0", "text": "Good news. I have the same issue with dual monitor extended on the left of my notebook.", "userDisplayName": null, "userId": "5955" }, { "creationDate": "2011-05-11T13:44:03.267", "id": "45925", "postId": "17176", "score": "2", "text": "Ok, the release has happened. How come the launcher still doesn't understand it's supposed to be on the left screen?", "userDisplayName": null, "userId": "3515" }, { "creationDate": "2012-02-05T16:28:10.947", "id": "117452", "postId": "17176", "score": "0", "text": "I have this problem in 11.10 too.", "userDisplayName": null, "userId": "29320" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T06:04:30.300", "id": "17176", "lastActivityDate": "2010-12-13T06:04:30.300", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7121", "parentId": "17074", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Currently Unity sits itself down at 0,0. Supporting right monitor as primary is simply not implemented yet. It will be by release.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-01T10:56:28.933", "id": "21020", "pos...
null
null
null
null
null
17075
1
17076
2010-12-12T12:38:14.817
12
18821
<p>So a friend of mine wants to set up a database for managing his investigation data. But he does not know any programming. So i offered a little help but also want to make sure that he could manage his stuff for when I am not around. </p> <p>Basically I am looking for a database application that would be somewhat comparable to microsoft access, meaning i can setup the database and some forms. I know i could set up mysql and http server, but i am looking for a solution that has the most gui possible and is not dependent on servers so he could move the database easily to another workstation.</p> <p>What would you recommend dear ubuntu fellows?</p>
7233
1067
2010-12-12T23:41:36.643
2015-12-16T06:56:36.870
Easy database tool (the more gui the better)
[ "software-recommendation", "gui", "database" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li><p>Install <a href=\"http://packages.ubuntu.com/openoffice.org-base\" rel=\"nofollow noreferrer\"><strong>openoffice.org-base</strong></a> <a href=\"http://apt.ubuntu.com/p/openoffice.org-base\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install openoffice.org-base\"></a></p></li>\n<li><p>After installation it will be found under <strong>Applications>>Office>>OpenOffice.org Database</strong> </p></li>\n</ul>\n\n<p><img src=\"https://i.stack.imgur.com/IEPcB.png\" alt=\"alt text\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-12T13:07:42.293", "id": "18260", "postId": "17076", "score": "0", "text": "@ everybody: more options are ewlcome ;-)", "userDisplayName": null, "userId": "7233" }, { "creationDate": "2010-12-13T00:42:18.327", "id": "18354", "postId": "17076", "score": "1", "text": "LibreOffice is better...", "userDisplayName": null, "userId": "6647" }, { "creationDate": "2015-09-06T18:16:26.490", "id": "969426", "postId": "17076", "score": "0", "text": "I had problems installing it from that site you listed", "userDisplayName": null, "userId": "185480" } ], "communityOwnedDate": "2010-12-12T23:49:16.437", "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-12T12:48:02.100", "id": "17076", "lastActivityDate": "2015-12-16T06:56:23.763", "lastEditDate": "2017-03-11T18:59:56.407", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17075", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<ul>\n<li><p>Install <a href=\"http://packages.ubuntu.com/openoffice.org-base\" rel=\"nofollow noreferrer\"><strong>openoffice.org-base</strong></a> <a href=\"http://apt.ubuntu.com/p/openoffice.org-base\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\"...
2010-12-12T23:49:16.437
null
null
null
null
17077
1
null
2010-12-12T12:50:29.603
4
4673
<p>When I try to put my Ubuntu 10.10 box to sleep or into hibernation, it appears to wake up right away (couple of seconds at most). I am trying to figure out what's going on, and would appreciate any suggestions.</p> <p><code>syslog</code> says:</p> <pre> Dec 12 13:15:25 mig kernel: [13049.728355] pm_op(): usb_dev_suspend+0x0/0x20 returns -2 Dec 12 13:15:25 mig kernel: [13049.728357] PM: Device usb3 failed to suspend async: error -2 Dec 12 13:15:25 mig kernel: [13049.728451] PM: Some devices failed to suspend </pre> <p>Now, how do I find out which device is <code>usb3</code> and why it's failing to suspend?</p> <p>The only external USB device in the system is a dongle for wireless keyboard and mouse. If I disconnect it, ssh into the box and run <code>pm-suspend</code>, it still fails with exactly the same error message.</p> <p><code>lsusb</code> gives:</p> <pre> Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub </pre> <p>so the setup isn't exactly extravagant. The mobo is Asus P7P55D-E based on the P55 Express chipset.</p> <p><strong>edit</strong> It turns out <code>usb3</code> wasn't the name of a <em>device</em> but was a reference to the USB 3.0 <em>protocol</em>. If I disable the latter in the BIOS, the box can sleep!</p> <p><em>This is cross-posted from superuser.com, since there are no answers there and the question is Ubuntu-specific.</em></p>
7234
7234
2010-12-12T14:02:27.783
2021-01-15T01:24:39.403
Computer won't sleep
[ "10.10", "suspend", "troubleshooting", "suspend-resume" ]
1
5
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T13:03:41.407", "id": "18257", "postId": "17077", "score": "1", "text": "Have you checked dmesg and the syslog?", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2010-12-12T13:06:30.113", "id": "18258", "postId": "17077", "...
null
[ { "accepted": null, "body": "<p>do you say that you have a motherboard that support usb 3.0 well that a well know issue that happened when the box is in suspend mode, </p>\n\n<p>When the XHCI module is loaded for USB 3.0 operation the system cannot suspend. Manually unloading XHCI will allow suspend to comp...
null
null
null
null
null
17079
1
null
2010-12-12T13:10:04.617
1
2444
<p>I have, like many, problems with suspending/hibernating in Ubuntu. When I resume from suspend the fans start, the HDD led glows steadily, but the screen is off. The only thing I do is hard reboot.</p> <p>No solution have work for me so far. But I have found a workaround: downgrade from grub 2 to legacy grub. With legacy grub I can suspend just fine. My suspend/hibernate problems are somehow related to grub 2, but why? What is grubs role in the suspend process? Where to start digging?</p> <hr> <p><strong>UPDATE</strong></p> <p>I have now tried to disable graphical terminal in <code>/etc/default/grub</code>:</p> <pre><code># Uncomment to disable graphical terminal <strong>(grub-pc only)</strong> GRUB_TERMINAL=console</code></pre> <p>That did not help. In <code>/boot/grub/grub.cfg</code> there is a function that concerns video:</p> <pre><code>function load_video { insmod vbe&lt;br /&gt; insmod vga&lt;br /&gt; } </code></pre> <p>I have no idea when, where or if it is called. Maybe it is not relevant at all.</p>
7235
22949
2012-08-24T00:06:46.023
2012-08-24T00:06:46.023
What is GRUB (2)'s role in the suspend/hibernate process?
[ "grub2", "suspend", "hibernate" ]
2
2
CC BY-SA 3.0
[ { "creationDate": "2010-12-12T19:29:14.970", "id": "18305", "postId": "17079", "score": "0", "text": "seems to me like the wrong command line parameters are being passed by grub2 as it normally plays no role in suspend/resume. Can you post /boot/grub/grub.cfg as well as your grub legacy (boot.ls...
null
[ { "accepted": null, "body": "<p>Grub has no role in the suspend-to-RAM/resume-from-RAM-suspend process.</p>\n\n<p>Grub has a role to play in the resume-from-hibernation process: it loads the kernel, which then finds a system image in the swap partition and resumes it.</p>\n\n<p>If grub2 breaks hibernation w...
null
null
null
null
null
17080
1
17082
2010-12-12T13:52:20.060
2
6780
<p>I just got myself an Ubuntu 10.04 Desktop CD. I pop it into my DVD drive (on my laptop which has Windows 7), run VMWare, install Ubuntu using Easy Install. So far, so good. </p> <p>But, now, internet does not work in Ubuntu desktop.</p> <p>How do I enable networking (both connected and wireless). <img src="https://i.stack.imgur.com/aCgdC.png" alt="alt text"></p> <p><strong>EDIT</strong></p> <p>I do not know what happened or how it got fixed. But, it is now fixed. However, Empathy IM client does not work although, I am able to browse the internet (which is what I wanted in the first place!). </p>
7215
7215
2010-12-13T06:21:45.097
2015-06-04T19:58:12.830
Enable Networking in VMWare
[ "10.04", "networking", "internet", "vmware" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T14:13:39.417", "id": "18266", "postId": "17080", "score": "0", "text": "@hhlp: The tag should be vmware and **not** wmware. Can you please map it to the appropriate tag. Thank you.", "userDisplayName": null, "userId": "7215" } ]
{ "accepted": true, "body": "<p>1) Go to ‘Virtual Machine’ in menu and press ‘Install VMware Tools’ option. This will mount the ISO file to CD drive as ‘VMware Tools’.</p>\n\n<p>2) Extract the tar.gz file to local folder.</p>\n\n<p>3) Open terminal ( Application –> Accessories –> Terminal) and go to the extracted folder in above step.</p>\n\n<p>4) Once you locate the vmware-install.pl script </p>\n\n<p><a href=\"https://stackoverflow.com/questions/175876/how-do-i-fix-my-vms-network-connection-if-it-seems-to-be-running-ok-from-the-hos\">THIS</a> problem may be related to yours.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-12T14:28:01.323", "id": "18267", "postId": "17082", "score": "0", "text": "Thanks! However, with Easy Install, VMWare Tools is already installed. I did a reinstall of it and restarted the system too. It still did NOT work.", "userDisplayName": null, "userId": "7215" }, { "creationDate": "2010-12-12T14:37:43.717", "id": "18271", "postId": "17082", "score": "0", "text": "check the added link", "userDisplayName": null, "userId": "4777" }, { "creationDate": "2010-12-13T03:08:10.507", "id": "18365", "postId": "17082", "score": "0", "text": "Thanks for the links! Unfortunately, I am a newbie with Linux (I installed it, so that I can learn Python!). I did check out the steps present in that SO question and...none of them works. For instance, my /var/logs/kern.log does not have entries about renaming eth0 to eth1.", "userDisplayName": null, "userId": "7215" }, { "creationDate": "2010-12-13T11:36:14.233", "id": "18394", "postId": "17082", "score": "1", "text": "Hmm as I google I seem a lot of problems with vmware and ubuntu 10.4. I would try Virtualbox, it's free and better/faster IMHO anyways. Go download at http://www.virtualbox.org/wiki/Downloads In computers some problems are just better to be avoided than solved :P", "userDisplayName": null, "userId": "4777" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T14:20:52.053", "id": "17082", "lastActivityDate": "2010-12-12T14:37:31.203", "lastEditDate": "2017-05-23T12:39:51.893", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "4777", "parentId": "17080", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>1) Go to ‘Virtual Machine’ in menu and press ‘Install VMware Tools’ option. This will mount the ISO file to CD drive as ‘VMware Tools’.</p>\n\n<p>2) Extract the tar.gz file to local folder.</p>\n\n<p>3) Open terminal ( Application –> Accessories –> Terminal) and go to the ex...
null
null
null
null
null
17084
1
17095
2010-12-12T15:05:30.583
60
46331
<p>In the world of Ubuntu, it seems you either <em>always</em> run an FTP server or you <em>never</em> do. Perhaps I'm the first network analyst who's needed to flash a Cisco, Checkpoint or Nokia image using Ubuntu... I need an FTP server for maybe 5 minutes, no more than that.</p> <p>I'm looking for a bare-bones, user-initiated FTP server. I understand that it would likely have to run with sudo. That's fine - but I want to start/stop it like a normal program.</p> <p>On the Windows platform, such tools are a dime a dozen - I've used 3CDaemon for years and recently found CoreFTP. Both are excellent. You configure a user, point it at a directory, then hit the "Start" button. A couple of minutes later, you're generally done and you hit the "Stop" button. Job done.</p> <p>Such tools don't seem to exist on Ubuntu. I found a <a href="http://code.google.com/p/tftpgui/">Google Code project</a> that creates a TFTP instance reasonably nicely (assuming it still runs - I haven't used it in about a year and python has moved on), but how about FTP? Anything out there?</p>
861
null
null
2016-12-21T07:08:56.290
How do I temporarily run an FTP server?
[ "server", "ftp", "tftp" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T21:24:40.140", "id": "18327", "postId": "17084", "score": "2", "text": "Too bad I haven't had time to finish JetFTP. It does *exactly* what you describe, **and** it can run without root privileges (you would have to use a port > 1024 of course). It will run out of t...
{ "accepted": true, "body": "<p>You can get an FTP server going as easy as one two three using <a href=\"https://pypi.python.org/pypi/pyftpdlib/\" rel=\"noreferrer\">pyftpdlib</a>:</p>\n\n<ol>\n<li>Install with pip <code>pip install --user pyftpdlib</code></li>\n<li>Run with <code>python -m pyftpdlib</code>, add <code>-w</code> if you want write access too.</li>\n<li>there is no step three :)</li>\n</ol>\n\n<p>You now have an ftp server which you can log in to anonymously sharing your home directory. This is meant more as a test of the module, but it does what it says on the tin.</p>\n\n<p>This command:</p>\n\n<pre><code>python -m pyftpdlib --directory=FTP --port=2121 --write\n</code></pre>\n\n<p>will serve, without root privileges, on port 2121 and grant write access to anonymous users. It will also use the directory <code>FTP</code> in the current working directory instead of your home. Type <code>python ftpserver.py --help</code> to get information about all the options. </p>\n\n<ul>\n<li>log into it at <code>anonymous@localhost:2121/</code></li>\n</ul>\n\n<p><img src=\"https://i.stack.imgur.com/1ZBXB.png\" alt=\"alt text\"></p>\n\n<p>Please note that this software is released under the terms of the <a href=\"http://www.opensource.org/licenses/mit-license.php\" rel=\"noreferrer\">MIT License</a>, which means you can do basically what ever you please with it. Read the license text, it's only a few lines, and know your rights.</p>\n\n<hr>\n\n<p>Now, this script doesn't support username and password as part of it's stand-alone functionality (for security reasons I imagine).</p>\n\n<p>So I've added that feature:</p>\n\n<ul>\n<li><a href=\"http://paste.ubuntu.com/542726/\" rel=\"noreferrer\">download my modified version</a></li>\n</ul>\n\n<p>You now have, in addition to all options I mentioned, the command line parameters</p>\n\n<p><code>--username=USERNAME</code> and <code>--password=PASSWORD</code>:</p>\n\n<pre><code>python ftpserver.py --port=2121 --username=ftpuser --password=3r2u389r2u333j\n</code></pre>\n\n<p>Again, use <code>--help</code> to see them all.</p>\n\n<p>This should be as easy as it gets.</p>\n\n<hr>\n\n<p>I've also written a little gui for it:</p>\n\n<p><img src=\"https://i.stack.imgur.com/WfuwB.png\" alt=\"alt text\"></p>\n\n<ul>\n<li><p><a href=\"http://paste.ubuntu.com/542852/\" rel=\"noreferrer\">Download it here</a> (updated at rev. 6)</p>\n\n<p>I'm sorry it's 3999 lines long, but it will do everything the original does. And i wanted to keep it all in one file.\nWhen it's started without any parameters (i.e. make it executable and double click it, or <a href=\"https://askubuntu.com/questions/16825/how-can-i-add-and-change-items-in-my-applications-menu/16830#16830\">create a launcher for it</a>), it starts a little gui for you to configure your server. You can still import it as a python module or use the above command line fu.</p>\n\n<p>Known issues:</p>\n\n<ul>\n<li><p>I've not bothered with anything other than port 2121. This should be simple, making the port configurable requires complex error handling which I don't want the user to bother with. 2121 should always work fine.</p></li>\n<li><p>It won't warn you, like the command line does, about using an insecure configuration. I.e. not setting a password or something like that.</p></li>\n</ul></li>\n</ul>\n\n<hr>\n\n<p>EDIT: since the API of <code>pyftpdlib</code> and <code>ftpserver.py</code> changed (and the ubuntu pastebin links are gone); most of the above post doesn't work anymore. For the (2014) version of <code>pyftpdlib</code>, use this script (<code>ftpserver-cli.py</code>) to achieve the same as above:</p>\n\n<pre><code>#!/usr/bin/env python\n# ftpserver-cli.py\nimport sys\nsys.path.append(\"/path/to/pyftpdlib-svn\") # enter your proper path here\nimport argparse\n\nfrom pyftpdlib.authorizers import DummyAuthorizer\nfrom pyftpdlib.handlers import FTPHandler\nfrom pyftpdlib.servers import FTPServer\n\ndef processCmdLineOptions():\n global optparser\n optparser = argparse.ArgumentParser(description=\"ftpserver-cli\",\n formatter_class=argparse.RawDescriptionHelpFormatter)\n optparser.add_argument('-u', '--username', action='store', type=str,\n default=\"user\", help=\"username\")\n optparser.add_argument('-p', '--password', action='store', type=str,\n default=\"12345\", help=\"password\")\n optparser.add_argument('-t', '--port', action='store', type=int,\n default=\"21\", help=\"port\")\n optparser.add_argument('-d', '--directory', action='store', type=str,\n default=\"/home/stefano/Projekte/\", help=\"port\")\n optargs = optparser.parse_args(sys.argv[1:]) #(sys.argv)\n return optargs\n\n\noptargs = processCmdLineOptions()\n\nprint(\"Using: user: %s pass: %s port: %d dir: %s\" % (optargs.username, optargs.password, optargs.port, optargs.directory))\n\nauthorizer = DummyAuthorizer()\nauthorizer.add_user(optargs.username, optargs.password, optargs.directory, perm=\"elradfmw\")\n#authorizer.add_anonymous(\"/home/nobody\")\n\nhandler = FTPHandler\nhandler.authorizer = authorizer\n\nserver = FTPServer((\"127.0.0.1\", optargs.port), handler)\nserver.serve_forever()\n</code></pre>\n\n<p>call with:</p>\n\n<pre><code>$ sudo python ftpserver-cli.py --directory=/tmp/srvtest\nUsing: user: user pass: 12345 port: 21 dir: /tmp/srvtest\n[I 14-03-02 21:40:57] &gt;&gt;&gt; starting FTP server on 127.0.0.1:21, pid=19286 &lt;&lt;&lt;\n...\n</code></pre>\n", "commentCount": "12", "comments": [ { "creationDate": "2010-12-12T17:34:39.423", "id": "18290", "postId": "17095", "score": "0", "text": "This looks like a superb module - since I'm trying to learn python, it sounds like this is a great starting point for building a GUI around... I'm afraid that I'm not marking this as the answer (although I've upvoted it) in the hope that someone knows of a tool that's already GUI based. Thanks for the heads up on this though and thanks for the modified version.", "userDisplayName": null, "userId": "861" }, { "creationDate": "2010-12-12T17:37:25.583", "id": "18291", "postId": "17095", "score": "0", "text": "Thanks :-) I won't give up, programming a GUI for it now. :P", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-12T18:33:00.527", "id": "18298", "postId": "17095", "score": "0", "text": "Why do you need a GUI? Isn't it sufficient to create a simple launcher (maybe wrap this in a simple script)?", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-12-12T20:38:43.663", "id": "18317", "postId": "17095", "score": "0", "text": "Alright I've done it.. This was more complex than I'd thought. :-)", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-13T09:37:50.260", "id": "18389", "postId": "17095", "score": "1", "text": "Thanks Stefano! I never expected that! This is great - not only a GUI to try out (tonight), but also a bit of a teaching guide in how you knocked it together in the first place. Many thanks!", "userDisplayName": null, "userId": "861" }, { "creationDate": "2012-01-23T19:21:31.443", "id": "111949", "postId": "17095", "score": "0", "text": "In GNOME, I just did Alt+F2 and entered ftp://server:port to open with nautilus.", "userDisplayName": null, "userId": "36349" }, { "creationDate": "2013-08-27T13:52:23.980", "id": "430803", "postId": "17095", "score": "0", "text": "@StefanoPalazzo It doesn't seem to work. It's trying to import logger from pyftpdlib.log but the computer complains there's no module named log. I tried installing python-pyftpdlib package but it didn't help.", "userDisplayName": null, "userId": "48529" }, { "creationDate": "2014-03-02T20:50:03.390", "id": "555936", "postId": "17095", "score": "5", "text": "http://paste.ubuntu.com/542726/ and http://paste.ubuntu.com/542852/ are dead, unfortunately... also, ftpserver.py changed, and apparently the above post doesn't hold anymore (last standalone revision seems to be [r1116](https://code.google.com/p/pyftpdlib/source/browse/trunk/pyftpdlib/ftpserver.py?r=1116), with this [diff](https://code.google.com/p/pyftpdlib/source/diff?spec=svn1117&r=1117&format=side&path=/trunk/pyftpdlib/ftpserver.py)). I have made an edit to the post with a new script (will be invisible until peer review)", "userDisplayName": null, "userId": "6808" }, { "creationDate": "2014-11-18T04:24:40.740", "id": "754986", "postId": "17095", "score": "0", "text": "very handy script minor addition optparser.add_argument('-i', '--ip', action='store', type=str,\n default=\"127.0.0.1\", help=\"ipaddress\") and change to server = FTPServer((optargs.ip, optargs.port), handler) makes it extremely handy for testing deploy scripts(to devices 1k+) with mininet.Just need to send the 1k+ logs to file", "userDisplayName": null, "userId": "341485" }, { "creationDate": "2016-02-19T09:32:39.327", "id": "1093946", "postId": "17095", "score": "1", "text": "just for the noob out there, to use the above script you will need to install \"pyftpdlib\" library, to do it run... \"sudo apt-get install python-pip\" and then \"pip install pyftpdlib\" ... and you all set!", "userDisplayName": null, "userId": "496139" }, { "creationDate": "2020-10-22T02:08:21.283", "id": "2182153", "postId": "17095", "score": "0", "text": "The original answer still works in 20.04 `pip3 install --user pyftpdlib` and `python3 -m pyftpdlib --directory=tmp --port=21 --write` work fine. Thanks!", "userDisplayName": null, "userId": "27606" }, { "creationDate": "2023-05-03T13:40:20.983", "id": "2569153", "postId": "17095", "score": "0", "text": "This doesn't seem to work, I'm getting `Error: connect ECONNREFUSED ::1:2121` when connecting to localhost, even though the command output seems to indicate it is listening EDIT: you need to specify `-i localhost` to make it listen on `localhost`", "userDisplayName": null, "userId": "177648" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-12T16:13:31.897", "id": "17095", "lastActivityDate": "2016-12-21T06:04:11.420", "lastEditDate": "2017-04-13T12:24:11.723", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "17084", "postTypeId": "2", "score": "70" }
[ { "accepted": null, "body": "<ul>\n<li><p>You can use <a href=\"http://packages.ubuntu.com/pure-ftpd\" rel=\"nofollow noreferrer\"><strong>pure-ftpd</strong></a> <a href=\"http://apt.ubuntu.com/p/pure-ftpd\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install pure-ftpd\...
null
null
null
null
null
17087
1
107632
2010-12-12T15:21:40.420
8
443
<p>Here's an odd problem I've had for a while. Every so often, I find that I have several jpeg images sitting in my home directory that I didn't put there. I'm fairly sure this isn't a security breach but rather, there's something writing these files in there that I've forgotten about.</p> <p>Here's what I'm looking at today:</p> <pre><code>oli@bert:~$ ls -l *.jpg -rw------- 1 oli oli 8061 2010-11-19 18:30 An-alien-from-Mars-Attack-002.jpg -rw------- 1 oli oli 24362 2010-11-19 18:30 An-alien-from-Mars-Attack-006.jpg -rw------- 1 oli oli 8147 2010-11-05 18:08 Avatar-Film---2009-002.jpg -rw------- 1 oli oli 35602 2010-11-05 18:08 Avatar-Film---2009-006.jpg -rw------- 1 oli oli 6058 2010-12-03 18:42 Britney-Spears-victim-of--002.jpg -rw------- 1 oli oli 28330 2010-12-03 18:42 Britney-Spears-victim-of--006.jpg -rw------- 1 oli oli 8135 2010-11-12 19:19 charlie-brooker-twitter-p-002.jpg -rw------- 1 oli oli 22115 2010-11-12 19:19 charlie-brooker-twitter-p-006.jpg -rw------- 1 oli oli 8059 2010-10-29 18:47 Leonardo-DiCaprio-002.jpg -rw------- 1 oli oli 29988 2010-10-29 18:47 Leonardo-DiCaprio-006.jpg -rw------- 1 oli oli 8064 2010-10-22 16:41 Spot-the-difference-.-.-.-002.jpg -rw------- 1 oli oli 29188 2010-10-22 16:41 Spot-the-difference-.-.-.-006.jpg </code></pre> <p>They all seem like they're TV or film related... But I honestly don't have a clue what could be writing them. They don't bother me enough to go on a full-scale witch hunt but if anybody knows of something that writes images in the home directory like this, please let me know.</p>
449
44179
2013-07-10T03:16:18.097
2013-07-10T03:16:18.097
Random images appearing in my home directory... Where are they coming from?
[ "home-directory", "tv" ]
3
12
CC BY-SA 3.0
[ { "creationDate": "2010-12-12T15:30:11.230", "id": "18275", "postId": "17087", "score": "0", "text": "What software do you use to watch TV? You may be accidentally pressing the snapshot button.", "userDisplayName": null, "userId": "1938" }, { "creationDate": "2010-12-12T15:31:49....
{ "accepted": true, "body": "<p>You can try running fatrace (see <a href=\"https://askubuntu.com/a/105197/3037\">this answer</a>) and when those images appear again, search for them in fatrace's log file. That hopefully will reveal the program that's acting up. :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-02-25T13:38:29.143", "id": "107632", "lastActivityDate": "2012-02-25T13:38:29.143", "lastEditDate": "2017-04-13T12:23:06.093", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "17087", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>I don't think this is possible at the moment. I had a look into inotify and back in 2008 a developer wanted to put the PID of the process that created the file event into the cookie information. This would have solved it as you could have created a python program to grab the ...
null
null
null
null
null
17094
1
32503
2010-12-12T16:12:43.520
3
4177
<p>I have a NAS box that I automount several shares on my laptop. The shares are mounted to <code>/mnt/nas/music</code>, <code>/mnt/nas/photos</code>, etc.</p> <p>When I browse <code>/mnt/nas</code> in Nautilus, no directories show up unless I go to the location bar and type in the directory name of the mounted share. Is this how autofs works, or should there be directories that always appear, and then when you try to access their contents, autofs will mount the remote share?</p> <p>Thanks a bunch.</p>
7242
114
2010-12-12T16:29:37.060
2018-01-28T15:48:42.927
Automounter -- browsing with Nautilus
[ "nautilus", "automount", "nfs" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Use the option --ghost in your auto.master. Look at google for an example file, I found this exmaple:</p>\n\n<pre><code># mount point config file options\n/- /etc/auto.direct --ghost\n\n/misc /etc/auto.misc --timeout=30 --ghost\n\n+auto.master\n</code></pre>\n\n<p>From here: <a href=\"https://web.archive.org/web/20130924105553/http://japeto.com/autofs-a-quick-configuration.html\" rel=\"nofollow noreferrer\">example</a> (archived copy of original page)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-03-30T13:23:28.657", "id": "36660", "postId": "32503", "score": "0", "text": "This is what I was looking for!", "userDisplayName": null, "userId": "7242" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-03-29T09:59:06.460", "id": "32503", "lastActivityDate": "2018-01-28T15:48:42.927", "lastEditDate": "2018-01-28T15:48:42.927", "lastEditorDisplayName": null, "lastEditorUserId": "776089", "ownerDisplayName": "user13210", "ownerUserId": null, "parentId": "17094", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>You might be using autofs to mount these directories. If you find the file <code>/etc/auto.master</code>, it means that you probably are. The way autofs works is that it mounts and displays directories only once you try to access them.</p>\n\n<p>Autofs provides flexibilities ...
null
null
null
null
null
17097
1
17103
2010-12-12T16:39:57.350
10
10292
<p>I have a ssh server, and some clients have login it via key login. So the host identity of server has been stored in the known_host of clients.</p> <p>I want to reinstall the server, but I hope it never impact the experience of client. I'm wondering whether it's possible to backup the host identity of server, then restore it.</p>
5286
null
null
2010-12-12T17:05:04.957
how to backup/restore the host key in ssh server
[ "ssh" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li>You can backup those keys from <strong>/etc/ssh/ssh_host*</strong> </li>\n<li>You can also backup all in <strong>/etc/ssh</strong> directory so that you keep all config and keys. </li>\n<li>And to restore put your keys back in the same location <strong>/etc/ssh</strong> </li>\n</ul>\n\n<p><img src=\"https://i.stack.imgur.com/12EGK.png\" alt=\"alt text\"></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2015-04-03T18:21:02.053", "id": "845432", "postId": "17103", "score": "4", "text": "for posterity- pay attention to the permissions. All the `/etc/ssh/*` files should be owned by root:root, with 644 permissions except for those that end in *key, which should be 600.", "userDisplayName": null, "userId": "69983" }, { "creationDate": "2021-07-26T01:57:30.163", "id": "2316213", "postId": "17103", "score": "0", "text": "Afterwards, you probably need a `sudo service ssh restart`", "userDisplayName": null, "userId": "6130" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T16:59:22.200", "id": "17103", "lastActivityDate": "2010-12-12T17:05:04.957", "lastEditDate": "2010-12-12T17:05:04.957", "lastEditorDisplayName": null, "lastEditorUserId": "5691", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17097", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<ul>\n<li>You can backup those keys from <strong>/etc/ssh/ssh_host*</strong> </li>\n<li>You can also backup all in <strong>/etc/ssh</strong> directory so that you keep all config and keys. </li>\n<li>And to restore put your keys back in the same location <strong>/etc/ssh</strong...
null
null
null
null
null
17098
1
17115
2010-12-12T16:48:14.233
6
2391
<p>I would like to install Evince 2.32 in Lucid (10.04)</p> <ol> <li>Is there any safe way to do it ? </li> <li>Download the source and start install all the required dependences is this approach dangerous for the stability of my system ? </li> </ol> <p>I googled for a solution of this problem and the only suggestion I found it was to add the ppa:irie/evince. I guess this is a not so safe am I right ? If so it is expected to work with Lucid ?</p>
7243
3550
2010-12-12T17:24:20.443
2010-12-12T18:47:31.997
How to install Evince 2.32?
[ "10.04", "ppa", "evince", "backport" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Wow, I wrote a lot more than I was planning on. So here's the tl;dr version:</p>\n\n<p>It would be simpler to upgrade the entire system to Maverick than backport Evince 2.32.x to Lucid.</p>\n\n<h2>Is it safe?</h2>\n\n<p>First we need to address the question of whether this is safe. In most instances, installing new versions of so-called \"leaf\" packages will not effect the stability of your system. A \"leaf\" package is a package that provides a standalone application that no other packages depend on. Evince, unfortunately for your purposes, is not entirely a simple \"leaf\" package.</p>\n\n<p>Evince 2.30.x also provides the libraries libevdocument2 and libevview2. While Evince 2.32.x provides libevdocument3 and libevview3. Notice the libraries' have different numbers. This shows that there has been a SONAME bump meaning that there have been incompatible changes to the ABIs of these libraries. Other programs that rely on libevdocument2 and libevview2 may not function with libevdocument3 and libevview3.</p>\n\n<p>Fortunately, at least on my system, there are no other programs that rely on libevdocument2 and libevview2 besides Evince itself. So is it safe? Probably!</p>\n\n<h2>Is ppa:irie/evince safe?</h2>\n\n<p>As with any other PPA, this question comes down to whether or not you trust the owner of the PPA, in this case <a href=\"https://launchpad.net/~irie\" rel=\"nofollow\">irie</a>. There are a few ways that I use to determine whether I trust a PPA like looking at the breadth of their contributions. Are they also a upstream developer? Are they an Ubuntu developer? Does their Launchpad page show on going activity?</p>\n\n<p>As for <a href=\"https://launchpad.net/~irie/+archive/evince\" rel=\"nofollow\">this specific PPA</a>, it seems to introduce change that are not yet upstream:</p>\n\n<blockquote>\n <p>This PPA provides slightly enhanced\n Evince document viewer that pan scroll\n mode (like \"Hand tool\" in Adobe\n Reader) is added. It's probably\n suitable for touch panel based\n computers. The code changes are based\n on a patch written by Stephen Sugden.\n (http://mail.gnome.org/archives/evince-list/2009-June/msg00027.html)</p>\n</blockquote>\n\n<p>But more importantly, it doesn't seem to have packages for Lucid. So it will not help you anyways.</p>\n\n<h2>Backporting it on your own</h2>\n\n<p>So since its safe, is it doable? It depends on just how much you want it. Unfortunately, it would take quite a bit of work to backport Evince 2.32.x to Lucid. Backporting a singe package isn't that much work, but looking at the source code I can see that it's not just Evince that needs backporting. It needs newer versions of libglib2.0-dev, libgtk2.0-dev, libpoppler-glib-dev, and libcairo2-dev that are not available in Lucid. Those are core GNOME libraries that are about the complete opposite of \"leaf\" packages. You would need to backport the entire chain of dependencies.</p>\n\n<p>In short, doing so is very complicated , time consuming, and potentially dangerous.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-13T00:02:31.387", "id": "18352", "postId": "17115", "score": "0", "text": "Thank you very much for the answer andrewsomething. The main reason why I would like to run this version in Lucid is because this version is capable of to perform inverse search in PDF files using Synctex, which is very valuable feature for who is editing big texts.", "userDisplayName": null, "userId": "7243" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T18:47:31.997", "id": "17115", "lastActivityDate": "2010-12-12T18:47:31.997", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "570", "parentId": "17098", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Wow, I wrote a lot more than I was planning on. So here's the tl;dr version:</p>\n\n<p>It would be simpler to upgrade the entire system to Maverick than backport Evince 2.32.x to Lucid.</p>\n\n<h2>Is it safe?</h2>\n\n<p>First we need to address the question of whether this is...
null
null
null
null
null
17099
1
null
2010-12-12T16:49:59.650
9
490
<p>I've found Unity's new Intellihide mode extremely useful, and would like to know if it's planned to be set by default or, by the contrary, the panel will be shown unless you set it manually.</p>
4862
235
2010-12-12T20:37:28.413
2010-12-21T13:11:34.140
Will the launcher use Intellihide by default?
[ "unity", "11.04", "launcher" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T17:23:11.993", "id": "18283", "postId": "17099", "score": "0", "text": "Related but not a duplicated: http://askubuntu.com/questions/9865/will-the-unity-launcher-auto-hide", "userDisplayName": null, "userId": "235" }, { "creationDate": "2011-02-03T15...
null
[ { "accepted": null, "body": "<p>The User Interface Freeze is on March 2011, before then it can be changed several times so it is impossible to know what the team will decide at the end.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-12T17:42:30.383", "id"...
null
null
null
null
null
17101
1
17243
2010-12-12T16:57:21.257
4
5959
<p>I encountered an audio bug and <a href="https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/689106" rel="nofollow">reported</a> it on Launchpad. There I was asked to reinstall PulseAudio. </p> <p>That sounded dangerous, so I tried it on a VirtualBox virtual machine I had lying around. (this VM had no sound problems at all). And indeed, after I did a naive <code>sudo apt-get remove pulseaudio</code> -> reboot -> <code>sudo apt-get install pulseaudio</code>, the VM has no sound any more. </p> <p>Strangely, everything looks OK. There is nothing muted (I unmuted every single playback chanel in alsamixer just in case). The driver for the sound card is recognized and loaded, aplay plays sound files without producing an error, and when I installed and opened PulseAudio Volume Meter, playing a sound resulted in the volume indicator changing with the sound. Only there is nothing coming out of the loudspeakers. This isn't a hardware problem either, because the sound in the host system is functioning. </p> <p>I tried to configure PulseAudio as described on <a href="https://wiki.ubuntu.com/PulseAudio#ALSA%20Configuration" rel="nofollow">this page</a> of the Ubuntu wiki, but had no success. </p> <p>I am afraid to try the reinstall on my real system until I know how to do it without causing a problem. Did I miss a configuration step somewhere? Should I have reinstalled in some other way? </p> <p>Both guest and host systems are Ubuntu 10.10 64 bit. </p>
5719
5719
2010-12-13T20:25:10.963
2017-02-01T18:30:00.893
No sound after PulseAudio reinstall
[ "sound", "virtualbox", "pulseaudio", "re-installation" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Thank you all for the ideas. </p>\n\n<p>It must have been a problem in the communication between host and Virtual Box. In the virtual machine settings, I set the sound mode from \"Pulse Audio\" to \"Alsa\" and I got sound. Then I toggled it back to Pulse Audio - and the VM still had sound. </p>\n\n<p>Sometimes the answer is so easy I want to chew on something---</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T20:12:59.820", "id": "17243", "lastActivityDate": "2010-12-13T20:12:59.820", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5719", "parentId": "17101", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Go here : <a href=\"http://ubuntuforums.org/showthread.php?t=789578\" rel=\"nofollow\">http://ubuntuforums.org/showthread.php?t=789578</a></p>\n\n<p>Do <strong>Part A</strong> only. That should fix the problem in no time.</p>\n", "commentCount": "1", "comments": [ ...
null
null
null
null
null
17108
1
17110
2010-12-12T17:20:10.373
5
1318
<p>I have a problem when i try to download the maverick iso. after download i always get the wrong iso checksum with gtkhash? I already tried from several locations provided via the ubuntu page but not succeeded.</p> <p>The hash should be</p> <pre><code>59d15a16ce90c8ee97fa7c211b7673a8 ubuntu-10.10-desktop-i386.iso </code></pre> <p>i get </p> <pre><code>681689736dcdf7dc28384836eed6e55f </code></pre> <p>or</p> <pre><code>9174d1e4767d2c3e5b365444d0c8a771 </code></pre> <p><strong>Update: Downloading the image via torrent seems more reliable than via http or ftp because of the internal torrent checksum tests</strong></p>
7155
7155
2010-12-13T12:18:41.563
2010-12-13T12:18:41.563
Downloaded Ubuntu ISO always has wrong checksum?
[ "iso" ]
1
6
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T17:24:53.923", "id": "18285", "postId": "17108", "score": "0", "text": "Can you append both the source-hash and the one you're getting to your question?", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-12T17:30:18.257", "...
{ "accepted": true, "body": "<p>I would suggest downloading from a different source and then checking the md5. I have good results from linuxtracker.org for both speed and reliability with checksums.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-12T17:24:40.040", "id": "18284", "postId": "17110", "score": "0", "text": "just torrents there?", "userDisplayName": null, "userId": "7155" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T17:22:58.430", "id": "17110", "lastActivityDate": "2010-12-12T17:22:58.430", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7248", "parentId": "17108", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I would suggest downloading from a different source and then checking the md5. I have good results from linuxtracker.org for both speed and reliability with checksums.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-12T17:24:40.040"...
null
0
null
null
null
17111
1
17148
2010-12-12T17:29:20.690
6
451
<p>I opened the Ubuntu Once Preference box to see if everything was "up to date" come to find that it's still "Synchronizing" after leaving the window open for three hours.</p> <p><img src="https://i.stack.imgur.com/jMNCm.png" alt="alt text"></p> <p>When I execute <code>u1sdtool --status</code></p> <pre><code>State: STANDOFF connection: With User With Network description: waiting for connection to end is_connected: True is_error: False is_online: False queues: IDLE </code></pre> <p>Is this it's idle text - or is it trying really, really hard to get something synchronized?</p>
41
41
2010-12-12T19:31:11.600
2010-12-12T23:01:58.060
Ubuntu One says it's always synchronizing
[ "ubuntu-one", "sync" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T19:09:29.747", "id": "18302", "postId": "17111", "score": "0", "text": "What is the output of `u1sdtool --status`?", "userDisplayName": null, "userId": "114" }, { "creationDate": "2010-12-12T21:58:45.950", "id": "18334", "postId": "17111", ...
{ "accepted": true, "body": "<p>\"Standoff\" means the connection is half-dead. After a short delay you should see syncdaemon trying to reconnect; as this seems to not be the case, please consider restarting syncdaemon (<code>u1sdtool -q; u1sdtool -c</code>). If the problem persists, please enable debug and file a bug.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-12-13T01:35:36.370", "id": "18362", "postId": "17148", "score": "0", "text": "Restarting the tool as you mentioned worked. Wireless in this part of my place isn't the most...reliable. Thank you!", "userDisplayName": null, "userId": "41" }, { "creationDate": "2013-03-15T15:38:13.780", "id": "336077", "postId": "17148", "score": "0", "text": "@Chipaca - Is there a way to do that in Windows?", "userDisplayName": null, "userId": "89202" }, { "creationDate": "2013-03-18T15:07:11.700", "id": "337522", "postId": "17148", "score": "0", "text": "@Enigma quit U1 from the system tray, restart it from the menu.", "userDisplayName": null, "userId": "711" }, { "creationDate": "2013-03-18T15:16:15.560", "id": "337531", "postId": "17148", "score": "0", "text": "@Chipaca - I had to uninstall, remove all leftover data and then re-install for it to connect successfully.", "userDisplayName": null, "userId": "89202" }, { "creationDate": "2013-03-26T13:50:20.427", "id": "342147", "postId": "17148", "score": "0", "text": "@Enigma ouch. If that ever happens again please contact support, so we can get the log files and fix whatever the root issue was.", "userDisplayName": null, "userId": "711" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T23:01:58.060", "id": "17148", "lastActivityDate": "2010-12-12T23:01:58.060", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "711", "parentId": "17111", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>\"Standoff\" means the connection is half-dead. After a short delay you should see syncdaemon trying to reconnect; as this seems to not be the case, please consider restarting syncdaemon (<code>u1sdtool -q; u1sdtool -c</code>). If the problem persists, please enable debug and...
null
null
null
null
null
17112
1
17975
2010-12-12T17:33:45.617
7
3970
<p>Is there a way to add SOCKS 5 authentication to the Network Proxy Preferences dialog ? </p> <p>Currently it supports only HTTP authentication. </p> <p><img src="https://i.stack.imgur.com/beaup.png" alt="alt text"></p>
7245
null
null
2010-12-17T23:35:33.143
How to enable SOCKS 5 authentication in Network Proxy Preferences
[ "proxy", "networking" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You may use <code>tsocks</code></p>\n\n<p>This programm socksifies each programm.\nThis is indeed only a workaround.</p>\n\n<p>But in the tsocks config you can supply an user + password</p>\n\n<p>It's shame but i think you have to create for each programm a startscript which starts it using tsocks</p>\n\n<p><a href=\"http://linux.die.net/man/5/tsocks.conf\" rel=\"nofollow\">http://linux.die.net/man/5/tsocks.conf</a></p>\n\n<p><a href=\"http://www.ubuntux.org/evolution-using-a-socks-proxy\" rel=\"nofollow\">http://www.ubuntux.org/evolution-using-a-socks-proxy</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-18T16:54:53.923", "id": "19240", "postId": "17975", "score": "1", "text": "Thanks, that seems to be the only workaround for now. I'll mark this as the correct answer if I don't get a better solution", "userDisplayName": null, "userId": "7245" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-17T23:35:33.143", "id": "17975", "lastActivityDate": "2010-12-17T23:35:33.143", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "17112", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You may use <code>tsocks</code></p>\n\n<p>This programm socksifies each programm.\nThis is indeed only a workaround.</p>\n\n<p>But in the tsocks config you can supply an user + password</p>\n\n<p>It's shame but i think you have to create for each programm a startscript which ...
null
null
null
null
null
17113
1
null
2010-12-12T17:53:28.320
9
449
<p>I am running Banshee 1.8.0 on a more-or-less vanilla Meerkat installation. I was most pleased when I plugged in an old iPod Nano and it Just Worked.</p> <p>However, when plugging in the iPod, Nautilus/Gnome asks for an application to handle the newly inserted iPod. The dialog presents no applications that can handle the device and allows no manual choice.</p> <p><img src="https://i.stack.imgur.com/WYUOU.png" alt="inserted audio player dialog"></p> <p>I have reinstalled banshee with <code>apt-get purge</code> and also <code>install --reinstall</code> but neither added an association. As before, when manually opened, banshee happily talks to the iPod, it just won't launch on plug.</p> <p>I suspect there is a missing association in gconf or something similar but I'm not sure where this information lives.</p>
1078
7035
2011-06-03T22:16:06.983
2011-06-03T22:16:06.983
No application to launch when plugging in ipod
[ "nautilus", "launcher", "banshee", "ipod" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2010-12-14T13:25:36.860", "id": "18553", "postId": "17113", "score": "0", "text": "odd, there is no option for me to put a +100 bounty on this question, I hope that flagging it for a moderator may help.", "userDisplayName": null, "userId": "1078" }, { "creation...
null
[ { "accepted": null, "body": "<p>First try to set your preferred application for the media player in <strong>System->Preferences->Preferred applications</strong>:</p>\n\n<p><img src=\"https://i.stack.imgur.com/wyNPJ.png\" alt=\"alt text\"></p>\n\n<p>If you don't have banshee in your list, select custom and a...
null
null
null
null
null
17114
1
17121
2010-12-12T18:42:50.193
7
181
<p>Ubuntu provides <a href="https://help.ubuntu.com/" rel="nofollow">Official</a> and <a href="https://help.ubuntu.com/community" rel="nofollow">Community</a> documentation. </p> <ul> <li>Why create the two streams? </li> <li>Is the official documentation more trustworthy? </li> <li>Is the criteria to add to it more strict?</li> </ul>
2591
114
2010-12-12T19:08:09.763
2010-12-12T21:12:50.273
Differences between Official and Community documentation?
[ "documentation" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li>Community documentation can be created by anyone using the wiki.</li>\n<li>Any user can create a <strong>how-to</strong> for any ubuntu-related topic under the Community documentation.</li>\n<li>Official documentation are the online html version of the system documentation that can be edited only by core-doc team.</li>\n<li>The official documentation are narrower in scope,dealing only with main help topics.</li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T19:31:08.417", "id": "17121", "lastActivityDate": "2010-12-12T21:12:50.273", "lastEditDate": "2010-12-12T21:12:50.273", "lastEditorDisplayName": null, "lastEditorUserId": "5691", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17114", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<ul>\n<li>Community documentation can be created by anyone using the wiki.</li>\n<li>Any user can create a <strong>how-to</strong> for any ubuntu-related topic under the Community documentation.</li>\n<li>Official documentation are the online html version of the system documenta...
null
null
null
null
null
17117
1
17120
2010-12-12T18:50:45.923
5
654
<p>I'm curious why <a href="https://wiki.ubuntu.com/" rel="nofollow">Ubuntu Team Wiki</a> uses a different web interface to <a href="http://help.ubuntu.com" rel="nofollow">Ubuntu documentaion</a>.</p>
2591
2591
2012-05-25T21:13:01.487
2012-05-25T21:13:01.487
Why Ubuntu wiki runs on different software to other help sites?
[ "documentation" ]
1
3
CC BY-SA 3.0
[ { "creationDate": "2010-12-12T19:06:21.263", "id": "18301", "postId": "17117", "score": "2", "text": "Both are using MoinMoin Wiki engine -- http://moinmo.in. Difference is only in theme.", "userDisplayName": null, "userId": "6861" }, { "creationDate": "2010-12-12T19:23:51.157", ...
{ "accepted": true, "body": "<p>The <a href=\"https://wiki.ubuntu.com/\" rel=\"nofollow noreferrer\">Ubuntu wiki</a> has recently been changed to use a new theme that fits far better with Ubuntu's new visual identity - new logo, colours, fonts, etc - the same things you'll see on this very site infact. For more details take a look <a href=\"http://www.markshuttleworth.com/archives/308\" rel=\"nofollow noreferrer\">this blog post from Mark Shuttleworth</a> that introuduces the new visual feel.</p>\n\n<p>Having said this, the new theme is probably not perfect yet - I would say it lacks the polish the old theme had.</p>\n\n<p>The <a href=\"https://help.ubuntu.com/\" rel=\"nofollow noreferrer\">official web documentation</a> has not yet been changed to use the updated visual identity, but I assume it eventually will.</p>\n\n<p>If you wish then in your Ubuntu Wiki <a href=\"https://wiki.ubuntu.com/UserPreferences\" rel=\"nofollow noreferrer\">User Preferences</a> then you can change your theme (\"ubuntu\" is the old one, and \"light\" is the new one).</p>\n\n<p><img src=\"https://i.stack.imgur.com/cJlob.png\" alt=\"Two themes side by side\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-12T20:05:11.650", "id": "18311", "postId": "17120", "score": "0", "text": "BTW the preferences to change the theme seems broken.", "userDisplayName": null, "userId": "2591" }, { "creationDate": "2010-12-12T23:26:29.293", "id": "18350", "postId": "17120", "score": "0", "text": "@Tshepang: if I remember correctly you need to refresh after changing the theme.", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-12-13T01:23:02.003", "id": "18360", "postId": "17120", "score": "0", "text": "@Jan Doesn't work.", "userDisplayName": null, "userId": "2591" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T19:22:56.603", "id": "17120", "lastActivityDate": "2010-12-12T19:22:56.603", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "17117", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>The <a href=\"https://wiki.ubuntu.com/\" rel=\"nofollow noreferrer\">Ubuntu wiki</a> has recently been changed to use a new theme that fits far better with Ubuntu's new visual identity - new logo, colours, fonts, etc - the same things you'll see on this very site infact. For ...
null
null
null
null
null
17123
1
17127
2010-12-12T19:39:13.247
1
3077
<p>Suppose I am using Ubuntu version X now. My USB port and optical disk drive are not working properly and I want to do a fresh install of Ubuntu version Y using the downloaded ISO image. Since I cannot install using CD-ROM or thumbdrive, is there any way to wipe out version X completely with version Y?</p>
null
186134
2015-10-26T23:29:35.360
2015-10-26T23:29:35.360
Fresh install from within Ubuntu without CD-ROM or thumbdrive
[ "system-installation" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Just a suggestion. Repartition your drive to create a 2 gig partition (at least) install the ISO to this drive using Unetbootin in the type box change to harddisk and select the new partition. Then update grub and reboot. Select the new partition boot to the live image then install to the old partition. As I say its a suggestion don't know if it will work or what problems you may have along the way. But if it works it works. </p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-22T16:29:10.323", "id": "30458", "postId": "17127", "score": "0", "text": "did you try to do that anywhere at all?", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-02-22T17:21:05.553", "id": "30466", "postId": "17127", "score": "0", "text": "No I said it was a suggestion. I would ask Jasper as he marked the answer correct. He might be able to explain any problems with the method.", "userDisplayName": null, "userId": "6450" }, { "creationDate": "2011-04-15T20:12:37.867", "id": "39401", "postId": "17127", "score": "0", "text": "@oxwivi I have not tried this method but I accepted the answer to thank Allan for answering, other users be cautioned!", "userDisplayName": "user7182", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T20:10:13.487", "id": "17127", "lastActivityDate": "2010-12-12T20:10:13.487", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6450", "parentId": "17123", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Just a suggestion. Repartition your drive to create a 2 gig partition (at least) install the ISO to this drive using Unetbootin in the type box change to harddisk and select the new partition. Then update grub and reboot. Select the new partition boot to the live image then i...
null
null
null
user7182
user7182
17125
1
112089
2010-12-12T20:04:15.117
3
479
<p>Every now and then I'd like to play with a fresh minimal install of Ubuntu (to test sysadminish scripts, application install instructions, package dependency lists etc.).</p> <p>I'd like to have a tool as <strong>simple to use</strong> as <a href="https://launchpad.net/testdrive" rel="nofollow">testdrive</a>: pick a version (say, 'maverick'), run a command, get a shell in a new virtual machine.</p> <p>I'd like that shell to be in the current terminal, rather than a new GUI window that testdrive uses. Setting up the new VM to accept SSH logins with my ssh public key is fine.</p> <p>I'd like the VM to have network access out of the box; NAT to a virtual network interface is fine.</p> <p>Why a VM? Chroots don't really cut it: installing, say, Apache in a chroot would fail because it would try to listen on port 80, which is already taken. Containers might work, though, if there are any that are supported by standard Ubuntu kernels.</p>
136
null
null
2012-03-11T17:14:13.550
TestDrive equivalent for Ubuntu Server
[ "server", "virtualization", "automation", "kvm-virtualization" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T20:13:11.517", "id": "18312", "postId": "17125", "score": "0", "text": "[vagrant](http://vagrantup.com/) looked like a promising tool, but (1) it's not packaged for Ubuntu, and (2) it requires non-free software (VirtualBox non-OSE) to function.", "userDisplayNam...
{ "accepted": true, "body": "<p><a href=\"http://vagrantup.com/\" rel=\"nofollow\">Vagrant</a>, while still not present in the standard Ubuntu repositories, now has a <a href=\"http://downloads.vagrantup.com/tags/v1.0.0\" rel=\"nofollow\">ready-to-use .deb</a> and now works with virtualbox-ose.</p>\n\n<p>Installation is as simple as</p>\n\n<ul>\n<li>install <a href=\"http://apt.ubuntu.com/p/virtualbox-ose\" rel=\"nofollow\">virtualbox-ose</a></li>\n<li>download <a href=\"http://files.vagrantup.com/packages/aafa79fe66db687da265d790d5e67a2a7ec30d92/vagrant_1.0.0_i686.deb\" rel=\"nofollow\">vagrant_1.0.0_i686.deb</a> (or <a href=\"http://files.vagrantup.com/packages/aafa79fe66db687da265d790d5e67a2a7ec30d92/vagrant_1.0.0_x86_64.deb\" rel=\"nofollow\">vagrant_1.0.0_x86_64.deb</a>) from the website </li>\n<li>install it with the Software Center, or with <code>sudo dpkg -i vagrant_1.0.0_i686.deb</code></li>\n<li><code>sudo ln -s /opt/vagrant/bin/vagrant /usr/local/bin</code> to make it appear on your $PATH</li>\n</ul>\n\n<p>Usage is as simple as</p>\n\n<ul>\n<li><code>vagrant box add lucid32 http://files.vagrantup.com/lucid32.box</code> (once)</li>\n<li><code>mkdir sandbox &amp;&amp; cd sandbox &amp;&amp; vagrant init lucid32</code> (creates a ./Vagrantfile you can customize if you want)</li>\n<li><code>vagrant up &amp;&amp; vagrant ssh</code> (you're now in a shell session inside a new VM)</li>\n<li><code>vagrant suspend</code> (or <code>halt</code>, or <code>destroy</code>) when you're done.</li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-03-11T17:14:13.550", "id": "112089", "lastActivityDate": "2012-03-11T17:14:13.550", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "136", "parentId": "17125", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>First, I think this is an excellent suggestion, and definitely something that TestDrive could/should support!</p>\n\n<p>In the meantime, you can grab a UEC image, untar it, and launch it in KVM:</p>\n\n<pre><code>wget http://uec-images.ubuntu.com/natty/current/natty-server-ue...
null
null
null
null
null
17131
1
19802
2010-12-12T20:24:44.787
1
10593
<p>I use the smbfs tools package to mount my SMB shares. I wrote a quick script to mount the share:</p> <pre><code>#!/bin/sh /usr/bin/smbmount "\\\\somehost.local\\hostshare" /media/hostshare -o user=smbuser,dom=WORKGROUP,uid=localuser,gid=localgroup </code></pre> <p>This script used to work in 9.10 when called by the "localuser" account, but in my fresh-installed 10.04 it fails giving me the error:</p> <pre><code>mount error(1): Operation not permitted Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) </code></pre> <p>The /media/hostshare directory is empty and has these perms:</p> <pre><code>drwxrwxr-x 2 localuser localgroup 4096 2010-12-12 12:04 hostshare/ </code></pre> <p>The "localuser" is in these groups:</p> <pre><code>localgroup adm dialout cdrom plugdev lpadmin admin sambashare </code></pre> <p>Any idea what is going on here? Google seems to suggest that the "sticky" bit needs to be set on <code>/sbin/mount.cifs</code> <code>/sbin/mount.smbfs</code> and <code>/sbin/umount.cifs</code></p> <p>Is this a bug?</p>
1916
null
null
2013-10-11T23:39:07.297
smbmount returns "operation not permitted"
[ "10.04", "mount", "samba" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-04T12:27:38.883", "id": "26997", "postId": "17131", "score": "1", "text": "Did you find an answer to this?", "userDisplayName": "user10194", "userId": null } ]
{ "accepted": true, "body": "<p>See this bug in Ubuntu:</p>\n\n<p><a href=\"https://bugs.launchpad.net/ubuntu/+source/samba/+bug/563805\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/samba/+bug/563805</a></p>\n\n<p>and the related bug in Debian:</p>\n\n<p><a href=\"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571323\" rel=\"nofollow\">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571323</a></p>\n\n<p>This is an intentional change in behaviour for security reasons. Instead of using mount with the setuid bit set you might want to run it using sudo.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-03T15:11:45.883", "id": "21377", "postId": "19802", "score": "0", "text": "ah, ok, bummer for me!", "userDisplayName": null, "userId": "1916" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-03T06:31:52.763", "id": "19802", "lastActivityDate": "2011-01-03T06:31:52.763", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "730", "parentId": "17131", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Did you previously customize the smb.conf? If not, has the Windows system you're connecting to changed its configuration since the last time you connected? One possible solution: Add the following in your <strong>/etc/samba/smb.conf</strong></p>\n\n<blockquote>\n <p>client...
null
null
null
null
null
17132
1
17139
2010-12-12T20:31:17.173
0
604
<p>I'd like to upgrade my distribution (10.04 to 10.10) and since I have customized Ubuntu quite a bit, I was wondering what is likely to "break".</p> <p>If that can help, here is a sample list of things that I have customized (although I'd like a general answer):</p> <ul> <li>Gnome panel</li> <li>Keyboard shortcuts</li> <li>SSHd config</li> <li>Apache + config</li> <li>Nautilus (added some plugins)</li> <li>Compiz config</li> <li>etc.</li> </ul>
2331
1067
2010-12-12T21:14:10.047
2010-12-12T21:46:01.723
Distribution upgrade: what is likely to break?
[ "10.04", "upgrade" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T20:43:47.370", "id": "18320", "postId": "17132", "score": "1", "text": "Alright post your output of `sudo apt-get update`", "userDisplayName": null, "userId": "5691" } ]
{ "accepted": true, "body": "<p>A distribution upgrade will, in all probability, not change any of your configuration. </p>\n\n<ul>\n<li><p>In rare cases, it can overwrite configuration some files in /etc, but never in your home directory. Make sure to back up all configuration that isn't easily restorable. Of course, you should always back up everything. </p>\n\n<ul>\n<li>In case any configuration does break, don't restore your backed up configuration files. Use them as a guide to re-configure what ever software. </li>\n</ul></li>\n<li><p>To rule out any incompatibilities, it's recommended that you try out the new version via a live CD. Even though it would be surprising.</p></li>\n</ul>\n\n<p>I agree with DKuntz2's recommendation to back up, however - I disagree with his recommendation to restore. Restoring old configuration <em>will</em> cause problems at some point. The upgrade process is very smart about preserving your data while upgrading programs. They, in turn, are very smart about handling old data. The will do <em>the best they can</em> with your customisations and changes. </p>\n\n<p>Here's how to proceed:</p>\n\n<ul>\n<li><p>Back up all your data, as you normally would.</p></li>\n<li><p>Read the <a href=\"https://wiki.ubuntu.com/MaverickMeerkat/ReleaseNotes\" rel=\"nofollow\">Release Notes</a>. Especially check the <em>Known Issues</em> section for regressions.</p></li>\n<li><p>Try out the new version with a live cd or live usb image.</p></li>\n<li><p>Use the provided methods to upgrade, that is hit <kbd>Alt</kbd>+<kbd>F2</kbd> and type <code>do-release-upgrade</code>, do <em>not</em> change your source.list file, this will result in partial upgrades, leaving old version of software on your system instead of upgrading them.</p></li>\n</ul>\n\n<p>One important note though: If you have used anything like Automatix or EasyUbuntu, that is any repositories that are <em>unsupported and not recommended</em>, all they have done may very well break. Remove this software before upgrading, to be safe. (<a href=\"https://help.ubuntu.com/community/UpgradeNotes\" rel=\"nofollow\">ref</a>)</p>\n\n<p>Please consult any of the sysadmins here on Apache, or just back it up completely. I'm pretty confident in sending you off to upgrade, very much assuming that your recovery plan won't be needed, but I can't be so confident about Apache. I've just never used it.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-12T21:49:36.183", "id": "18330", "postId": "17139", "score": "1", "text": "As far as Apache is concerned, it's vital that the document root be backed up regularly (this is /var/www by default in Ubuntu). It's unlikely that the upgrade process will step on anything else Apache-related in my experience, though I'll point out again that while I've tested 10.10 on a few machines I've not done this specific upgrade.", "userDisplayName": null, "userId": "2315" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T21:43:57.163", "id": "17139", "lastActivityDate": "2010-12-12T21:43:57.163", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "17132", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Copy your home folder (the whole thing, including the hidden files) to another drive/partition, than upgrade, than replace the newly created home folder with the copy. This will keep your files and settings intact. Now all you need to do is install your new applications (actu...
null
null
null
null
null
17134
1
17135
2010-12-12T20:40:02.190
46
31865
<p>Is there anyway to get Rhythmbox to stop playing the current track when it closes without first pausing/stopping the song manually? </p>
7255
235
2013-04-08T14:05:02.883
2021-05-08T21:50:19.077
Rhythmbox still plays songs after exit
[ "rhythmbox" ]
7
4
CC BY-SA 3.0
[ { "creationDate": "2014-08-03T04:27:01.823", "id": "682267", "postId": "17134", "score": "7", "text": "I recommend just nixing the program until it's made to function reasonably. There are more appropriately set up alternatives. I gather that's the best way to vote in Ubuntu.", "userDisplayN...
{ "accepted": true, "body": "<p>This is intentionally the default behaviour: allowing you to minimise (\"close\") Rhythmbox and control it from the Sound menu.</p>\n\n<p>To work around this you need to \"quit\" Rhythmbox by selecting File->Quit in the menu, or using the keyboard shortcut <kbd>Ctrl</kbd>+<kbd>Q</kbd>.</p>\n\n<hr>\n\n<p>Related Question: </p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/454177/is-there-a-plugin-for-rhythmbox-to-exit-on-close\">Is there a plugin for Rhythmbox to exit on close?</a></li>\n</ul>\n", "commentCount": "11", "comments": [ { "creationDate": "2013-11-20T11:56:19.073", "id": "485090", "postId": "17135", "score": "17", "text": "Right-click on the launcher Icon and selecting Quit doesn't really quit. That's stupid. Plus, there is no icon in the status bar saying it's running. I have to re-open it and manually go File > Quit", "userDisplayName": null, "userId": "217306" }, { "creationDate": "2014-04-16T20:50:53.880", "id": "589124", "postId": "17135", "score": "7", "text": "I'm running Rhythmbox 3.0.1 on Ubuntu 14.04 and there is no File -> Quit nor will it close with `Ctrl`+`Q`.", "userDisplayName": null, "userId": "144847" }, { "creationDate": "2015-03-10T05:08:42.733", "id": "828228", "postId": "17135", "score": "2", "text": "On Ubuntu 14.04 as of today, i have to do: killall -9 rhythmbox", "userDisplayName": null, "userId": "384397" }, { "creationDate": "2015-05-23T22:11:20.367", "id": "891222", "postId": "17135", "score": "1", "text": "@anjan on *Ubuntu 14.04* you can close it with *Ctrl+W*", "userDisplayName": null, "userId": "413089" }, { "creationDate": "2016-10-23T11:26:54.633", "id": "1286996", "postId": "17135", "score": "0", "text": "To be clear for people like me who are new to Ubuntu: once the Rhythmbox window is closed, the controls for it are accessed by clicking the loudspeaker icon in the top right hand corner.", "userDisplayName": null, "userId": "605654" }, { "creationDate": "2016-11-22T03:58:49.860", "id": "1310141", "postId": "17135", "score": "0", "text": "I actually guessed that I could control it from the speaker icon on top, but NO. When I clicked it, it showed only SMPlayer and VLC, even though Rhythmbox was playing and the other two were not even running. I had no other way but to rerun RhythmBox and stop the song there. Is this a bug? Ubuntu 16.10.", "userDisplayName": null, "userId": "470399" }, { "creationDate": "2017-09-11T08:32:16.840", "id": "1522294", "postId": "17135", "score": "14", "text": "This is plain wrong interaction design. The *Quit* action does not quit. I would consider this a bug.", "userDisplayName": null, "userId": "337853" }, { "creationDate": "2020-09-07T20:29:48.267", "id": "2157665", "postId": "17135", "score": "3", "text": "When it's playing and I have clicked quit, there is no way to control the player except by opening it again. I don't have anything in my sound menu whatsoever except the system volume button (Ubuntu 20.04)", "userDisplayName": null, "userId": "1102931" }, { "creationDate": "2023-02-23T23:02:59.803", "id": "2546173", "postId": "17135", "score": "1", "text": "12 years later and this is still a problem. the only way to stop the music is to re-open Rythymbox.", "userDisplayName": null, "userId": "218010" }, { "creationDate": "2023-04-27T01:34:11.057", "id": "2566927", "postId": "17135", "score": "1", "text": "Crazy this has never been addressed. Absolutely terrible UI design and default behavior. In Ubuntu 22.04 I have no sound options in the toolbar other than a global volume. And right click -> menu -> close does not stop the music. In Ubuntu 22.04, the entire menu UI is horrendous.", "userDisplayName": null, "userId": "206820" }, { "creationDate": "2024-03-19T23:22:42.677", "id": "2645859", "postId": "17135", "score": "0", "text": "I uninstalled rythmbox, and it still playing lol. Had to kill the process. What an awful program, and I can't believe Ubuntu ships with it. I'm going to make my own", "userDisplayName": null, "userId": "624301" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-12T20:48:51.580", "id": "17135", "lastActivityDate": "2014-06-13T11:17:06.390", "lastEditDate": "2017-04-13T12:24:58.463", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "866", "parentId": "17134", "postTypeId": "2", "score": "37" }
[ { "accepted": true, "body": "<p>This is intentionally the default behaviour: allowing you to minimise (\"close\") Rhythmbox and control it from the Sound menu.</p>\n\n<p>To work around this you need to \"quit\" Rhythmbox by selecting File->Quit in the menu, or using the keyboard shortcut <kbd>Ctrl</kbd>+<kb...
null
null
null
null
null
17136
1
17138
2010-12-12T21:01:10.837
24
7166
<p>Both gnome terminal and terminator (which I am using on my laptop these days) can be customised to look very pretty. By using full screen and keeping desktop clutter down to a minimum it's possible to get a good-sized area to work in, even on my little EeePC.</p> <p>However, there is one element that I don't seem to be able to control. Gnome's tabs are <em>massively</em> oversized and ugly at best. They don't fit into the theme at all which looks silly, but for me the biggest problem is the screen real estate that is wasted. On a small laptop screen in particular, it's a real problem.</p> <p>Is there a way to change these tabs? I realize it's possible to put them up the side of the window, but then they take up <em>even more</em> space!</p> <p>If this isn't possible with theme-ing or gnome configuration, are there any terminal programs like terminator that can handle the tabs themselves? (Ideally in a more elegant fashion!)</p> <p><img src="https://i.stack.imgur.com/vjp8p.png" alt="alt text"></p>
317
1067
2011-01-22T02:30:41.010
2015-07-28T15:53:26.617
Gnome Terminal tabs ugly and oversized
[ "command-line", "gnome-terminal", "terminator" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T23:20:45.743", "id": "18349", "postId": "17136", "score": "2", "text": "Actually, the tabs fit in perfectly with the Gtk theme you use, because it's the theme that paints them like that. It's possible to override a theme for 1 application though (see Gtk theming ma...
{ "accepted": true, "body": "<p>Try <code>screen</code>.</p>\n\n<p>Create different \"tabs\" with <code>Ctrl-a c</code> and switch between them with <code>Ctrl-a Ctrl-a</code> (to toggle to the window displayed previously) or directly with <code>Ctrl-a &lt;number of tab&gt;</code> (to switch to window number \"number of tab\").</p>\n\n<p><code>Ctrl-a \"</code> presents a list of all windows for selection.</p>\n\n<p>For more information take a look at <code>man screen</code>.</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-12-12T21:53:49.463", "id": "18331", "postId": "17138", "score": "2", "text": "Or even `byobu`, which is just like screen, but presented in Technicolor® ;-)", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-12T22:41:53.137", "id": "18338", "postId": "17138", "score": "0", "text": "Yeah, I'm aware I could use screen instead but I'm typically using emacs and I'd rather not lose ctrl + a, for instance. I may end up going down this route by customising screen but it is nice having the tab controls be consistent with the rest of the OS so if there's a way to reduce the padding on the gnome tabs I'd prefer that!", "userDisplayName": null, "userId": "317" }, { "creationDate": "2010-12-12T23:17:32.597", "id": "18346", "postId": "17138", "score": "1", "text": "@adamnfish: you can configure the screen prefix shortcut to something else.", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-12-13T08:54:57.210", "id": "18388", "postId": "17138", "score": "0", "text": "@adamnfish: You can change the widget's looks in `/usr/share/themes/Ambiance/gtk-2.0/apps/gnome-terminal.rc` but I doubt you can do anything about the tab's size.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2010-12-15T15:24:00.137", "id": "18769", "postId": "17138", "score": "0", "text": "I've spent some time customising screen and this seems to be the best solution so far - in particular because of all the unrelated 'issues' that are solved when one uses screen. However it bothers me not being able to scroll back through the history quickly and you can't use § as the screen prefix key so I'm yet to find a way to get really comfortable with it. Certainly, I'm open to any other suggestions although I will accept this answer for now!", "userDisplayName": null, "userId": "317" }, { "creationDate": "2011-11-15T22:39:35.827", "id": "89850", "postId": "17138", "score": "5", "text": "-1 Sometimes I need to use screen, sometimes I need to used tabs. I would like both of them to look nice.", "userDisplayName": null, "userId": "5191" }, { "creationDate": "2012-02-07T22:54:47.070", "id": "118250", "postId": "17138", "score": "3", "text": "I'd recommend `tmux` over `screen`: better (imo) windows ('tabs') and 'panes' (vertical and horizontal screen splitting. (I run `emacs` inside of a `tmux` session exclusively.)", "userDisplayName": null, "userId": "31420" }, { "creationDate": "2013-11-02T14:11:08.327", "id": "472935", "postId": "17138", "score": "0", "text": "`screen` is great, but if you're going to do any configuration, `tmux` does the same thing, but has a way better manual and config file.", "userDisplayName": null, "userId": "8515" }, { "creationDate": "2018-05-20T06:16:23.727", "id": "1690464", "postId": "17138", "score": "0", "text": "This is a workaround. Additional software to provide an alternate implementation doesn't solve the underlying issue, which is with gnome terminal's tabs.", "userDisplayName": null, "userId": "344356" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-12T21:27:05.790", "id": "17138", "lastActivityDate": "2013-08-04T10:22:54.367", "lastEditDate": "2013-08-04T10:22:54.367", "lastEditorDisplayName": null, "lastEditorUserId": "94914", "ownerDisplayName": null, "ownerUserId": "7240", "parentId": "17136", "postTypeId": "2", "score": "-1" }
[ { "accepted": true, "body": "<p>Try <code>screen</code>.</p>\n\n<p>Create different \"tabs\" with <code>Ctrl-a c</code> and switch between them with <code>Ctrl-a Ctrl-a</code> (to toggle to the window displayed previously) or directly with <code>Ctrl-a &lt;number of tab&gt;</code> (to switch to window nu...
null
null
null
null
null
17144
1
17146
2010-12-12T22:41:08.243
9
3656
<p>I have a file from another pc with ubuntu, the owner of the file is my user account from this pc. How do I change the owner to my useraccount on another pc so that I can use it?</p> <p>When i try to change file permissons via nautilus i get the message you're not the owner, that's the reason you can't file permissions.</p> <p>But i'm the owner just on another Ubuntu with another account. Do i first have to change the rights on the origin Filesystem or can i take the rights somehow over? </p>
7155
7155
2010-12-12T22:50:57.153
2020-11-08T20:56:41.753
How can I become the owner of a file that origins from another pc / user?
[ "filesystem", "permissions" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><strong>Command line instructions:</strong></p>\n\n<blockquote>\n <p>Use the <a href=\"http://nersp.nerdc.ufl.edu/~dicke3/nerspcs/chown.html\" rel=\"nofollow noreferrer\"><code>chown</code></a> command.</p>\n \n <p>Example:</p>\n \n <p><code>sudo chown user file</code></p>\n \n <p>Where <code>user</code> is the username on the second pc. This needs to be run from the second pc.</p>\n</blockquote>\n\n<p><strong>GUI instructions:</strong></p>\n\n<blockquote>\n <p>Run Nautilus with sudo privileges</p>\n \n <ul>\n <li><kbd>Alt</kbd>+<kbd>F2</kbd> </li>\n <li>Enter <code>gksu nautilus</code>.</li>\n <li><p>Enter your password.</p></li>\n <li><p>Now you can right-click on a file, go to the <em>Permissions</em> tab and select the new owner from the <em>Owner</em> combobox.</p>\n \n <p><img src=\"https://i.stack.imgur.com/0YeLh.png\" alt=\"alt text\"></p></li>\n </ul>\n</blockquote>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-13T19:39:25.510", "id": "18473", "postId": "17146", "score": "0", "text": "worth a +1 :P", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-12T22:56:30.097", "id": "17146", "lastActivityDate": "2010-12-13T18:48:24.480", "lastEditDate": "2010-12-13T18:48:24.480", "lastEditorDisplayName": null, "lastEditorUserId": "114", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "17144", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p><strong>Command line instructions:</strong></p>\n\n<blockquote>\n <p>Use the <a href=\"http://nersp.nerdc.ufl.edu/~dicke3/nerspcs/chown.html\" rel=\"nofollow noreferrer\"><code>chown</code></a> command.</p>\n \n <p>Example:</p>\n \n <p><code>sudo chown user file</code></...
null
null
null
null
null
17151
1
17156
2010-12-12T23:08:28.910
2
451
<p>During Ubuntu installation I chose to encrypt my home folder. Accidently after installation I skipped the dialog in ubuntu where I was asked to setup encryption (choose key and so on ...)</p> <p>How can I resume and complete the encryption process?</p> <p>Update: The Encryption dialog box after installation just offers to show your passphrase for note it. Enryption process after installation is fully completed with a random generated passphrase during installation.</p>
7155
7155
2010-12-14T11:11:46.200
2010-12-14T11:15:19.847
Accidentally skipped encryption dialog after installation. How to resume?
[ "10.10", "installation", "ecryptfs" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>These links were helpful</p>\n\n<p><a href=\"http://wiki.ubuntuusers.de/ecryptfs/Nutzung\" rel=\"nofollow noreferrer\">http://wiki.ubuntuusers.de/ecryptfs/Nutzung</a></p>\n\n<p><a href=\"http://wiki.ubuntuusers.de/ecryptfs/Datenrettung\" rel=\"nofollow noreferrer\">http://wiki.ubuntuusers.de/ecryptfs/Datenrettung</a></p>\n\n<p><a href=\"https://bugs.launchpad.net/ecryptfs/+bug/359997\" rel=\"nofollow noreferrer\">https://bugs.launchpad.net/ecryptfs/+bug/359997</a></p>\n\n<p><a href=\"https://bugs.launchpad.net/ecryptfs/+bug/359997/comments/2\" rel=\"nofollow noreferrer\">https://bugs.launchpad.net/ecryptfs/+bug/359997/comments/2</a></p>\n\n<p><a href=\"https://bugs.launchpad.net/ecryptfs/+bug/359997/comments/3\" rel=\"nofollow noreferrer\">https://bugs.launchpad.net/ecryptfs/+bug/359997/comments/3</a></p>\n\n<p>This command to read out your passphrase which was created although i skipped the mentioned dialog</p>\n\n<pre><code>ecryptfs-unwrap-passphrase $HOME/.ecryptfs/wrapped-passphrase\n</code></pre>\n\n<p>These commands to check if there are already the ecrypt directories</p>\n\n<pre><code>mount | grep ecryptfs\n\nls -aFl | grep ecryptfs\n</code></pre>\n\n<p>Update: Also check this <a href=\"https://askubuntu.com/questions/17216/how-can-i-determine-if-just-the-private-folder-is-encrypted-or-the-whole-home-di\">Question with Answer</a> for information on how to determine which folders are encypted.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T00:35:50.660", "id": "17156", "lastActivityDate": "2010-12-14T11:15:19.847", "lastEditDate": "2017-04-13T12:23:23.910", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "7155", "parentId": "17151", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>If you already have a regular (non encrypted) home dir, and you want to convert it to an encrypted home, you must follow this procedure: \n<a href=\"http://blog.dustinkirkland.com/2009/06/migrating-to-encrypted-home-directory.html\" rel=\"nofollow\">http://blog.dustinkirkland...
null
null
null
null
null
17153
1
17198
2010-12-12T23:16:52.257
4
1075
<p>My Maverick freezes constantly, no matter what I'm doing. Browsing with chromium or firefox, using cmus to play music, or copying 24 gb files from partition to partition while burning a CD, it will freeze, and only thing I can do is unplug it from the grid, no button will work.</p> <p>Extra information:</p> <ul> <li><p><a href="http://paste.ubuntu.com/543142/" rel="nofollow">kern.log</a></p></li> <li><p><a href="http://paste.ubuntu.com/543143/" rel="nofollow">dmesg output</a></p></li> </ul> <p>Any help appreciated! If it's hardware, so I can know what to do and what to backup :)</p> <p>Command "sensors" says:</p> <p>acpitz-virtual-0</p> <p>Adapter: Virtual device</p> <p>temp1: +40.0°C (crit = +95.0°C) </p> <p>k8temp-pci-00c3</p> <p>Adapter: PCI adapter</p> <p>Core0 Temp: +24.0°C<br> Core1 Temp: +24.0°C</p>
7263
667
2010-12-13T17:12:31.020
2011-02-13T17:44:05.900
10.10 Freezes totally
[ "10.10", "freeze" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-12T23:19:01.007", "id": "18348", "postId": "17153", "score": "2", "text": "Plase check /var/log/kern.log for any errors that might be related to the freeze, also please note that on hard freezes most PCs can be powered off with the power button by just keeping the butt...
{ "accepted": true, "body": "<p>It looks to me that there is a serious bug in <strong>libgobject</strong>. If you search for &quot;segfault&quot;, you will see that just after nautilus crashes the machine stops and after few lines, time starts at 0 again as you reset your machine.</p>\n<blockquote>\n<p>nautilus[1634]: segfault at 20 ip 004dfddf sp bfeb2ab0 error 4 in libgobject-2.0.so.0.2600.0[4b3000+40000]</p>\n<p>Dec 12 19:33:29 Hyperion kernel: Kernel logging (proc) stopped.</p>\n</blockquote>\n<p>You should report a bug with command <strong>ubuntu-bug ubuntu-desktop</strong> and include kern.log in the report.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-12-14T22:55:17.143", "id": "18644", "postId": "17198", "score": "0", "text": "Bug reported. Will reinstall fix the problem, since i can't do pretty much anything ?", "userDisplayName": null, "userId": "7263" }, { "creationDate": "2010-12-14T23:09:35.857", "id": "18646", "postId": "17198", "score": "0", "text": "If the problem began after last update, then you can lock/prevent libgobject from updating after fresh install to the latest version. How to do this look here http://www.liberiangeek.net/2010/09/block-program-package-future-upgrades-ubuntu-10-0410-10-maverick-meerkat/", "userDisplayName": null, "userId": "4777" }, { "creationDate": "2010-12-15T14:40:27.773", "id": "18759", "postId": "17198", "score": "0", "text": "Seems like any major hard disk interaction will freeze my system. That means that transmission verifying torrent data = freeze; using wine to \"install\" deus ex = freeze; using midnight commander to copy about 700 mb of data = freeze... Now im puzzled", "userDisplayName": null, "userId": "7263" }, { "creationDate": "2010-12-15T15:22:58.970", "id": "18768", "postId": "17198", "score": "0", "text": "This libgobject file is part of libglib library which is very common. If you don't want to risk reinstalling and upgrading to same problem, then try few hours with live session from install cd to confirm my theory. I just checked, wine does not use libgobject so it is a bit weird, it could be a background operation from gnome that caused the freeze though.", "userDisplayName": null, "userId": "4777" }, { "creationDate": "2010-12-16T15:55:33.310", "id": "18948", "postId": "17198", "score": "0", "text": "Reinstalation did the trick, for now :)", "userDisplayName": null, "userId": "7263" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T13:17:24.950", "id": "17198", "lastActivityDate": "2010-12-13T17:51:07.970", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "4777", "parentId": "17153", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>It looks to me that there is a serious bug in <strong>libgobject</strong>. If you search for &quot;segfault&quot;, you will see that just after nautilus crashes the machine stops and after few lines, time starts at 0 again as you reset your machine.</p>\n<blockquote>\n<p>naut...
null
null
null
null
null
17157
1
70295
2010-12-13T01:06:45.823
38
38383
<p>On GNOME the screen locks when I suspend, and I find that a bit annoying (no one else in the house uses ubuntu anyway haha). What can I do to stop this?</p>
1992
null
null
2022-08-23T10:12:01.060
How do I stop the screen from being locked on suspend?
[ "gnome", "suspend-resume", "screensaver", "lock-screen" ]
9
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<h2>For 11.10</h2>\n\n<p>What worked for me on Ubuntu 11.10 is to execute the following in a terminal:</p>\n\n<pre><code>gsettings set org.gnome.desktop.lockdown disable-lock-screen 'true'\n</code></pre>\n\n<p>You can also install <a href=\"http://apt.ubuntu.com/p/dconf-tools\">dconf-tools</a> and use dconf-editor to set the same setting manually.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-10-25T00:36:34.550", "id": "81300", "postId": "70295", "score": "5", "text": "this also disables the manual lock with ctrl+alt+L. Any ways to disable **only** the automatic lock?", "userDisplayName": null, "userId": "17323" }, { "creationDate": "2011-12-08T13:11:45.500", "id": "97873", "postId": "70295", "score": "6", "text": "In order to be able using the manual lock functionality after this fix, you can assign in _System Settings_ -> _Keyboard_ -> _Shortcuts_, _Custom_ the **Ctrl+Alt+L** combination to this command: `gdmflexiserver -xnest`.\n\n\nNote: I've found the command here: http://ubuntuforums.org/showthread.php?t=1030073, I'm not sure if on my computer gdm coexists with lightdm, but for me it works.", "userDisplayName": null, "userId": "10543" }, { "creationDate": "2011-12-08T13:29:58.170", "id": "97876", "postId": "70295", "score": "0", "text": "it appears that the command ships with lightdm (apt-file search /usr/lib/lightdm/lightdm/gdmflexiserver), so the suggestion is safe. Jorge, can you please update your answer?", "userDisplayName": null, "userId": "10543" }, { "creationDate": "2012-03-28T02:02:16.230", "id": "138072", "postId": "70295", "score": "0", "text": "FYI, this also works for 12.04 (as of the beta at least). That is, both the answer and alexef's fix (except I had to use the command /usr/lib/lightdm/lightdm/gdmflexiserver -xnest rather than just gdmflexiserver -xnest since apparently I have gdm installed too).", "userDisplayName": null, "userId": "693" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-10-21T16:08:17.323", "id": "70295", "lastActivityDate": "2011-10-21T17:06:27.153", "lastEditDate": "2011-10-21T17:06:27.153", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "29252", "parentId": "17157", "postTypeId": "2", "score": "36" }
[ { "accepted": null, "body": "<h2>For 11.04 and earlier:</h2>\n\n<p>Did you verify that the option in the screen-saver about LOCKING the PC is off. Go to System > Preferences > Screensaver</p>\n\n<p>Verify that <strong>Lock Screen when Screensaver is active</strong> is turned off. Also verify that <strong>Ac...
null
null
null
null
null
17166
1
17167
2010-12-13T03:19:11.183
6
4325
<p>I created a shell script <code>/usr/local/bin/suspend</code> with the following content:</p> <pre><code>#! /bin/sh # Take an optional delay parameter if [ "$#" -gt "0" ]; then sleep "$1" fi # Put the system to sleep dbus-send --system --print-reply --dest="org.freedesktop.Hal" \ /org/freedesktop/Hal/devices/computer \ org.freedesktop.Hal.Device.SystemPowerManagement.Suspend \ int32:0 </code></pre> <p>If I <code>chmod +x</code> and run the script by invoking it directly (e.g., just typing <code>suspend</code> or <code>/usr/local/bin/suspend</code> on the command line), nothing happens and the shell hangs&mdash;it doesn't even respond to Ctrl-C; I have to switch to a new shell and kill the <code>bash</code> process (which has no apparent children). </p> <p>The script works fine if I invoke it in any of the following ways:</p> <ul> <li>Using <code>sh /usr/local/bin/suspend</code>.</li> <li>Using <code>. /usr/local/bin/suspend</code>.</li> <li>Renaming it to <code>suspend.sh</code> and invoking <code>/usr/local/bin/suspend.sh</code> (or just <code>suspend.sh</code>, since it's in the <code>PATH</code>).</li> </ul> <p>The last option is fine, but still I wonder: what exactly is wrong with not using the <code>.sh</code> extension?</p>
5758
null
null
2011-05-04T13:26:54.697
Why does my shell script hang without the .sh extension?
[ "bash", "scripts" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T06:55:26.553", "id": "18379", "postId": "17166", "score": "1", "text": "Remember you can use \"which command\" to know what exactly is run when you issue \"command\".", "userDisplayName": null, "userId": "1938" }, { "creationDate": "2010-12-13T13:13:...
{ "accepted": true, "body": "<p><code>suspend</code> is a bash builtin,</p>\n\n<pre><code>suspend: suspend [-f]\nSuspend shell execution.\n\nSuspend the execution of this shell until it receives a SIGCONT signal.\nUnless forced, login shells cannot be suspended.\n\nOptions:\n -f force the suspend, even if the shell is a login shell\n\nExit Status:\nReturns success unless job control is not enabled or an error occurs.\n</code></pre>\n\n<p>and as builtins take precedence, just typing <code>suspend</code> would behave exactly as you describe: the shell blocks until you kill it (if you <code>kill -CONT</code> it, it resumes).</p>\n\n<p>That you're seeing this same behavior by invoking it with the path is either an experimental error, or a bug in the shell. I'd suspect the former before the latter.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-13T13:12:50.557", "id": "18405", "postId": "17167", "score": "0", "text": "I suspected something like this might be the case, but `which suspend` and `man suspend` both returned nothing. The former isn't surprising, because `which` doesn't handle builtins, but the latter is irritating.", "userDisplayName": null, "userId": "5758" }, { "creationDate": "2010-12-13T13:47:10.627", "id": "18418", "postId": "17167", "score": "0", "text": "`help suspend` is the ticket.", "userDisplayName": null, "userId": "711" }, { "creationDate": "2011-01-22T17:44:33.463", "id": "24603", "postId": "17167", "score": "1", "text": "`which` is a useless command. Use the builtin `type` instead. Try, `type suspend`, `type -a suspend` and `type -P suspend`. `help type` to learn more. But really, just avoid naming your scripts with the name of a shell builtin.", "userDisplayName": null, "userId": "9016" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T03:34:23.153", "id": "17167", "lastActivityDate": "2010-12-13T03:34:23.153", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "711", "parentId": "17166", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p><code>suspend</code> is a bash builtin,</p>\n\n<pre><code>suspend: suspend [-f]\nSuspend shell execution.\n\nSuspend the execution of this shell until it receives a SIGCONT signal.\nUnless forced, login shells cannot be suspended.\n\nOptions:\n -f force the suspend, even ...
null
null
null
null
null
17169
1
17205
2010-12-13T03:56:43.437
0
2092
<p>First, I used Ubuntu Tweak's clean up feature, so I may have accidentally removed something important through that...</p> <p>So I just moved my home folder from the main partition to it's own partition so that I don't have to worry about it dieing if I change distros or upgrade distros.</p> <p>So the path I took was Boot from live usb. Opened GParted, shrink the main partition, create a new partition out of that. Moved the current /home content to /home_backup. Edited fstab to boot the new partition as home.</p> <p>I rebooted. I assumed the instructions I was working off of would work, but was a tad confused when through the instructions I never saw anything about copying the /home_backup to the /home directories. Anyways, upon login I got lots of errors, and decided I should check out what went wrong.</p> <p>I rebooted into recovery mode and listed the contents of /home. Nothing, so I copied /home_backup/don to /home (<code>cp -r</code>).</p> <p>I rebooted and found that I didn't have ownership of the directory, so I opened the terminal and gave myself ownership (<code>chown don:don /home/don</code>) and rebooted again.</p> <p>This time when I logged in I found that everything was working, but I didn't have sound. So, as far as I can tell all of my apps are still working, and there are no other errors, but I can't play sound.</p> <p>The sound icon in my panel is just an empty, blank speaker (I'm using the Faenza icons, the speaker icon is lighter than normal). If I attempt to mute/unmute or raise/lower the volume with my hardware keys, nothing happens. If I click on the icon and choose "Sound Preferences" I get an error saying "<code>Waiting for sound system to respond</code>".</p> <p>I have restarted the computer twice, I've also reinstalled everything containing the word "alsa" through the synaptic manager.</p> <p>I would assume it's missing a file, but I'm not sure. Right now I've run a dist-update (for different reasons), so I don't know if that'll have any effect on the problem.</p>
6647
null
null
2010-12-13T14:10:00.727
Missing Sound After Cleanup and Moving of Home Directory
[ "10.10", "sound", "partitioning", "home-directory" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It sounds (no pun intended) like some hidden files in home not being transfered to your new home. Check if you have any .pulse files in your home folder. The other option is about permissions easiest way to check is by running this command in terminal.</p>\n\n<pre><code>pulseaudio --start\n</code></pre>\n\n<p>And check the output if it looks somthing like this</p>\n\n<pre><code>E: core-util.c: Home directory /home/alpha not ours.\nW: lock-autospawn.c: Cannot access autospawn lock.\nE: main.c: Failed to acquire autospawn lock\n</code></pre>\n\n<p>then it is probably a permisions issue which wouldn't surprise me. if this is the case then check out this post by drs305 on the Ubuntu forums.</p>\n\n<p><a href=\"http://ubuntuforums.org/showthread.php?p=6208727\" rel=\"nofollow\">Solving .dmrc and $HOME Permission Errors</a></p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-13T17:27:59.587", "id": "18453", "postId": "17205", "score": "0", "text": "I got a slightly different error, instead of Home directory /home/alpha not ours I got \"Failed to create secure directory: Permissions denied\".", "userDisplayName": null, "userId": "6647" }, { "creationDate": "2010-12-13T18:01:48.250", "id": "18461", "postId": "17205", "score": "0", "text": "Marked as answer because it lead me to the answer", "userDisplayName": null, "userId": "6647" }, { "creationDate": "2010-12-13T18:29:29.293", "id": "18465", "postId": "17205", "score": "0", "text": "I keep forgeting to make a home partition when Upgrading no patience :) I would have checked the exact directory but I have been forced to use Windows Vista :( for almost two weeks as my partner has pinched my laptop and wont let me install Ubuntu on Her machine how unfair is that!!!", "userDisplayName": null, "userId": "6450" }, { "creationDate": "2010-12-13T23:19:40.373", "id": "18493", "postId": "17205", "score": "0", "text": "It's Pulse Audio (.pulse), and I found the exact problem wasn't permissions (everything was set to 0777), but ownership, so the root was still owner, not me.", "userDisplayName": null, "userId": "6647" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T14:10:00.727", "id": "17205", "lastActivityDate": "2010-12-13T14:10:00.727", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6450", "parentId": "17169", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It sounds (no pun intended) like some hidden files in home not being transfered to your new home. Check if you have any .pulse files in your home folder. The other option is about permissions easiest way to check is by running this command in terminal.</p>\n\n<pre><code>pulse...
null
null
null
null
null
17172
1
17174
2010-12-13T05:07:33.633
5
768
<p>I'm trying to install and run a program a called <em>Remotedroid</em>, which lets you use your phone as a wireless keyboard and mouse. I'm used to windows automatically starting setup upon download and can't figure out how to initiate the install in Ubuntu.</p> <p>The program's website says its compatible with Linux and the readme file says to just click the extension <code>remotedroidserver.jar</code> to use, but it won't work and none of the files do anything.</p> <p>I've unzipped all the files and my Java is all up to date as far as i know, I think. I'm just not getting how to run a setup in Ubuntu.</p>
7274
527764
2017-03-13T08:33:12.787
2017-03-13T08:33:12.787
Installing a Java jar from a download
[ "software-installation", "java" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<ol>\n<li><p>Make sure you have either <a href=\"http://apt.ubuntu.com/p/openjdk-6-jre\" rel=\"nofollow noreferrer\">openjdk-6-jre<img src=\"https://hostmar.co/software-large\" alt=\"Install openjdk-6-jre\"></a>* <em>(recommended)</em> or if that doesn't work,<br>\n<a href=\"http://apt.ubuntu.com/p/sun-java6-bin\" rel=\"nofollow noreferrer\">sun-java6-bin<img src=\"https://hostmar.co/software-large\" alt=\"Install sun-java6-bin\"></a> installed.</p>\n\n<p><sub>*editor's note - replace 6 with 7, 8 or 9 etc as appropriate to your Ubuntu version</sub></p></li>\n<li><p>Once that is installed, right-click on <strong>RemoteDroidServer.jar</strong> and select <strong>Properties</strong>. In the <strong>Permissions</strong> tab, check <strong>Allow executing file as a program</strong>. </p>\n\n<p><img src=\"https://i.stack.imgur.com/iUneH.png\" alt=\"enter image description here\"></p></li>\n<li><p>In the <strong>Open With</strong> tab, select <strong>OpenJDK Java 6 Runtime</strong>. If that doesn't run your program,<br>\ntry <strong>Sun Java 6 Runtime</strong>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/A4TwI.png\" alt=\"alt text\"></p></li>\n<li><p>Now double-clicking on <strong>RemoteDroidServer.jar</strong> should work as expected.</p>\n\n<p><img src=\"https://i.stack.imgur.com/AjVa8.png\" alt=\"alt text\"></p></li>\n</ol>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-13T13:58:35.573", "id": "18419", "postId": "17174", "score": "1", "text": "Unless it really doesn't work with OpenJDK, I wouldn't suggest to use Sun Java, as it has integration issues with things like PulseAudio.", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-12-13T18:01:36.610", "id": "18460", "postId": "17174", "score": "0", "text": "@JanC Thanks for the suggestion, I have edited my answer.", "userDisplayName": null, "userId": "114" }, { "creationDate": "2010-12-15T06:42:48.257", "id": "18701", "postId": "17174", "score": "0", "text": "Thanks you very much for the advice. it opened perfectly.", "userDisplayName": null, "userId": "7274" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-13T05:41:28.657", "id": "17174", "lastActivityDate": "2017-03-13T08:31:24.103", "lastEditDate": "2017-03-13T08:31:24.103", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "17172", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<ol>\n<li><p>Make sure you have either <a href=\"http://apt.ubuntu.com/p/openjdk-6-jre\" rel=\"nofollow noreferrer\">openjdk-6-jre<img src=\"https://hostmar.co/software-large\" alt=\"Install openjdk-6-jre\"></a>* <em>(recommended)</em> or if that doesn't work,<br>\n<a href=\"ht...
null
null
null
null
null
17173
1
17175
2010-12-13T05:38:32.967
2
1060
<p>A particular software (GRASS GIS) I need is available in two different versions - stable(6.4.0) and unstable(7.0). Stable one is available in Ubuntu repository while developmental one can be installed from SVN. My question is can I have both installed in same machine? Will it cause problems in operation? Later if I need to uninstall the SVN installed version how can I do it? </p>
4157
4157
2010-12-13T06:44:36.183
2010-12-13T06:44:36.183
Install different versions of software
[ "versions", "software-sources" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T06:08:30.397", "id": "18377", "postId": "17173", "score": "3", "text": "If you edit your question to mention what the \"particular software\" is, we'd most likely be able to provide a more detailed answer.", "userDisplayName": null, "userId": "570" }, { ...
{ "accepted": true, "body": "<p>There should be no problem. The one from repository will be installed to default location. The one from SVN will need to be compiled, and then you can copy the binaries/other files to any location manually or using <code>make install</code> (if available). So compile the one from SVN and install(copy) it to ~/bin or any location other than where the one from repo installs and should be good to go. </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T06:03:31.703", "id": "17175", "lastActivityDate": "2010-12-13T06:07:01.927", "lastEditDate": "2010-12-13T06:07:01.927", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "6713", "parentId": "17173", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>There should be no problem. The one from repository will be installed to default location. The one from SVN will need to be compiled, and then you can copy the binaries/other files to any location manually or using <code>make install</code> (if available). So compile the one ...
null
null
null
null
null
17177
1
17200
2010-12-13T07:06:56.383
1
497
<p>I use 5.8.5 version of notepad++. The .tex file that I have edited on notepad++ could not be opened on gedit. The error I get is "character set could not be recognized"</p>
2968
3037
2010-12-13T08:41:08.020
2010-12-13T13:26:45.987
Error while opening tex files in gedit
[ "gedit", "character-set" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T08:03:47.030", "id": "18381", "postId": "17177", "score": "0", "text": "what charset does npp uses? default is ANSI, but you use an other? Try it with UTF-8...", "userDisplayName": null, "userId": "6341" }, { "creationDate": "2010-12-13T10:06:15.417"...
{ "accepted": true, "body": "<p>Two things to try (from the commandline):</p>\n\n<p>Firstly:</p>\n\n<p><code>fromdos filename.tex</code></p>\n\n<p>(requires the tofrodos package).</p>\n\n<p>Secondly:</p>\n\n<p><code>iconv -c -f UTF-8 -t UTF-8 filename.tex &gt; filename-copy.tex</code></p>\n\n<p>That should remove any characters not compatible with UTF-8.</p>\n\n<p>(You should also follow the advice in the other answer about putting <code>\\usepackage[utf8]{inputenc}</code> in your .tex source.)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T13:26:45.987", "id": "17200", "lastActivityDate": "2010-12-13T13:26:45.987", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1689", "parentId": "17177", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>My latex files are all utf8 and compile on windows and on linux.</p>\n\n<p>I would use <code>UTF-8 without BOM</code></p>\n\n<p>and add</p>\n\n<p><code>\\usepackage[utf8]{inputenc}</code></p>\n\n<p>in the main file to inform the <code>pdflatex</code> or <code>latex</code> com...
null
null
null
null
null
17178
1
17181
2010-12-13T07:36:44.970
3
1313
<p>There is a bug in Ubuntu that <a href="https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/589464" rel="nofollow">prevents bluetoothd from starting</a> when the computers wakes up from hibernate. So far there is no solution. I am fed upstarting bluetoothd manually every time, I think a possible workaround may be to automatically do the following on waking up:</p> <ol> <li>Check if bluetoothd is running.</li> <li>If it is not running, start it.</li> </ol> <p>I would appreciate if someone could give me an advice on how to implement that. Which startup script executes when Ubuntu wakes up from hibernate? How to check if the daemon is running?</p>
1353
null
null
2010-12-13T08:23:56.320
Execute command on wakeup
[ "hibernate", "bluetooth" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You should drop the file in /etc/pm/sleep.d . All the scripts in this dir are executed when a power manage event happens. You can check the first parameter to know what event has invoked the script.</p>\n\n<p>There is a nice example in this <a href=\"https://askubuntu.com/questions/8112/how-do-i-detect-when-the-system-suspends/8124#8124\">answer</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T08:11:51.280", "id": "17181", "lastActivityDate": "2010-12-13T08:11:51.280", "lastEditDate": "2017-04-13T12:25:03.423", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "211", "parentId": "17178", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You should drop the file in /etc/pm/sleep.d . All the scripts in this dir are executed when a power manage event happens. You can check the first parameter to know what event has invoked the script.</p>\n\n<p>There is a nice example in this <a href=\"https://askubuntu.com/que...
null
null
null
null
null
17184
1
null
2010-12-13T08:28:55.440
2
973
<p>I just reinstalled Ubuntu 10.10 with the same PC name as it was before. </p> <p>So after reconnecting to Ubuntu One my files lost (I think because in my new system folder which has Ubuntu One synchronized files become empty after reinstall). How can i undelete these files?</p>
null
1067
2010-12-13T08:31:27.933
2011-06-08T21:16:15.407
Undelete Ubuntu One files, deleted with reconnected PC
[ "ubuntu-one" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Ouch, that is certainly a big problem. At the moment there is not way to do so, but I know as a fact that you will get some help in #ubuntuone in freenode since they will nee your details etc... </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": n...
null
null
null
null
Khoss
17186
1
null
2010-12-13T08:44:35.917
5
3929
<p>I installed <a href="https://chrome.google.com/extensions/detail/oljmaangfgmmokjpnojhfblppgeijikp" rel="nofollow noreferrer">this extension</a> because I wanted to open apt links clicked in Chromium with <code>xdg-open</code>.</p> <p>I have looked at <a href="https://help.ubuntu.com/community/AptURL" rel="nofollow noreferrer">this help page</a> but haven't been successful. How can I achieve this?</p>
6822
691133
2018-08-20T05:23:26.833
2018-08-20T05:23:26.833
How can I make Chromium open apt links with xdg-open?
[ "apt", "chromium", "downloads", "apturl" ]
2
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I have downloaded Google Chrome 8.0.552.215</p>\n\n<p>Then i installed the suggested extension from your link.</p>\n\n<p>then i went to <a href=\"http://www.apturl.net/\" rel=\"nofollow\">http://www.apturl.net/</a> i searched for avidemux for example.</p>\n\n<p>I clicked on i...
null
null
null
null
null
17187
1
17201
2010-12-13T09:08:37.137
13
14844
<p>I would like to disable the <code>shutdown</code> command for all users, even root, on an Ubuntu Server installation.</p> <p>The reason I want to do this is to ensure that I don't get into the habit of shutting down the machine in this way, as I SSH into a lot of production machines at the same time as this one, and I don't want to accidentally shutdown one of the other machines by typing the command into the wrong window.</p> <p>The server I want do disable shutdown on only runs inside VirtualBox on my Windows desktop, and I only use it for local testing so it is not a problem if I can't shut it down from the command line.</p> <p>I have already mitigated the problem a bit by ensuring I have a different password on the VirtualBox image, but obviously if I am within the <code>sudo</code> 'window' on one of the production machines, I could still accidentally shut it down.</p> <p>My questions are:</p> <ol> <li>How do I disable the shutdown command?</li> <li>If I do disable the shutdown command, are there any consequences that I should be made aware of? Most specifically, <strong>will it disable support for ACPI shutdown</strong> that is the equivalent of pressing the power button on a physical machine? Could it affect other generic applications?</li> </ol> <p>For information, I just use this VirtualBox image for trying out shell scripts, running Tomcat and Java, and that kind of thing.</p>
2872
null
null
2016-04-16T09:10:05.847
Disabling shutdown command for all users, even root - consequences?
[ "shutdown", "root", "sudo" ]
6
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T10:20:30.260", "id": "18391", "postId": "17187", "score": "2", "text": "In my opinion changing such a core behaviour of the system to prevent human error is a bad idea. It is likely to bring more issues in the long term than it resolves. If you keep a different user...
{ "accepted": true, "body": "<p>If you usually run the command as <code>sudo shutdown</code>, rather than <code>sudo /sbin/shutdown</code>, then you can just setup a global shell alias for \"shutdown\" to just echo a message to the terminal instead. The real executable will still be there for all other purposes.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-15T18:15:16.737", "id": "18798", "postId": "17201", "score": "1", "text": "This sounds like the best way to go if you're just trying to interrupt a habit.", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2011-03-23T00:56:39.987", "id": "35380", "postId": "17201", "score": "2", "text": "But note that the obvious way to set up a shell alias (`alias shutdown=sl`) won't have any effect on the arguments to sudo. In zsh you can define aliases that do match against arguments, but I think not in bash. You could alias `sudo` to a shell script that refuses to do anything if the first argument is `shutdown`.", "userDisplayName": null, "userId": "1116" }, { "creationDate": "2011-04-05T23:51:13.153", "id": "37647", "postId": "17201", "score": "2", "text": "In other words, **this won't actually work.**", "userDisplayName": null, "userId": "1116" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T13:29:53.053", "id": "17201", "lastActivityDate": "2010-12-15T17:48:19.960", "lastEditDate": "2010-12-15T17:48:19.960", "lastEditorDisplayName": null, "lastEditorUserId": "241", "ownerDisplayName": null, "ownerUserId": "241", "parentId": "17187", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>To disable shutdown command just make the binary non executable i.e <code>sudo chmod a-x /sbin/shutdown</code>\nAlso i dont think that it will effect any other shutdown method because as the man entry for shutdown says</p>\n\n<blockquote>\n <p>shutdown sends a request to the...
null
null
null
null
null
17190
1
null
2010-12-13T10:22:54.877
1
4487
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4473/numeric-keypad-not-working">Numeric keypad not working</a> </p> </blockquote> <p>I can't really understand why this is not working and maybe this is a bug, but it used to work as I rememeber and is working correctly under Windows. </p> <p>I have 3 keyboard layouts in preferences, 1 the default for the keyboard (Norvegian) plus English and Romanian. Is not working not even in the default one. I did not change anything lately except Ubuntu updates.</p> <p>If you need some config from me just ask. Thanks. </p>
3935
-1
2017-04-13T12:25:03.423
2012-06-12T15:43:59.630
Numpad not working
[ "keyboard", "keyboard-layout", "numpad" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
null
2010-12-13T11:42:36.850
null
null
17193
1
17194
2010-12-13T11:22:32.790
3
1911
<p>I'm using Ubuntu One to synchronize a directory which I use to create and compile latex files. But, always, when a new file is generated, the files, instead of having the file-type extension like file1.pdf, they gain an extra suffix like <code>file1.pdf.u1conflict</code>, <code>file1.pdf.u1conflict.1</code> so on. And many such files are generated when I compile pdflatex documents. Ultimately it lead to an error, saying that a file is not found while compiling. And the actual reason is, that file has got a new extension, which is, .u1conflict.</p>
2968
null
null
2011-10-21T17:01:07.930
.u1conflict suffix gets apended to files while using ubuntu one
[ "ubuntu-one" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>*.u1conflict files represent the case when you've modified a file on two computers and then tried to synchronise. In general, you'd either want to pick which version to keep, or try to merge the changes in the two versions. Usually you wouldn't want to upload the conflict to U1, but if you do you can rename the .u1conflict version.</p>\n\n<p>.u1partial files represent partially downloaded files. If you have one of these hanging around, it might indicate that the synchronisation daemon died while downloading the file. As before, you probably don't want one of these uploaded to your U1 share.</p>\n\n<p>As far as other restrictions go, U1 stores filenames as unicode strings. So if you have filenames that are not valid UTF-8 it may have troubles. This shouldn't be much of a problem on Ubuntu systems since it uses UTF-8 locales.</p>\n\n<p>Taken from: <a href=\"https://answers.launchpad.net/ubuntuone-client/+question/78943\" rel=\"nofollow\">https://answers.launchpad.net/ubuntuone-client/+question/78943</a></p>\n\n<p>Hope this helps.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-15T14:22:50.240", "id": "18755", "postId": "17194", "score": "0", "text": "Your last point seams to be a plausible reason. In the beginning I had used only Gedit for editing those files, and I didn't have any problems. Later I started to open those files frequently on notepad++ from a windows PC. The notepad++ shows the encoding as ANSI. After I started using notepad++ some files failed to open on gedit (The error was `character set couldn't be recognised`). So the above mentioned issue cropped up later on.", "userDisplayName": null, "userId": "2968" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T11:39:57.913", "id": "17194", "lastActivityDate": "2010-12-13T11:47:19.593", "lastEditDate": "2010-12-13T11:47:19.593", "lastEditorDisplayName": null, "lastEditorUserId": "4980", "ownerDisplayName": null, "ownerUserId": "4980", "parentId": "17193", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>*.u1conflict files represent the case when you've modified a file on two computers and then tried to synchronise. In general, you'd either want to pick which version to keep, or try to merge the changes in the two versions. Usually you wouldn't want to upload the conflict to ...
null
null
null
null
null
17199
1
17265
2010-12-13T13:18:21.190
5
2569
<p>My machine is always showing an hour ahead of the actual time. I am in Texas currently but the time never picks Day light savings. Any time I click on Set Time(Top Right Corner), my system just hangs right there. I have to turn off the machine each time. how do I fix this issue? <img src="https://i.stack.imgur.com/15Tj7.png" alt="alt text"></p> <p>This is what happens when I try ntpdate: still 1 hour difference. </p> <pre><code>ntpdate time.nist.gov 13 Dec 21:44:37 ntpdate[3098]: bind() fails: Permission denied sudo ntpdate time.nist.gov [sudo] password for ubuntu: ntpdate[3237]: step time server 192.43.244.18 offset - 12.151112 sec </code></pre>
4627
235
2010-12-15T03:52:42.613
2010-12-15T04:27:41.807
System hangs on changing time
[ "time" ]
1
7
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T13:44:52.527", "id": "18416", "postId": "17199", "score": "0", "text": "When you reboot, does your system changes the time, or does it stay as before you changed it?", "userDisplayName": null, "userId": "3651" }, { "creationDate": "2010-12-13T16:28:3...
{ "accepted": true, "body": "<p>Have you tried a console alternative to setting it from the gnome-panel time applet?\nntpdate is a favorite of mine. i have it setup in a cron script across several Machines and VM's to ensure my system clock never gets skewed that far off. (once a week is fine by my standards. i find that I only migrate away from Atomic Time a few microseconds a week.)</p>\n\n<p>However, with that said, give a try with </p>\n\n<pre><code> ntpdate time.nist.gov\n</code></pre>\n\n<p>and see if it corrects your time issue, without a freeze. </p>\n\n<p>If your system continues to freeze, see if you cant ssh in from another machine and have a look at /var/log/messages. On a Fedora system at one point i was 2 hours ahead of actual time, when i reset the date, it caused a panic because everything on the system was 2 hours ahead. Threw some ridiculous error about future time and locked up. I powered down the machine for a day and gave it another go in a recovery console without an issue. </p>\n\n<p><strong>Edit 1:</strong> Another thought occured to me to try and change your TimeZone settings. See if that will reconfigure your clock. See the article located at <a href=\"https://help.ubuntu.com/community/UbuntuTime\" rel=\"nofollow\">https://help.ubuntu.com/community/UbuntuTime</a></p>\n\n<p>This may be a byproduct of messed up TZ settings. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-14T02:46:28.763", "id": "18504", "postId": "17265", "score": "0", "text": "Tried your solution, Still 1 hour difference. ubuntu@ubuntu-XPS-M1330:~$ ntpdate time.nist.gov\n13 Dec 21:44:37 ntpdate[3098]: bind() fails: Permission denied\nubuntu@ubuntu-XPS-M1330:~$ sudo ntpdate time.nist.gov\n[sudo] password for ubuntu: \n13 Dec 21:45:14 ntpdate[3237]: step time server 192.43.244.18 offset -12.151112 sec\nubuntu@ubuntu-XPS-M1330:~$", "userDisplayName": null, "userId": "4627" }, { "creationDate": "2010-12-15T03:53:09.510", "id": "18676", "postId": "17265", "score": "1", "text": "@t3ch Remember to update your original question with each thing you try, I've gone ahead and added it for you.", "userDisplayName": null, "userId": "235" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T02:06:03.977", "id": "17265", "lastActivityDate": "2010-12-15T04:27:41.807", "lastEditDate": "2010-12-15T04:27:41.807", "lastEditorDisplayName": null, "lastEditorUserId": "6807", "ownerDisplayName": null, "ownerUserId": "6807", "parentId": "17199", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Have you tried a console alternative to setting it from the gnome-panel time applet?\nntpdate is a favorite of mine. i have it setup in a cron script across several Machines and VM's to ensure my system clock never gets skewed that far off. (once a week is fine by my standard...
null
null
null
null
null
17202
1
17221
2010-12-13T13:29:56.970
8
1290
<p>I recently installed KDE in to my Ubuntu 10.04 machine using apt. (i.e <code>apt-get install kde-desktop</code>)</p> <p>After a while I got enough with the testing and wanted to have gnome again. So I removed all the kde4 components on my system using Synaptic package manager and everything that is associated with the KDE desktop environment was deleted. (or so that's what I thought..) </p> <p>But after all that and a restart, the loading screen (or the splash screen) still shows 'Kubuntu'. and also when I'm using gnome, apart from the legal (gnome) mouse pointer I should see, I see the KDE mouse pointer. (The oxygen theme one)</p> <p>What was wrong with the way I removed KDE and why I get to see remnants of a deleted desktop environment.</p>
5073
10581
2014-02-18T12:00:59.903
2014-02-18T12:00:59.903
Clean removal of KDE 4
[ "10.04", "gnome", "kde", "apt" ]
3
3
CC BY-SA 3.0
[ { "creationDate": "2010-12-13T13:44:21.317", "id": "18415", "postId": "17202", "score": "0", "text": "Did you remove the packages per the instructions: https://help.ubuntu.com/community/PureGnome ?", "userDisplayName": null, "userId": "742" }, { "creationDate": "2010-12-13T13:46:...
{ "accepted": true, "body": "<p>via: <a href=\"http://www.psychocats.net/ubuntu/puregnome\" rel=\"nofollow\">http://www.psychocats.net/ubuntu/puregnome</a></p>\n\n<pre><code>sudo apt-get remove akonadi-server akregator amarok amarok-common amarok-utils apport-kde apturl-kde ark bluedevil cdparanoia cdrdao docbook-xsl docbook-xsl-doc-html dolphin dragonplayer gdebi-core gdebi-kde gnupg-agent gnupg2 gtk2-engines-qtcurve gwenview hal hal-info ibus-qt4 icoutils jockey-kde k3b k3b-data kaddressbook kamera kate kcalc kde-config-gtk kde-config-touchpad kde-window-manager kde-zeroconf kdebase-bin kdebase-data kdebase-runtime kdebase-runtime-data kdebase-workspace kdebase-workspace-bin kdebase-workspace-data kdebase-workspace-kgreet-plugins kdegraphics-libs-data kdegraphics-strigi-plugins kdelibs-bin kdelibs5 kdelibs5-data kdelibs5-plugins kdemultimedia-kio-plugins kdepasswd kdepim-groupware kdepim-kresources kdepim-runtime kdepim-strigi-plugins kdepim-wizards kdepimlibs-kio-plugins kdesudo kdm kdoctools kfind khelpcenter4 kinfocenter klipper kmag kmail kmix kmousetool knm-runtime knotes konsole kontact kopete kopete-message-indicator korganizer kpackagekit kppp krdc krfb krosspython ksnapshot ksysguard ksysguardd ksystemlog ktimetracker ktorrent ktorrent-data kubuntu-debug-installer kubuntu-default-settings kubuntu-desktop kubuntu-docs kubuntu-firefox-installer kubuntu-konqueror-shortcuts kubuntu-netbook-default-settings kubuntu-notification-helper kvkbd kwalletmanager language-selector-qt libakonadi-contact4 libakonadi-kabc4 libakonadi-kcal4 libakonadi-kde4 libakonadi-kmime4 libakonadiprivate1 libao-common libao4 libattica0 libaudio2 libbluedevil1 libboost-program-options1.42.0 libcln6 libclucene0ldbl libdbusmenu-qt2 libdebconf-kde0 libdirectfb-1.2-9 libepub0 libflac++6 libgif4 libgpgme++2 libgps19 libhal-storage1 libhal1 libibus-qt1 libilmbase6 libindicate-qt0 libiodbc2 libk3b6 libkabc4 libkatepartinterfaces4 libkblog4 libkcal4 libkcddb4 libkdcraw8 libkde3support4 libkdecorations4 libkdecore5 libkdepim4 libkdesu5 libkdeui5 libkdewebkit5 libkdnssd4 libkephal4 libkexiv2-8 libkfile4 libkholidays4 libkhtml5 libkimap4 libkimproxy4 libkio5 libkipi7 libkjsapi4 libkjsembed4 libkldap4 libkleo4 libkmediaplayer4 libkmime4 libknewstuff2-4 libknewstuff3-4 libknotifyconfig4 libkntlm4 libkonq5 libkonq5-templates libkontactinterface4 libkopete4 libkparts4 libkpgp4 libkpimidentities4 libkpimtextedit4 libkpimutils4 libkpty4 libkresources4 libkrosscore4 libkrossui4 libksba8 libkscreensaver5 libksgrd4 libksieve4 libksignalplotter4 libktexteditor4 libktnef4 libktorrent-l10n libktorrent2 libkunitconversion4 libkutils4 libkwineffects1a libkworkspace4 libkxmlrpcclient4 liblastfm0 libloudmouth1-0 libmailtransport4 libmessagecore4 libmessagelist4 libmicroblog4 libmimelib4 libmng1 libmodplug1 libmpcdec6 libmsn0.3 libmysqlclient16 libnepomuk4 libnepomukquery4a libokularcore1 libopenexr6 libotr2 libpackagekit-glib2-14 libpackagekit-qt-14 libphonon4 libplasma-geolocation-interface4 libplasma3 libplasmaclock4b libplasmagenericshell4 libpolkit-qt-1-0 libpoppler-qt4-3 libprocesscore4a libprocessui4a libqalculate5 libqapt-runtime libqapt1 libqca2 libqca2-plugin-ossl libqgpgme1 libqimageblitz4 libqjson0 libqt4-dbus libqt4-designer libqt4-help libqt4-network libqt4-opengl libqt4-qt3support libqt4-script libqt4-scripttools libqt4-sql libqt4-sql-mysql libqt4-sql-sqlite libqt4-svg libqt4-test libqt4-xml libqt4-xmlpatterns libqtcore4 libqtgui4 libqtscript4-core libqtscript4-gui libqtscript4-network libqtscript4-sql libqtscript4-uitools libqtscript4-xml libqtwebkit4 libreadline5 libsolid4 libsolidcontrol4a libsolidcontrolifaces4 libsoprano4 libssh-4 libstreamanalyzer0 libstreams0 libsyndication4 libtag-extras1 libtaskmanager4a libtelepathy-qt4-0 libthreadweaver4 libts-0.0-0 libvirtodbc0 libvncserver0 libweather-ion4a libxcb-shape0 libxcb-xv0 libxine1 libxine1-bin libxine1-console libxine1-misc-plugins libxine1-x libzip1 mysql-client-core-5.1 mysql-common mysql-server-core-5.1 network-manager-pptp-kde odbcinst odbcinst1debian2 okular okular-extra-backends openoffice.org-kde openoffice.org-style-oxygen oxygen-cursor-theme oxygen-icon-theme oxygen-icon-theme-complete packagekit packagekit-backend-aptcc phonon phonon-backend-xine pinentry-gtk2 pinentry-qt4 plasma-dataengines-addons plasma-dataengines-workspace plasma-desktop plasma-netbook plasma-scriptengine-javascript plasma-scriptengine-python plasma-widget-facebook plasma-widget-folderview plasma-widget-kimpanel plasma-widget-kimpanel-backend-ibus plasma-widget-kubuntu-feedback plasma-widget-menubar plasma-widget-message-indicator plasma-widget-networkmanagement plasma-widget-quickaccess plasma-widgets-addons plasma-widgets-workspace plymouth-theme-kubuntu-logo plymouth-theme-kubuntu-text polkit-kde-1 printer-applet python-kde4 python-packagekit python-qt4 python-qt4-dbus python-sip qapt-batch quassel quassel-data rekonq shared-desktop-ontologies smartdimmer software-properties-kde soprano-daemon system-config-printer-kde systemsettings tsconf ttf-dejavu ttf-dejavu-extra update-manager-kde usb-creator-kde userconfig virtuoso-minimal virtuoso-opensource-6.1-bin virtuoso-opensource-6.1-common &amp;&amp; sudo apt-get install ubuntu-desktop\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T16:34:02.210", "id": "17221", "lastActivityDate": "2010-12-13T17:16:31.050", "lastEditDate": "2010-12-13T17:16:31.050", "lastEditorDisplayName": null, "lastEditorUserId": "667", "ownerDisplayName": null, "ownerUserId": "7298", "parentId": "17202", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>via: <a href=\"http://www.psychocats.net/ubuntu/puregnome\" rel=\"nofollow\">http://www.psychocats.net/ubuntu/puregnome</a></p>\n\n<pre><code>sudo apt-get remove akonadi-server akregator amarok amarok-common amarok-utils apport-kde apturl-kde ark bluedevil cdparanoia cdrdao d...
null
null
null
null
null
17207
1
17224
2010-12-13T14:34:13.933
6
5211
<p>I have a desktop running ubuntu 10.04 I want numlock to be turned on initially. What do I have to change to accomplish this?</p> <p>~~edit~~</p> <p>I checked in my BIOS. It was already set up to have the numlock turned on initially. Yet it isn't being turned on initially. I have a USB keyboard: would that break this functionality? Or, should I ask elsewhere (superuser, perhaps) about how to get that BOIS setting working properly?</p>
6161
6161
2010-12-13T16:00:13.003
2010-12-13T16:38:00.553
Numlock turned on on boot-up
[ "keyboard", "xfce" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T14:43:25.830", "id": "18425", "postId": "17207", "score": "1", "text": "I think it's a BIOS thing, at least that's how I did it on my laptop.", "userDisplayName": null, "userId": "3651" }, { "creationDate": "2010-12-13T14:46:18.043", "id": "18426...
{ "accepted": true, "body": "<p>From the man page: \"<strong>numlockx is a program to control the NumLock key inside X11 session scripts</strong>.\" It's a very simple tool. You invoke it from the commandline or a script</p>\n\n<pre><code>$ numlockx on\n</code></pre>\n\n<p>will enable numlock and</p>\n\n<pre><code>$ numlockx off\n</code></pre>\n\n<p>will disable it.</p>\n\n<p>I use it with xfce myself as an autostarted application. Once you have installed the package, go to \"Settings->Session and Startup\" from the xfce menu. Click on the \"Application Autostart\" tab, and then on the Add button. Enter whatever you like in the Name and Description boxes and in the Command box, enter \"numlockx on\" (without the quotes). Click OK and Close, and the next time you login, you'll have your numlock on.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T16:38:00.553", "id": "17224", "lastActivityDate": "2010-12-13T16:38:00.553", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7296", "parentId": "17207", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>You will have to try searching in your BIOS, if you do not want to do that then you can try numlockx, it is available in the repositories.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-13T16:00:35.590", "id": "18437", ...
null
null
null
null
null
17209
1
17210
2010-12-13T15:08:16.197
7
962
<p>I'm getting maybe 20 friend requests from Yahoo IM everytime I start empathy (or my Internet goes up). Is there any way I can deal with the contact spam that doesn't involve me individually clicking on all the contact requests and dismissing them one by one?</p> <p><img src="https://i.stack.imgur.com/CoLIW.jpg" alt="alt text"></p>
6955
44179
2013-02-13T19:59:09.000
2013-02-13T19:59:09.000
Empathy Yahoo IM contact request spam
[ "empathy", "instant-messaging" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I've had this problem as well, and sadly, it's is really a problem with Yahoo's infrastructure, and not so much something wrong with empathy (in other words, you won't be able to stop empathy from thinking you have genuine friend requests).</p>\n\n<p>The best I can suggest to you is to report a wishlist bug on empathy :(.\nYou could try pidgin but to my memory, that doesn't make it too much easier to dismiss the contact spam in one go, though it does handle it better than empathy.</p>\n\n<p><em>As grim as it sounds, I'd also suggest moving away from yahoo for IM.</em></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-13T15:37:29.620", "id": "18432", "postId": "17210", "score": "0", "text": "I disagree with it not being something wrong with Empathy. I think it's both Yahoos and Empathys fault for both being unable to deal with spam. I do agree that I should drop YIM though, I'm trying to get the 1 client I have on it to use something else. :)", "userDisplayName": null, "userId": "6955" }, { "creationDate": "2010-12-13T15:40:35.157", "id": "18433", "postId": "17210", "score": "1", "text": "Contact request spam is rare, in fact most messengers don't have a mass deny ability. But as it is increasing, I'd suggest reporting a bug ^^", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T15:18:04.283", "id": "17210", "lastActivityDate": "2010-12-13T15:18:04.283", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "17209", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>I've had this problem as well, and sadly, it's is really a problem with Yahoo's infrastructure, and not so much something wrong with empathy (in other words, you won't be able to stop empathy from thinking you have genuine friend requests).</p>\n\n<p>The best I can suggest to...
null
null
null
null
null
17211
1
17215
2010-12-13T15:19:23.990
10
21239
<p>Is it possible to:</p> <ol> <li>execute sftp command on remote machine and download a file (<code>ssh user@machine</code>, <code>sftp user2@server</code>, <code>get file</code>)</li> <li>then, send download to background, so I can turn my local computer off</li> </ol>
2937
null
null
2012-11-20T20:52:22.260
How to send SFTP file download to background?
[ "command-line", "sftp" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T15:48:50.727", "id": "18434", "postId": "17211", "score": "0", "text": "Please correct me if i'm wrong:\n1)You are connected locally on machine A. 2)You want to connect through SSH on machine B. 3)On B's shell, you want to execute a remote sftp download from machi...
{ "accepted": true, "body": "<p>Try <code>screen</code> on machine B, start the download and detach afterwards:</p>\n\n<p>On machine A: </p>\n\n<p><code>ssh user@B</code></p>\n\n<p>On machine B:</p>\n\n<pre><code>screen\nsftp user@C\nget some_file.tar.gz\nCtrl-a d\nlogout\n</code></pre>\n\n<p>Never tried but could work.</p>\n\n<p>Edit: later, log back in and use <code>screen -x</code> to reconnect to the running session. Then, shut it down properly so that it isn't consuming the server's resources.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-13T16:08:12.497", "id": "18438", "postId": "17215", "score": "0", "text": "it works! thanks a lot :) extremely useful command...", "userDisplayName": null, "userId": "2937" }, { "creationDate": "2010-12-23T12:25:01.300", "id": "19834", "postId": "17215", "score": "0", "text": "and for a funkier screen on ubuntu, try out byobu.", "userDisplayName": null, "userId": "3802" }, { "creationDate": "2021-10-07T13:06:18.213", "id": "2350045", "postId": "17215", "score": "0", "text": "work like a charm", "userDisplayName": null, "userId": "829729" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-13T16:01:56.107", "id": "17215", "lastActivityDate": "2011-06-27T03:14:07.260", "lastEditDate": "2011-06-27T03:14:07.260", "lastEditorDisplayName": null, "lastEditorUserId": "20358", "ownerDisplayName": null, "ownerUserId": "7240", "parentId": "17211", "postTypeId": "2", "score": "13" }
[ { "accepted": null, "body": "<p>Putting the character &amp; (ampersand) behind a command runs it in background. However, I don't know how to do it after a command has already been executed, nor do I know whether this works on remote machines.</p>\n", "commentCount": "1", "comments": [ { ...
null
null
null
null
null
17213
1
null
2010-12-13T15:34:55.643
2
319
<p>When my internet connection goes down (which happens rather frequently here) and Empathy disconnects it drops notifications for new messages. So if I haven't opened the conversation window, I will probably never notice a message someone has sent me that I didn't catch in time. Is there a way for Empathy to remind you of new messages even after disconnects?</p>
6955
3037
2011-02-11T20:13:45.073
2011-10-13T06:50:19.010
How do I keep Empathy new message notifications after a disconnect?
[ "10.10", "ubuntu-netbook", "empathy", "instant-messaging" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2012-02-02T23:02:00.287", "id": "116319", "postId": "17213", "score": "0", "text": "This question has not information added in it for a very long time and probably describes a bug in old package versions. I have flagged it to a moderator so it can be closed. If you think that ...
null
[ { "accepted": null, "body": "<p>I assume this is rather a bug, meaning this is poor behaviour by empathy. Maybe you find a bug that is already filed on <a href=\"https://launchpad.net/empathy\" rel=\"nofollow\">launchpad</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null...
null
null
2012-02-03T00:00:05.133
null
null
17216
1
17242
2010-12-13T16:12:44.657
12
3886
<p>How can i determine if just the .private folder is encrypted or the whole home directory?</p>
7155
235
2012-03-14T01:54:22.187
2012-03-14T01:54:22.187
How can I determine if just the .private folder is encrypted or the whole home directory?
[ "encryption", "ecryptfs" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>From the terminal type:</p>\n\n<pre><code>cat /home/.ecryptfs/$USER/.ecryptfs/Private.mnt\n</code></pre>\n\n<p>If the file exists and contains your home directory path, your home directory is encrypted.</p>\n\n<p>Another way to check is looking at your home dir mount point:</p>\n\n<p>From the terminal type:</p>\n\n<pre><code>df $HOME\n</code></pre>\n\n<p>An encrypted home will be mounted at the \".Private\" filesystem, otherwise it will be mounted at some regular partition device (/dev/*) .</p>\n\n<pre><code>Filesystem 1K-blocks Used Available Use% Mounted on\n/home/username/.Private\n 315482376 101351268 198105472 34% /home/username\n</code></pre>\n\n<p>Regular device mount (no encryption):</p>\n\n<pre><code>df /home/schroot\nFilesystem 1K-blocks Used Available Use% Mounted on\n/dev/sda7 315482376 101351332 198105408 34% /home\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-07-20T09:35:35.467", "id": "203434", "postId": "17242", "score": "0", "text": "Maybe this is a stupid question, but let's assume /home was encrypted before a system reinstallation. During installation, /home partition wasn't formatted or touched in any way. Would it still be encrypted? The .Private and .encryptfs folders would still be there, won't they? But I assume that you couldn't access this /home partition if it wasn't properly encrypted?", "userDisplayName": null, "userId": "69032" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T19:41:19.810", "id": "17242", "lastActivityDate": "2010-12-13T19:41:19.810", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "17216", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>From the terminal type:</p>\n\n<pre><code>cat /home/.ecryptfs/$USER/.ecryptfs/Private.mnt\n</code></pre>\n\n<p>If the file exists and contains your home directory path, your home directory is encrypted.</p>\n\n<p>Another way to check is looking at your home dir mount point:</...
null
null
null
null
null
17218
1
17219
2010-12-13T16:17:44.573
5
832
<p>At the moment it uses just a few seconds of inactivity after that ubuntu reduces the brightness of my screen. Where do i find the option to increase this value?</p>
7155
235
2010-12-13T16:32:18.067
2013-09-24T20:44:47.363
How can I adjust the time that automatically reduces the brightness of screen?
[ "power-management", "brightness" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is the \"Regard computer as idle after\" slider on System → Preferences → Screensaver:</p>\n\n<p><img src=\"https://i.stack.imgur.com/5v0h8.png\" alt=\"alt text\"></p>\n\n<p>Or the <a href=\"https://askubuntu.com/questions/17249/how-do-i-use-the-gconf-editor\">gconf key</a> <code>/apps/gnome-power-manager/backlight/idle_dim_time</code>, which you can set thusly:</p>\n\n<pre><code>gconftool --type int --set /apps/gnome-power-manager/backlight/idle_dim_time 120\n</code></pre>\n\n<p>which will set the timeout to 120 seconds.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-13T16:38:34.720", "id": "18441", "postId": "17219", "score": "0", "text": "thanks, it's the gconf key. It was default set to 10 seconds. For others who are interested in this issue. You can easily check what's the value of the key via gconf-editor. press Alt + F2 and then type in gconf-editor and search for the key as Iain posted.", "userDisplayName": null, "userId": "7155" }, { "creationDate": "2011-11-18T20:28:40.943", "id": "90959", "postId": "17219", "score": "0", "text": "the gconf key does not work anymore. how can this be done in ubuntu 11.10/gnome3 ??", "userDisplayName": null, "userId": "11069" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-13T16:27:22.697", "id": "17219", "lastActivityDate": "2010-12-14T00:41:16.293", "lastEditDate": "2017-04-13T12:23:36.527", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "6683", "parentId": "17218", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>This is the \"Regard computer as idle after\" slider on System → Preferences → Screensaver:</p>\n\n<p><img src=\"https://i.stack.imgur.com/5v0h8.png\" alt=\"alt text\"></p>\n\n<p>Or the <a href=\"https://askubuntu.com/questions/17249/how-do-i-use-the-gconf-editor\">gconf key<...
null
null
null
null
null
17220
1
17262
2010-12-13T16:28:15.747
14
2777
<p>The ability of a .desktop file to display a "human-readable" alias rather than its (perhaps) clinical <strong>real</strong> name, has merit... and as the <em>.desktop</em> filetype suggests, I assume that this ability is intended for the <strong>Desktop</strong> (which is (co-?)managed by Nautilus). </p> <p>However in the Nautilus File Manager itself, where I would expect to see the bare-bones file information (eg. the real name), I am presented with the meta-data <em>alias</em> instead of the <em>real</em> filename. </p> <p>This makes it rather difficult to edit/view the <em>.desktop</em> file when Nautilus does not make the real name available. </p> <p>Is there some way to have Nautilus GUI <strong>File Manager</strong> list these .desktop files by their real names? (just like <em>ls</em>) </p> <p>PS.. These files had me completely puzzled until today, when I renamed one, and the (my) new "name" was actually <em>not</em> the new real filename at all!. The displayed name was an alias; Nautilus had modified the <strong>file's contents</strong> (Name=...), and the original name was unchanged! ... now I am only half-puzzled (strange stuff)</p>
2670
25863
2012-11-21T21:35:00.407
2017-10-24T08:54:12.880
Can Nautilus display a .desktop file by its real name?
[ "nautilus", "files" ]
3
5
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T16:46:04.273", "id": "18442", "postId": "17220", "score": "0", "text": "Sounds Like a challenge for a nautilus script! maybe a mod of filetype script?", "userDisplayName": null, "userId": "6450" }, { "creationDate": "2010-12-13T18:13:40.423", "id...
{ "accepted": true, "body": "<p>With newer versions of Nautilus (<a href=\"http://mail.gnome.org/archives/ftp-release-list/2010-July/msg00018.html\" rel=\"nofollow noreferrer\">2.31.5</a> and later) renaming <code>.desktop</code> files actually changes the filename, not the <code>Name</code> field of the file itself.</p>\n\n<p>Nautilus will show the full filename (with the <code>.desktop</code> extension), if the <code>.desktop</code> file is <strong>not</strong> executable. </p>\n\n<p>For example,\nif <code>Firefox.desktop</code> is executable:</p>\n\n<p><img src=\"https://i.stack.imgur.com/gpMHh.png\" alt=\"alt text\"></p>\n\n<p>Now to see the actual filename, make <code>Firefox.desktop</code> un-executable. <em>Right click -> Properties -> Permissions -> Uncheck <code>Allow executing file as a program</code>.</em></p>\n\n<p><img src=\"https://i.stack.imgur.com/mt2RT.png\" alt=\"alt text\"><br>\nNow Nautilus will show the full file name: </p>\n\n<p><img src=\"https://i.stack.imgur.com/g2mlm.png\" alt=\"alt text\"></p>\n\n<blockquote>\n <p><img src=\"https://i.stack.imgur.com/0ZtQW.png\" alt=\"alt text\"> There seems to be a bug with renaming un-executable <code>.desktop</code> files in Nautilus.<br>\n If you don't erase the <code>.desktop</code> extension, the file will<br>\n have a double-extension (i.e <code>Firefox.desktop.desktop</code>).</p>\n</blockquote>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-12-14T06:19:16.157", "id": "18519", "postId": "17262", "score": "1", "text": "Thanks DoR... In amongst the side issues, I somehow lost sight of my original question ... ie. Can Nautilus show the \"real filename\"? ...I think it is clear now... Nautilus does what it does!... and that is: It *always* shows the alias name... Now that I know this, whenever I want the *real* filename, I can use a Nautilus Script... (It seems that using `ls` will be a \"best-guess\" method, because the *real* name may be significantly different).", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-12-14T06:50:59.527", "id": "18522", "postId": "17262", "score": "0", "text": "@fred.bear Edited my answer ;)", "userDisplayName": null, "userId": "114" }, { "creationDate": "2010-12-14T08:50:48.177", "id": "18530", "postId": "17262", "score": "0", "text": "Yes! .. I was getting that double .desktop! ...quite puzzling.. (and another gremlin, but there's no point going into it... in normal usage it works fine.. and I now know what to expect :)", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2013-06-18T07:44:38.057", "id": "390285", "postId": "17262", "score": "1", "text": "quote: \"Nautilus will show the full filename, if the .desktop file is not executable.\" This behaviour is so unbelievable! The first request I have from a file manager is to SHOW me the name of a file, not some other information, WHATEVER the type of of the file is.", "userDisplayName": null, "userId": "69802" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T01:23:08.897", "id": "17262", "lastActivityDate": "2010-12-14T06:56:30.990", "lastEditDate": "2010-12-14T06:56:30.990", "lastEditorDisplayName": null, "lastEditorUserId": "114", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "17220", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Apart from nautilus' strangeness, here's a nautilus script.</p>\n\n<p>You can select multiple files, click ok and gedit will show them (requires zenity).</p>\n\n<pre><code>#!/bin/sh\n\nFILE=$(ls -1 | zenity --list --hide-header --multiple --separator \"\\n\" --title \"List di...
null
null
null
null
null
17223
1
null
2010-12-13T16:35:05.447
3
17521
<p>I am running springsource framework in ubuntu 10.01. In my home folder, I have installed springsource IDE. I have my tomcat6 appserver in the <code>/usr/share/tomcat6</code>. While executing a sample project springapp, I have created the springapp dir in <code>/users/share/tomcat6/webapps</code>/ folder using sudo as I am unable to do it directly. </p> <p>On running the ant deploy or ant deploywar command, I am unable to copy the sample file -index.jsp from my workspace in springsource IDE to springapp dir in <code>/usr/share/tomcat6/webapps</code> as I am getting the error permission denied while copying the .jsp file.</p> <p>Can anybody please provide suggestion as to how to overcome this issue?</p> <p>Regards</p>
null
235
2010-12-13T17:28:21.927
2011-03-19T23:15:25.730
Permissions problem when copying files to /usr/share/tomcat6
[ "10.10", "root", "tomcat" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>To temporarily upgrade rights to copy a file using terminal, 'sudo cp file1 file2' to copy file as a superuser (i.e. root). Another option is to use 'gksudo nautilus' to upgrade rights and invoke the GUI file manager. These upgraded rights are revoked when you exit terminal.<...
null
null
null
null
Nazar Hussain S
17226
1
null
2010-12-13T17:01:22.600
20
887
<p>There is no GUI way to show the date or the day (or adjust the time format) in Unity's indicator-datetime application in Natty.</p>
5020
169736
2014-04-05T13:10:46.427
2017-02-21T09:32:53.243
How do I show the date in the clock indicator?
[ "unity", "indicator" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I blogged about this today <a href=\"http://penguindroppings.wordpress.com/2010/12/13/show-the-date-in-nattys-unity/\" rel=\"nofollow noreferrer\">here</a>.</p>\n\n<p>Basically, this can be adjusted via dconf-editor (under /apps/indicators/datetime) from<br>\n the <a href=\"...
null
null
null
null
null
17233
1
null
2010-12-13T17:54:31.810
2
2949
<p>I've been considering either Jolicloud or KNE for my future netbook. It's going to be a dual core intel atom CPU and will have 512MB gfx, so resources shouldn't be a problem. One thing though: should I use Jolicloud OS or Kubuntu Netbook Edition? Note I will be dual booting Windows 7, which will be my 'working' OS. I will use Jolicloud/KNE for web browsing, 'tinkering' around, etc.</p> <p>I want a 'complete' feeling from my netbook while not making it feel like a desktop/laptop. This will be my primary working computer (but, as I said, I'll use W7 for my work). What OS would you suggest I use? Jolicloud or Kubuntu Netbook Edition? I've trialed Jolicloud via Google Chrome, but it just doesn't feel right. KNE looks much nicer too; and it feels more complete. What should I use? Any personal experiences?</p>
null
null
null
2011-02-06T17:09:29.077
What is the better netbook OS for me- Jolicloud or Kubuntu Netbook Edition?
[ "ubuntu-netbook" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T19:30:02.417", "id": "18471", "postId": "17233", "score": "6", "text": "Answering to your question is likely be subjective, I don't think this is the proper place for Ubuntu vs others questions.", "userDisplayName": null, "userId": "742" }, { "creati...
null
[ { "accepted": null, "body": "<p>As mentioned above by João Pinto any one that is answering is likely to be subjective.</p>\n\n<p>So in my experience Jolicloud is just ready for netbooks. I have tested it and installed it for many friends and customers. What they love is, its clean purpose... the net. But jo...
null
null
2011-02-06T21:49:45.767
null
Tuahaa
17236
1
null
2010-12-13T18:33:27.457
6
484
<p>I found this package for latex that gives me the ability to typeset organic structural formulae and reaction schemes for chemistry. I'm having trouble with installing it though.</p> <p>I read through the installation steps in the manual and it tells me that I need to edit the <code>install.cfg.UNIX</code> file which contains:</p> <pre><code>[PATH] BINDIR=/usr/local/ochem M4BINDIR=/usr/bin INCDIR=/usr/local/ochem DVIPSDIR=/usr/local/tetex/dvips/ochem STYLEDIR=/usr/local/tetex/tex/latex/ochem MODULDIR=/usr/local/ochem DOCDIR=/usr/local/ochem/doc [SYSTEM] SYSTEM=UNIX </code></pre> <p>So I edited the file to this:</p> <pre><code>[PATH] BINDIR=/usr/share/ochem M4BINDIR=/usr/bin INCDIR=/usr/share/ochem DVIPSDIR=/usr/share/texmf-texlive/dvips/ochem STYLEDIR=/usr/share/texmf-texlive/tex/latex/ochem MODULDIR=/usr/share/ochem DOCDIR=/usr/share/ochem/doc [SYSTEM] SYSTEM=UNIX </code></pre> <p>When I try to install the package, it says that it works, but when I try to typeset one of the examples, it tells me that it can't find <code>ochem.sty</code>. I then tried navigating to the directories that the install was supposed to make and they didn't exist. So I made the directories manually and tried the install again. I still get the missing <code>ochem.sty</code> error.</p> <p>Did I edit <code>install.cfg.UNIX</code> correctly? My latex distribution is texlive 2009 on Ubuntu 10.10.</p> <p>EDIT: I did try running <code>sudo texhash</code> and it still doesn't work.</p>
7175
7175
2010-12-13T19:31:01.307
2012-08-17T21:50:19.580
How to install ochem for texlive
[ "10.10", "latex" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You have to run <code>sudo texhash</code> to update LaTex database of local packages. Without this, LaTeX can't find them.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-13T19:30:13.677", "id": "18472", "postId": "1...
null
null
null
null
null
17241
1
26427
2010-12-13T19:37:37.663
4
3102
<p>I have a wireless mouse device and I would like to speed-up the scrolling. I found a hint that tell us to install gpointing-device-settings.</p> <p>Unfortunatelly this program is not working in Lucid.Trying to running it one get a segmentation fault error, so I went here to ask how to manually speed up scroll ?</p> <p>gsynaptics is also not working for me. </p>
7243
235
2011-01-29T00:14:49.100
2011-02-14T22:54:28.363
How can I adjust the scroll speed of my mouse manually?
[ "10.04", "64-bit", "mouse-scroll" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T19:45:11.153", "id": "18474", "postId": "17241", "score": "0", "text": "can anyone correct the misprint on the title ?", "userDisplayName": null, "userId": "7243" }, { "creationDate": "2010-12-13T20:01:00.350", "id": "18478", "postId": "17241...
{ "accepted": true, "body": "<p>You're gonna have to compile a short program, but take a look at this guy's attempt to <a href=\"http://ubuntuforums.org/showpost.php?p=10406312#20\">increase the scroll speed by X</a>. If you need help with this, I'd take it to <a href=\"http://superuser.com\">http://superuser.com</a> or <a href=\"http://stackoverflow.com\">http://stackoverflow.com</a>. If you do ask a question somewhere else, put a link here so future questioners can learn!</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-14T22:54:28.363", "id": "26427", "lastActivityDate": "2011-02-14T22:54:28.363", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8515", "parentId": "17241", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>You're gonna have to compile a short program, but take a look at this guy's attempt to <a href=\"http://ubuntuforums.org/showpost.php?p=10406312#20\">increase the scroll speed by X</a>. If you need help with this, I'd take it to <a href=\"http://superuser.com\">http://superus...
null
null
null
null
null
17244
1
null
2010-12-13T20:15:12.287
4
1541
<p>I downloaded Minecraft yesterday to see what the fuss is about, brilliant game!</p> <p>When playing in Windowed mode, if I try and do anything else, i.e. use the computer, when the game is paused, the computer is incredibly slow, it takes a minute just to type a short message into empathy. Also, once I quit the game, the computer remains slow for about 5 minutes, until it magically frees up and becomes fast again. Could this be related to the 512mb RAM limitation of Java, and the machine is swapping?</p> <p>Even trying to submit this post is incredibly slow and frustrating, it's taking me a minute just to click in the 'Tag's box.</p> <p>Any ideas?</p> <ul> <li>Ubuntu 10.10 x64 </li> <li>Intel Q9550</li> <li>4GB RAM</li> <li>nVidia 8800GTS 320mb (w/prop drivers installed)</li> </ul>
2883
114
2010-12-13T20:31:58.867
2012-03-30T03:31:59.983
Minecraft: Slow performance OUT of the game
[ "10.10", "64-bit", "java", "games", "minecraft" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-12-16T03:45:57.443", "id": "18883", "postId": "17244", "score": "1", "text": "Can anyone verify if this happens on 32-bit Ubuntu?", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-12-20T22:38:53.043", "id": "19567", "postId": "172...
null
[ { "accepted": null, "body": "<p>Are you using the proprietary Java RE from Sun, or the open-source version in the main repos?</p>\n\n<p>Either way, I'd suggest trying the other one. I have better results with the JRE from Sun.</p>\n\n<p><br />\n<strong>My laptop</strong>:</p>\n\n<ul>\n<li>Ubuntu 10.4.1 (or ...
null
null
null
null
null
17249
1
17278
2010-12-13T21:30:28.747
57
120222
<p>I see some answers where people post to set a key in the gconf-editor, however there is no entry for gconf-editor in my menu.</p> <p>How do I run it and how do I use it to set keys that people recommend?</p>
235
null
null
2013-05-13T10:19:59.317
How do I use the gconf editor?
[ "gnome", "gconf" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<h2>What is Gconf?</h2>\n\n<p>GConf is a system for storing application preferences. These preferences are stored in XML files under the user's home directory, <code>~/.gconf</code>. Each preference is represented as a key-value pair.</p>\n\n<p>GConf is meant to be a way for developers to easily store user preferences and system administrators to set default values for particular preferences. In most cases, there is no need for a user to edit Gconf keys directly.</p>\n\n<p>The vast majority of keys correspond to entries in the various applications' preference menus. Though on occasion, developers will use Gconf keys as a way to enable undocumented features. These are \"hidden\" from users for a number of reasons. Sometimes the feature is still a work in progress. Other times it is a feature that the developer wants to do away with but still leave accessible to users that don't want to give it up. Frequently, the features are targeted at \"power users,\" and the developer simply doesn't want to clutter up the normal preference dialog.</p>\n\n<p>In some ways it is similar to Windows' Registry. One major difference is that, unlike the Windows' Registry, Gconf does not store system settings. It only stores application preferences. While editing Gconf keys may potentially cause minor issues with specific programs, it should never lead to system wide issues such as rendering your system unbootable. In fact, deleting the entire <code>~/.gconf</code> directory will simply revert all programs using Gconf back to their defaults.</p>\n\n<h2>Managing Gconf from the command-line.</h2>\n\n<p>The program <code>gconftool-2</code> allows the user to interact with Gconf from the command-line. It is often simpler to enter a one line command in the terminal than digging around in Gconf's GUI tool. For instance, if you would like to show the icon for you trash on the desktop simply run:</p>\n\n<pre><code>gconftool-2 --set /apps/nautilus/desktop/trash_icon_visible --type=bool true\n</code></pre>\n\n<p>This also illustrates what I meant by key-value pair above. In this case, the key is <code>/apps/nautilus/desktop/trash_icon_visible</code> which has a value of <code>true</code>.</p>\n\n<p>You can perform a variety of operations with <code>gconftool-2</code>. If you'd simply like to see a key's value, use <code>--get</code>:</p>\n\n<pre><code>gconftool-2 --get /apps/nautilus/desktop/trash_icon_visible\n</code></pre>\n\n<p>If you'd simply like to reset a value to its default, use <code>--unset</code>:</p>\n\n<pre><code>gconftool-2 --unset /apps/nautilus/desktop/trash_icon_visible\n</code></pre>\n\n<p><code>gconftool-2</code> can be particularly useful for system administrators. For instance, <code>/etc/gconf/gconf.xml.mandatory</code> can be used to set mandatory preferences for all users. Further information on more advanced uses can be found with <code>man gconftool-2</code> as well as in the <a href=\"http://library.gnome.org/admin/system-admin-guide/stable/gconf-1.html.en\">GNOME Desktop System Administration Guide</a></p>\n\n<h2>How do I use the Gconf editor?</h2>\n\n<p>What was your question again? Oh, that's right: How do I use the Gconf editor?</p>\n\n<p><code>gconf-editor</code> is the graphical interface to manage Gconf settings. By default, it is not displayed in the menus. The easiest way to start it is by pressing <kbd>Alt</kbd>+<kbd>F2</kbd> to bring up the \"Run Dialog.\" Next, enter <code>gconf-editor</code>.</p>\n\n<p><code>gconf-editor</code> allows you to browse through the key-value pairs in a tree. Let's look at the example from above. Browse to <code>apps &gt; nautilus &gt; desktop</code> and you will see the <code>trash_icon_visible</code> key.</p>\n\n<p><img src=\"https://i.stack.imgur.com/MlKzc.png\" alt=\"gconf-editor\"></p>\n\n<ul>\n<li><a href=\"https://help.ubuntu.com/community/GConfEditor\">Ubuntu docs</a> on gconf-editor</li>\n<li><a href=\"http://projects.gnome.org/gconf/\">GNOME docs</a> on gconf-editor</li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2019-07-24T15:30:45.060", "id": "1933283", "postId": "17278", "score": "0", "text": "Seems `gsettings` is the [GNOME 3 way to edit dconf database](https://superuser.com/a/444903/500826).", "userDisplayName": null, "userId": "349837" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T05:09:18.460", "id": "17278", "lastActivityDate": "2011-01-22T19:54:20.770", "lastEditDate": "2011-01-22T19:54:20.770", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "17249", "postTypeId": "2", "score": "53" }
[ { "accepted": null, "body": "<p><kbd>Alt</kbd>+<kbd>F2</kbd> → <code>gconf-editor</code></p>\n\n<p>Have an explore around it, it's somewhat similar to using regedit in Windows, except I find it's a bit more user friendly, and it won't kill your cat if you look at it funny.</p>\n\n<p>Rather than using that t...
null
null
null
null
null
17251
1
null
2010-12-13T22:34:52.320
35
97932
<p>I have Fedora installed on my desktop and I want to make a live USB stick with Ubuntu to install it on a laptop. What's the easiest way to do it?</p>
null
186134
2015-05-31T16:53:52.120
2022-10-19T19:34:23.050
How to make an Ubuntu live USB stick in Fedora?
[ "system-installation", "live-usb", "iso", "fedora" ]
5
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The best way is to use Unetbootin tool, which is available from <a href=\"http://unetbootin.sourceforge.net/\" rel=\"nofollow\">Unetbootin web site</a>. You will need Ubuntu ISO image.</p>\n\n<p>Best wishes.</p>\n", "commentCount": "0", "comments": [], "communityO...
null
null
null
null
s3v3n
17252
1
42760
2010-12-13T22:48:22.730
11
3483
<p>When I try to play any audio CD in Ubuntu 10.10 the following message appears. <img src="https://i.stack.imgur.com/HdOCI.png" alt="Error message screen"> </p> <p>What is causing this problem with mounting an audio CD in the Ubuntu environment ?</p> <p>I need to resolve this issue because I am trying to rip a couple of CDs, and I would like to see how it goes in Ubuntu 10.10. </p> <p>Thank you in advance for support :)</p>
5011
8844
2011-02-15T04:01:39.170
2011-05-14T16:08:20.957
Audio CDs will not Auto-mount Correctly
[ "10.10", "sound", "mount", "cd", "automount" ]
3
6
CC BY-SA 2.5
[ { "creationDate": "2010-12-13T22:56:39.290", "id": "18490", "postId": "17252", "score": "1", "text": "This may sound stupid but have you tried rebooting? This fixed a (different) DBus timeout error for me.", "userDisplayName": null, "userId": "667" }, { "creationDate": "2010-12-1...
{ "accepted": true, "body": "<p>I think my issue has been resolved after entire set of system updates (I am speaking of 10.10). Now Rhythmbox is playing Audio CDs, so mounting process is OK. I just can give a basic info on my system (iCore 3 (M350), Ubuntu 10.10, kernel 2.6.35-28-generic-pae, Gnome 2.32.0, Rhythmbox v. 0.13.1.)\nSo thank you for comments and suggestions.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-14T16:08:20.957", "id": "42760", "lastActivityDate": "2011-05-14T16:08:20.957", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5011", "parentId": "17252", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Original Author has commented with:</p>\n\n<blockquote>\n <p>I found that VLC is able to play Audio CDs. I found on Ubuntu forum that it is necessary to reinstall 'gvfs-backends'. So I did it. But I am not sure if this action has something with playing an Audio CD in VLC :)<...
null
null
null
null
null
17256
1
20556
2010-12-14T00:56:43.197
4
2369
<p>After a two year hiatus to Linux, I try it again out again. And then I run into to driver issues...</p> <p>I have an old Linksys WUSB54G v4 Wireless USB Adapter. In previous versions I had to use a combination of Ndiswrapper and Wicd to hope of getting it working. In 10.10, apparently there are built in drivers for it. </p> <p>Unfortunately they don't work. Fails to connect to my WPA network, fails to connect to my open unencrypted network. Wicd fails at "Obtaining IP address" or when using static IPs fails at verifying connectivity to network. </p> <p>Getting fed up I tried the ndiswrapper approach. Installed and configured, but still not working, even when blacklisting the <code>rt2570</code> module. So for some debugging I added some lines to my <strong>/etc/modprobe.d/blacklist.conf</strong> file</p> <pre><code>blacklist rt2570 blacklist prism54usb blacklist rt2x00lib blacklist rt2x00usb </code></pre> <p>Restart and find this:</p> <pre><code>lordquackstar@quackbeast:/etc/modprobe.d$ lsmod | grep rt2 rt2500usb 18049 0 rt2x00usb 9779 1 rt2500usb rt2x00lib 27275 2 rt2500usb,rt2x00usb led_class 2633 1 rt2x00lib mac80211 231541 2 rt2x00usb,rt2x00lib cfg80211 144470 2 rt2x00lib,mac80211 </code></pre> <p>Seems to be ignored... Tried this:</p> <pre><code>lordquackstar@quackbeast:/etc/modprobe.d$ sudo rmmod -f rt2x00usb ERROR: Removing 'rt2x00usb': Resource temporarily unavailable lordquackstar@quackbeast:/etc/modprobe.d$ sudo rmmod -f rt2x00lib ERROR: Removing 'rt2x00lib': Resource temporarily unavailable </code></pre> <p>and couldn't connect. Restarted and was back to the same modules loading.</p> <hr> <p>Maybe there's something in the log:</p> <pre><code>lordquackstar@quackbeast:/etc/modprobe.d$ tail -n100000 /var/log/syslog | grep rt2 Dec 13 19:01:15 quackbeast kernel: [ 23.698056] Registered led device: rt2500usb-phy0::radio Dec 13 19:01:15 quackbeast kernel: [ 23.698140] Registered led device: rt2500usb-phy0::quality Dec 13 19:01:15 quackbeast kernel: [ 23.701680] usbcore: registered new interface driver rt2500usb Dec 13 19:01:15 quackbeast NetworkManager[855]: &lt;info&gt; (wlan0): new 802.11 WiFi device (driver: 'rt2500usb' ifindex: 4) Dec 13 19:17:47 quackbeast kernel: [ 23.521759] Registered led device: rt2500usb-phy0::radio Dec 13 19:17:47 quackbeast kernel: [ 23.521824] Registered led device: rt2500usb-phy0::quality Dec 13 19:17:47 quackbeast kernel: [ 23.524740] usbcore: registered new interface driver rt2500usb Dec 13 19:17:47 quackbeast NetworkManager[798]: &lt;info&gt; (wlan0): new 802.11 WiFi device (driver: 'rt2500usb' ifindex: 4) </code></pre> <p>Seems to be autoloading. So this means that even if I pull it out, remove the module, and get it working, it still won't work when its plugged in all the time.</p> <p>More info:</p> <pre><code>lordquackstar@quackbeast:/etc/modprobe.d$ sudo lshw -C Network *SNIP* *-network description: Wireless interface physical id: 1 bus info: usb@1:2 logical name: wlan0 serial: 00:12:17:9b:f3:1e capabilities: ethernet physical wireless configuration: broadcast=yes driver=rt2500usb driverversion=2.6.35-24-generic firmware=N/A link=no multicast=yes wireless=IEEE 802.11bg </code></pre> <p>USB:</p> <pre><code>lordquackstar@quackbeast:/etc/modprobe.d$ lsusb | grep -i rt Bus 001 Device 003: ID 13b1:000d Linksys WUSB54G v4 802.11g Adapter [Ralink RT2500USB] </code></pre> <p>Any suggestions on how to either fix the rt2x00usb driver or permanently block it from loading? Note that I already have ndiswrapper installed</p>
168
235
2010-12-14T01:38:47.173
2011-01-08T01:52:16.173
Can't get Wireless RT2x00usb driver to work, and can't blacklist it
[ "10.10", "wireless", "drivers" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-14T04:39:38.463", "id": "18512", "postId": "17256", "score": "0", "text": "have you done anything in jockey? i know that jockey overrides blacklisting of ath_pci to toggle ath5k/madwifi", "userDisplayName": null, "userId": "5768" } ]
{ "accepted": true, "body": "<p>You need to blacklist <code>rt2500usb</code> as well, as that's the module that's loading. You're only blacklisting <code>rt2x00usb</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-19T01:57:21.913", "id": "23968", "postId": "20556", "score": "0", "text": "Sorry for taking so long to respond to this question. I blacklisted that module and now it works! Thanks so much for helping!", "userDisplayName": null, "userId": "168" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-08T01:52:16.173", "id": "20556", "lastActivityDate": "2011-01-08T01:52:16.173", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "17256", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You need to blacklist <code>rt2500usb</code> as well, as that's the module that's loading. You're only blacklisting <code>rt2x00usb</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-19T01:57:21.913", "id": "23968", ...
null
null
null
null
null
17260
1
null
2010-12-14T01:17:01.350
5
257
<p>When I go to the Desktop and click on a media icon (for my flash drive, a CD, whatever it is), the following problems occur, in this approximate sequence:</p> <ul> <li>Nautilus will close if it's open.</li> <li>the desktop icons disappear</li> <li>my Window List shows a button that says &quot;Starting File Manager&quot;</li> <li>the icons reappear</li> <li>the button in Window List disappears</li> </ul> <p>Because of this problem, I can no longer drag and drop media, nor can I right-click to perform actions such as &quot;Eject&quot; and &quot;Safely Remove Drive&quot;.</p> <p>The same symptoms occur if I click a media icon (that is also present on the desktop) in Nautilus' Computer view, though notably not if I click in the places list on the left.</p> <p>I have confirmed that this problem happens only if there is a CD in the drive (Matshita UJDA360).</p> <p>Also, inserting a disc into the CD drive appears to kill all running programs and restart Nautilus (or X; I'm not sure). Applications like Brasero and Rhythmbox will not start while there is a disc in the drive. Removing the disc doesn't result in the list of media updating; it must be forced to update by clicking on one of the desktop icons and going through one of the above-described cycles.</p> <p>It doesn't seem to matter what type of disc is in the drive. This has happened with CD-RWs I burned years ago using Roxio on Windows XP, the Ubuntu disc I installed from (burned with InfraRecorder Portable under Windows XP), and the retail game disc for <em>Star Trek Armada II</em>.</p> <p>The first indication of a problem was Brasero dying when I tried to insert a disc for erasure and rewriting. Since then, I've drafted several different questions on various issues, finally combining them into this one when I realized that having a CD in the drive was the common link.</p> <p>Could this be a simple driver issue? If Ubuntu is dynamically detecting my hardware on boot, can I specify drivers for devices that I know will be a problem if the default files are used?</p> <p>I'm beginning to think that my laptop, an old Dell Inspiron 2650, is just too old or proprietary-driver-hungry (or something, maybe RAM-starved) for Ubuntu and Windows XP to play nicely alongside each other. Or maybe I just need to carefully take my wall-wart machine to a coffee shop for an afternoon so I can download updates and such from the Internet, as I lack a home connection.</p> <h3>tail /var/log/messages</h3> <pre><code>$ tail /var/log/messages Feb 14 02:17:19 Ubuntu2650 kernel: [ 27.997962] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1 Feb 14 02:17:19 Ubuntu2650 kernel: [ 27.999175] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1 Feb 14 02:17:22 Ubuntu2650 kernel: [ 31.042600] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,user_xattr,commit=0 Feb 14 02:17:25 Ubuntu2650 kernel: [ 33.352617] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,user_xattr,commit=0 Feb 14 02:17:39 Ubuntu2650 pulseaudio[1281]: ratelimit.c: 2 events suppressed Feb 14 02:18:27 Ubuntu2650 pulseaudio[1281]: ratelimit.c: 1 events suppressed Feb 14 02:18:36 Ubuntu2650 kernel: [ 105.189977] show_signal_msg: 9 callbacks suppressed Feb 14 02:18:36 Ubuntu2650 kernel: [ 105.189989] nautilus[1463]: segfault at a349000 ip 04fdb446 sp b33d5f90 error 4 in libbrasero-media.so.1.2.0[4fca000+21000] Feb 14 02:18:48 Ubuntu2650 kernel: [ 116.282854] nautilus[1486]: segfault at 85cb000 ip 01c1c446 sp ae706f90 error 4 in libbrasero-media.so.1.2.0[1c0b000+21000] Feb 14 02:20:06 Ubuntu2650 kernel: [ 194.935572] nautilus[1557]: segfault at 9b59008 ip 03ea2446 sp af024f90 error 4 in libbrasero-media.so.1.2.0[3e91000+21000] </code></pre>
1277
-1
2020-06-12T14:37:07.210
2012-11-21T22:07:04.943
Various issues linked to my CD drive, when it has a disc in it
[ "10.10", "nautilus", "hardware" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2011-02-15T22:52:38.647", "id": "29204", "postId": "17260", "score": "0", "text": "Added output of `tail /var/log/messages` run just after the Nautilus crash issue manifested itself.", "userDisplayName": null, "userId": "1277" }, { "creationDate": "2011-02-15T2...
null
[ { "accepted": null, "body": "<p>I'd say this was failing hardware, although the segfaults are nasty too. If the CD drive suddenly becomes unconnected then you can get all sorts of weird problems. Check the cables, check it on a LiveCD boot (because it'll show a lot in that if it is hardware)</p>\n", "co...
null
null
null
null
null
17261
1
17984
2010-12-14T01:21:21.083
8
11359
<p>I have a 32" Vizio HDTV. It's a few years old, but running well. I just connected a new nettop to it using HDMI out. It's the Intel 3x00 graphics chipset.</p> <p>I'm seeing overscan, where the resolution in Ubuntu is set to 1280x720, but the TV itself is 1366x768. When I go into the <strong>Monitors</strong> control applet, I cannot change the resolution to anything other than the current or 640x480.</p> <p>A user had a similar overscan problem, but <a href="https://askubuntu.com/questions/4358/how-do-i-fix-overscan-on-my-hdmi-hdtv">fixed the overscan by adjusting his TV's aspect ratio settings</a>. I do not have that luxury.</p> <p>Is there a way I can do this without having to delve into <code>xorg.conf</code> or other command-line craziness? I'm more than comfortable doing so, but <em>there must be a cleaner way</em>.</p> <p>I'm running Ubuntu Natty, keeping up with updates and such.</p> <p>Here's the output of lspci:</p> <pre>colin@bricktop:~$ lspci 00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 12) 00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 12) 00:04.0 Signal processing controller: Intel Corporation Core Processor Thermal Management Controller (rev 12) 00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06) 00:1a.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06) 00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 06) 00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 06) 00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 06) 00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 06) 00:1d.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a6) 00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 06) 00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 06) 00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 06) 00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 06) 01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06) 02:00.0 USB Controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03) 03:00.0 Network controller: Atheros Communications Inc. AR9287 Wireless Network Adapter (PCI-Express) (rev 01)</pre>
4839
-1
2017-04-13T12:24:49.590
2014-06-29T21:09:12.240
How can fix HDMI HDTV overscan when I my TV has no aspect ratio setting?
[ "intel-graphics", "resolution", "tv", "hdmi", "hd-video" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You may be able to use <code>xrandr</code> to add a new mode to the specific output and then select that new mode. See <code>xrandr --addmode</code> and <code>xrandr --mode</code> in the xrandr manpage.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-01T14:10:12.323", "id": "36973", "postId": "17984", "score": "0", "text": "I think this is the most correct. I tried this and IIRC it worked. I no longer have the TV, though -- replaced it with a 1920x1080 47\".", "userDisplayName": null, "userId": "4839" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-18T01:12:11.000", "id": "17984", "lastActivityDate": "2010-12-18T01:12:11.000", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6205", "parentId": "17261", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You may be able to use <code>xrandr</code> to add a new mode to the specific output and then select that new mode. See <code>xrandr --addmode</code> and <code>xrandr --mode</code> in the xrandr manpage.</p>\n", "commentCount": "1", "comments": [ { "crea...
null
null
null
null
null
17263
1
null
2010-12-14T01:28:34.307
3
751
<p>I am using Ubuntu 10.10 with all upgrades. Ubuntu One will sync files very good but it will not sync the contacts or bookmarks. I have done the troubleshooting steps of removing all mention of couchdb from the passwords list, installed the bindwood add-on in Firefox, and even reinstalled couchdb. It still will only sync the files. Anybody know what should be done? I am not a seasoned veteran of Linux but am learning, so am looking to those that know how this works for your input.</p> <p>This is what happens when I try <a href="https://askubuntu.com/questions/17263/synchronizing-contacts-and-bookmarks-in-ubuntu-one-failure/17283#17283">this answer</a>.</p> <pre><code>dendox@Ubuntu-Desktop:~$ killall beam.smp beam beam.smp: no process found dendox@Ubuntu-Desktop:~$ dendox@Ubuntu-Desktop:~$ rm ~/.config/desktop-couch/desktop-couchdb.ini dendox@Ubuntu-Desktop:~$ dendox@Ubuntu-Desktop:~$ dbus-send --session --dest=org.desktopcouch.CouchDB --print-reply --type=method_call / org.desktopcouch.CouchDB.getPort Error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. </code></pre>
null
-1
2017-04-13T12:23:09.107
2011-01-22T11:33:02.620
Synchronizing Contacts and Bookmarks in Ubuntu One Failure
[ "ubuntu-one", "sync", "contacts", "bookmarks" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p><strong>Syncing Contacts:</strong> </p>\n\n<p>If you are on Ubuntu 10.10 (Maverick) or higher,please make sure you have the latest updates. If you have the latest updates installed and contacts still aren't syncing, then you can try these steps.</p>\n\n<ol>\n<li>Open Sys...
null
null
null
null
Dennis H
17268
1
23980
2010-12-14T02:47:27.650
7
3279
<p>I have a small living room PC (Bohica, running fully-updated Ubuntu 10.10/Maverick) connected to my HDTV that I use for web browsing and media streaming. It connects via WiFi (wlan0) to my Fedora server (Snafu) that in turn connects to the internet. I use static addressing, and everything has been working fine.</p> <p>I just got a Blu-ray player, and I'd like to give it wired network access to the internet via Bohica's available wired ethernet port (eth0). So far, I haven't been to get eth0 and the network configured to get the Blu-ray player talking to the internet.</p> <p>Here's my wlan0 configuration:</p> <pre><code> ip4 addr: 192.168.0.100 mask: /24 (255.255.255.0) gateway: 192.168.0.4 (fedora box) </code></pre> <p>The Blu-ray player is set to an IP of 192.168.0.98/24, with the same gateway as above.</p> <p>I want eth0 set to an IP of 192.168.0.99/24, but when I do this using nm-connection-editor I lose internet access (the system tries to use eth0 as the default internet access interface).</p> <p>How do I get my blu-ray player to talk to the internet through Bohica, and do so without disrupting my current (working) network?</p> <p>Thanks.</p> <p>Edit: Here's the relevant output from nm-tool with the Blu-ray player connected:</p> <pre><code>$ nm-tool NetworkManager Tool State: connected - Device: eth0 Type: Wired Driver: forcedeth State: disconnected Default: no HW Address: 90:FB:A6:2C:94:32 Capabilities: Carrier Detect: yes Speed: 100 Mb/s Wired Properties Carrier: on - Device: wlan0 [wlan0] Type: 802.11 WiFi Driver: ndiswrapper State: connected Default: yes HW Address: 00:26:5A:C0:D0:05 IPv4 Settings: Address: 192.168.0.100 Prefix: 24 (255.255.255.0) Gateway: 192.168.0.4 </code></pre>
null
1067
2010-12-14T06:48:46.643
2017-02-23T14:09:33.733
Sharing an internet connection through the Ethernet port
[ "10.10", "networking", "configuration", "network-manager", "routing" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-14T03:44:06.707", "id": "18508", "postId": "17268", "score": "0", "text": "Do I need NAT/MASQ on eth0? I thought not, since it is already active for wlan0.", "userDisplayName": "user7320", "userId": null }, { "creationDate": "2010-12-14T03:59:38.997", ...
{ "accepted": true, "body": "<p>Turns out all I needed was <a href=\"https://launchpad.net/ubuntu/+source/firestarter\" rel=\"nofollow noreferrer\">firestarter</a>. It quickly and easily did exactly what I needed, and nothing more.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-30T07:57:38.507", "id": "23980", "lastActivityDate": "2017-02-23T14:09:33.733", "lastEditDate": "2017-02-23T14:09:33.733", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": "user7320", "ownerUserId": null, "parentId": "17268", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>You will need to set up routing or bridging on your living room PC (but you already know this, because you have a working Fedora Server acting as a router).</p>\n\n<p>I think that you will need to bypass the gui and easy networking tools to get the network config that you wan...
null
null
null
null
user7320
17270
1
17285
2010-12-14T03:22:12.023
0
1000
<p>It seems every Linux machine I've ever worked on, when the router was restarted, the computer required a reboot too. All the Windows machines rejoined the network just fine. Why won't my Linux computers recognize a restarted router without a reboot themselves?</p> <p><strong>EDIT:</strong> I run 10.04, it's a desktop, wired connection, the router is Windstream 2Wire I'm not sure what model but I did find "2701HG" on it. I'm not sure what PC hardware is relevant here, the motherboard?</p>
5179
5179
2010-12-14T17:14:01.017
2010-12-14T17:14:01.017
Why won't my linux computers recognize a restarted router without a reboot themselves?
[ "windows", "reboot", "networking" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-12-14T04:02:29.383", "id": "18510", "postId": "17270", "score": "0", "text": "What model of router is it? I have never had this problem...", "userDisplayName": null, "userId": "42692" }, { "creationDate": "2010-12-14T05:23:45.200", "id": "18514", ...
{ "accepted": true, "body": "<p>It will.</p>\n\n<p>If it doesn't, it seems you have encountered a bug or an error in the driver.</p>\n\n<ul>\n<li><p>If this bug is in a proprietary wireless driver (see <em>System → Administration → Additional Drivers</em>), I'm afraid there's not a lot you can do about it apart from writing an email to the manufacturer.</p></li>\n<li><p>If this bug is in an open source driver, you should <a href=\"https://help.ubuntu.com/community/ReportingBugs\" rel=\"nofollow\">report the bug</a> so that it can be fixed. Usually, those bugs will be taken up-stream to the relevant developers, since Ubuntu doesn't provide the drivers themselves.</p></li>\n</ul>\n\n<p>In the usual case, the network-manager will connect automatically to any wireless network within reach. It will roam you through different networks if you're moving around the house, it will detect which networks you've joined successfully and automatically connect you. </p>\n\n<ul>\n<li>Network Manager will always keep you connected to some network, if at all possible.</li>\n</ul>\n\n<p>If, in your case, the Network Manager doesn't automatically connect to your network after the connection has been lost, please ask a question about it here. Make sure to provide us with all the details about your connection, your wireless hardware and the drivers you use. Also, provide all the steps to replicate the problem.</p>\n\n<p>Note: I talk about wireless networks, but this applies equally to Wired networks, 3G connections, Modem connections, even VPNs. To the Network Manager, they're all more or less the same.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-14T16:50:25.093", "id": "18585", "postId": "17285", "score": "0", "text": "My *Administration* menu has no option *Additional Drivers*. It does however, have the option *Hardware Drivers*. Upon clicking it, a window opens with a blank list and the words: *No proprietary drivers are in use on This system*.", "userDisplayName": null, "userId": "5179" }, { "creationDate": "2010-12-14T18:55:08.540", "id": "18609", "postId": "17285", "score": "0", "text": "@John good, in that case you can file a bug! Make sure to follow the instructions provided in the Wiki very carefully. But please ask a question, e.g. \"How do I maka Network Manager automatically connect to my network?\", here first. Provide the detail me and other asked for.", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-14T23:18:34.257", "id": "18648", "postId": "17285", "score": "0", "text": "I edited my question to add more details, don't know if you saw that or not. Yes, I will ask that question. As well as \"How can I find out what network driver I'm using?\".", "userDisplayName": null, "userId": "5179" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T05:48:07.530", "id": "17285", "lastActivityDate": "2010-12-14T13:24:50.270", "lastEditDate": "2010-12-14T13:24:50.270", "lastEditorDisplayName": null, "lastEditorUserId": "1067", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "17270", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It will.</p>\n\n<p>If it doesn't, it seems you have encountered a bug or an error in the driver.</p>\n\n<ul>\n<li><p>If this bug is in a proprietary wireless driver (see <em>System → Administration → Additional Drivers</em>), I'm afraid there's not a lot you can do about it a...
null
null
null
null
null
17271
1
null
2010-12-14T03:42:59.967
0
646
<p>I decided to move from Lucid to Maverick in my office computer and I wanted to make a backup of some files on DVD. </p> <p>For this i tried Brasero and them k3b, both programs are not working with if the folder or files inside them have at least one space character. The most part of my files have space in its name so it would be a pain to rename all of them.</p> <hr> <p><strong>01-</strong> If I understood correctly, this problem is related to a kernel issues and not to these specific softwares am I right ? </p> <p><strong>02-</strong> I ask the archive manager to create a rar file broking the back up in files of 600Mb. In this way I was able to burn them but they are not accessible from archive manager. Is this related to the size I chose to broke them ? </p> <p><strong>03-</strong> Is there any other workaround or fix that I could use to make this backup on dvd's ?</p> <p>Thanks.</p>
7243
47151
2012-03-11T15:35:14.093
2012-08-27T18:34:29.027
Brasero and K3b: problems to burn data dvd's with files having spaces in its name
[ "10.04", "burning", "brasero", "k3b", "dvd-backup" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Not being accessible has to do with not all the parts being present...if you want to be able to pull files out of a single part, there are several approaches. note:you can get files out of archive parts with the rar command line utility. archive manager just doesn't understa...
null
null
null
null
null
17274
1
null
2010-12-14T04:37:44.943
26
18201
<p>I recently had to copy about 20 GB of data split between about 20 files from my laptop to an external hard drive. Since this operation takes quite a while (at ~560kb/s), I was wondering if there was any way to pause the transfer and resume it later (in case, I need to interrupt the transfer). As a side question, is there any performance difference between copying from the terminal vs copying from Nautilus?</p>
2331
1067
2010-12-30T03:12:31.407
2021-07-04T18:06:09.240
How to pause/resume transfer of large files?
[ "nautilus", "command-line", "clipboard" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I can answer only the part about the difference between terminal and nautilus. I have checked several times this. It appears copying from terminal is faster than any graphical way like nautilus. At least in my case, when i copy about 32GB of info, it takes about 3 to 5 minute...
null
null
null
null
null
17275
1
17279
2010-12-14T04:48:30.570
594
1113299
<p>Otherwise, is there any alternative command line utility that can achieve this?</p>
2331
52975
2018-03-15T21:45:50.300
2023-07-02T12:29:32.817
How to show the transfer progress and speed when copying files with cp?
[ "command-line", "coreutils" ]
24
2
CC BY-SA 3.0
[ { "creationDate": "2020-02-16T02:45:14.717", "id": "2033486", "postId": "17275", "score": "1", "text": "Duplicate question: https://unix.stackexchange.com/questions/65077/is-it-possible-to-see-cp-speed-and-percent-copied", "userDisplayName": null, "userId": "327339" }, { "creatio...
{ "accepted": true, "body": "<p>While <code>cp</code> hasn't got this functionality, you can use <code>pv</code> to do this:</p>\n<pre><code>pv my_big_file &gt; backup/my_big_file\n</code></pre>\n<p>Note: this method will lose the file's permissions and ownership. Files copied this way will have the same permissions as if you'd created them yourself and will belong to you.</p>\n<p>In this example, <code>pv</code> basically just outputs the file to stdout*, which you redirect to a file using the <code>&gt;</code> operator. Simultaneously, it prints information about the progress to the terminal when you do that.</p>\n<p>This is what it looks like:</p>\n<pre><code>stefano@ubuntu:~/Data$ pv my_big_file &gt; backup/my_big_file\n 138MB 0:00:01 [73.3MB/s] [=================================&gt;] 100% \n</code></pre>\n<p>You may need to <a href=\"http://apt.ubuntu.com/p/pv\" rel=\"noreferrer\">Install pv</a> (alternatively, type <code>sudo apt-get install pv</code>) on your system.</p>\n<hr />\n<p>*: <strong>The technical bit</strong></p>\n<p>There are three important streams of data in a unix-like system: stdout (standard output), stderr (standard error) and stdin (standard input). Every program has all three, so to speak. The <code>&gt;</code> redirection operator redirects program output to a file. Without arguments, as you see above, <code>&gt;</code> redirects a program's <em>standard output</em> to a file. <code>cp</code> basically does nothing fancier than</p>\n<pre><code>cat source &gt; destination\n</code></pre>\n<p>(where <code>cat</code> just reads a file and prints it to stdout). <code>pv</code> is just like cat, but if you redirect it's output stream somewhere else, it will print progress information to stdout instead.</p>\n<p>Take a look at <code>man pv</code> to learn more about it.</p>\n<hr />\n<p>Another option, as DoR suggests in <a href=\"https://askubuntu.com/questions/17274/how-to-pause-resume-transfer-of-large-files/17280#17280\">this answer</a>, is to use rsync instead:</p>\n<pre><code>$ rsync -ah --progress source-file destination-file\nsending incremental file list\nsource-file\n 621.22M 57% 283.86MB/s 0:00:01\n</code></pre>\n<p>This will preserve the files permissions/ownership while showing progress.</p>\n", "commentCount": "16", "comments": [ { "creationDate": "2010-12-14T15:55:36.863", "id": "18577", "postId": "17279", "score": "3", "text": "It may or may no be significant (depending on the situation), but `pv` does not handle permissions the same way as `cp` does... (based on one quick test I tried: `pv` didn't copy the execute bit across.. `rsync` did.", "userDisplayName": null, "userId": "2670" }, { "creationDate": "2010-12-14T18:53:16.433", "id": "18608", "postId": "17279", "score": "0", "text": "Thanks for reminding me fred.beak, I didn't think to put that in.", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2010-12-26T01:26:50.760", "id": "20125", "postId": "17279", "score": "70", "text": "IMO: `alias cp=\"rsync -avz\"` cp is outdated.", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-12-26T01:30:13.790", "id": "20126", "postId": "17279", "score": "11", "text": "If you're like me, and forget about `pv`, you can go snooping in `/proc/PID of cp/fd` and `/proc/PID of cp/fdinfo` to figure out progress. (It's up to you to infer speed.) I use this technique to watch `updatedb`.", "userDisplayName": null, "userId": "7909" }, { "creationDate": "2012-11-16T13:45:20.487", "id": "269702", "postId": "17279", "score": "0", "text": "for a man of pv without installing it see [here](http://linux.die.net/man/1/pv)", "userDisplayName": null, "userId": "98358" }, { "creationDate": "2015-05-17T02:51:20.507", "id": "885592", "postId": "17279", "score": "1", "text": "@MarcoCeppi I copied you alias to my dot file but that didn't work out very well. `-z` makes copying files 3 times slower on my computer so I delete that option.", "userDisplayName": null, "userId": "142450" }, { "creationDate": "2015-06-17T15:17:37.883", "id": "911170", "postId": "17279", "score": "21", "text": "Yes, `-z` should probably only be used for network copies; compressing and decompressing the data for a local copy is pure overhead.", "userDisplayName": null, "userId": "8530" }, { "creationDate": "2015-11-18T15:26:40.570", "id": "1025319", "postId": "17279", "score": "0", "text": "Like `cat`, `pv` is not a good tool for copying sparse files since [it will expand them by filling in any gaps with zero-bytes](http://unix.stackexchange.com/a/30382/48446). This means that the new file can take up considerably more disk space despite having the same content as the original.", "userDisplayName": null, "userId": "185188" }, { "creationDate": "2016-04-03T19:07:51.297", "id": "1124124", "postId": "17279", "score": "5", "text": "@MarcoCeppi , when copying directory with `rsync` be sure not to add trailing `/` to source path (or remove if e.g. bash completion put it there automatically). Otherwise you will get results different than when using `cp` (or `gcp`).", "userDisplayName": null, "userId": "23373" }, { "creationDate": "2016-10-11T07:14:22.877", "id": "1276438", "postId": "17279", "score": "1", "text": "if `alias cp=\"rsync -avz\"` is outdated, what about `alias cp=\"rsync -ah --progress source-file\"` instead?", "userDisplayName": null, "userId": "434743" }, { "creationDate": "2017-03-24T03:05:54.237", "id": "1403710", "postId": "17279", "score": "0", "text": "@MarcoCeppi `alias mv=\"rsync -avz --remove-sent-files\"` is nice, too.", "userDisplayName": null, "userId": "362789" }, { "creationDate": "2017-03-24T18:28:30.203", "id": "1404219", "postId": "17279", "score": "0", "text": "@MarcoCeppi `rsync -avz` is not showing progress on Debian Jessie.", "userDisplayName": null, "userId": "416671" }, { "creationDate": "2017-03-24T22:49:40.087", "id": "1404324", "postId": "17279", "score": "2", "text": "@Rodrigo `rsync -avzP` is what you'll want to use.", "userDisplayName": null, "userId": "41" }, { "creationDate": "2017-03-25T00:41:10.890", "id": "1404348", "postId": "17279", "score": "0", "text": "@MarcoCeppi Thank you! Just wonder why they don't keep all the options sorted in the manual...", "userDisplayName": null, "userId": "416671" }, { "creationDate": "2018-01-10T20:46:53.573", "id": "1605331", "postId": "17279", "score": "1", "text": "@StefanoPalazzo Nice. For all the MacOS fools out there, this is also available by default.", "userDisplayName": null, "userId": "714160" }, { "creationDate": "2021-03-17T14:30:49.680", "id": "2256903", "postId": "17279", "score": "1", "text": "Both these options will show the speed at which kernel buffers are filled in with the file bytes. When that operation is complete the buffers will most likely still have data to be written to the disk. In some cases, probably most (like copying a 2.7 Gb file to a not-so-fast USB dongle), flushing that data will take most of the time. You can verify this by running `time sync` right after the `pv`/`rsync` command.", "userDisplayName": null, "userId": "1949" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-12-14T05:17:16.407", "id": "17279", "lastActivityDate": "2023-03-11T08:30:16.470", "lastEditDate": "2023-03-11T08:30:16.470", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "17275", "postTypeId": "2", "score": "406" }
[ { "accepted": true, "body": "<p>While <code>cp</code> hasn't got this functionality, you can use <code>pv</code> to do this:</p>\n<pre><code>pv my_big_file &gt; backup/my_big_file\n</code></pre>\n<p>Note: this method will lose the file's permissions and ownership. Files copied this way will have the same pe...
null
null
null
null
null
17281
1
null
2010-12-14T05:23:17.420
2
10402
<p>While executing <code>apt-get install python-setuptools</code> or <code>apt-get upgrade</code>, there are about a dozen of dependency errors, the top three are: </p> <pre><code>apt-get install python-setuptools Reading package lists... Done Building dependency tree Reading state information... Done python-setuptools is already the newest version. The following packages were automatically installed and are no longer required: update-notifier-common libfile-copy-recursive-perl update-inetd librpmio0 librpm0 libmpfr1ldbl cpu-checker liblzma1 cvs librpmbuild0 gnupg-curl libcurl3-gnutls info Use 'apt-get autoremove' to remove them. 0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded. 11 not fully installed or removed. After this operation, 0B of additional disk space will be used. Do you want to continue [Y/n]? Y Setting up procps (1:3.2.8-9ubuntu3) ... start: Job failed to start dpkg: error processing procps (--configure): subprocess installed post-installation script returned error exit status 1 dpkg: dependency problems prevent configuration of udev: udev depends on procps; however: Package procps is not configured yet. dpkg: error processing udev (--configure): dependency problems - leaving unconfigured No apport report written because the error message indicates its a followup error from a previous failure. dpkg: dependency problems prevent configuration of plymouth: plymouth depends on udev (&gt;= 149-2); however: Package udev is not configured yet. dpkg: error processing plymouth (--configure): dependency problems - leaving unconfigured No apport report written because the error message indicates its a followup error from a previous failure. dpkg: dependency problems prevent configuration of apache2.2-common: apache2.2-common depends on procps; however: Package procps is not configured yet. dpkg: error processing apache2.2-common (--configure): dependency problems - leaving unconfigured No apport report written because MaxReports is reached already pkg: dependency problems prevent configuration of apache2-mpm-prefork: apache2-mpm-prefork depends on apache2.2-common (=2.2.16-1ubuntu3.1); however: Package apache2.2-common is not configured yet. dpkg: error processing apache2-mpm-prefork (--configure): dependency problems - leaving unconfigured No apport report written because MaxReports is reached already </code></pre> <p>I think the python-setuptools was installed, however there are a bunch of these unconfigured packages. How can they be fixed or configured?</p>
7325
236
2013-03-05T07:11:59.883
2013-03-05T07:11:59.883
Unconfigured package error: Package apache2.2-common is not configured yet
[ "server", "upgrade", "apt", "apache2" ]
5
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Run the following in terminal.</p>\n\n<p><code>sudo apt-get install -f</code></p>\n\n<p><code>sudo dpkg --configure -a</code></p>\n\n<p><code>sudo apt-get update &amp;&amp; sudo apt-get upgrade</code></p>\n", "commentCount": "2", "comments": [ { "creatio...
null
null
null
null
null
17290
1
17291
2010-12-14T06:14:46.410
2
5083
<p>I have installed dockbarx using an article at omgubuntu. <a href="http://www.omgubuntu.co.uk/2010/12/new-look-dockbarx-hits-ppa/" rel="nofollow noreferrer">http://www.omgubuntu.co.uk/2010/12/new-look-dockbarx-hits-ppa/</a>. The problem is that the window preview feature is not working. </p> <p>UPDATE: While running <code>dockbarx_factory.py run-in-window</code> , i get the following warning:</p> <pre><code> ** (dockbarx_factory.py:3820): WARNING **: Trying to register gtype 'WnckWindowState' as enum when in fact it is of type 'GFlags' ** (dockbarx_factory.py:3820): WARNING **: Trying to register gtype 'WnckWindowActions' as enum when in fact it is of type 'GFlags' ** (dockbarx_factory.py:3820): WARNING **: Trying to register gtype 'WnckWindowMoveResizeMask' as enum when in fact it is of type 'GFlags' Dockbarx init Dockbarx reload Opened window matched with gio app on id: empathy Opened window matched with gio app on id: gnome-terminal </code></pre> <p>.</p> <p><img src="https://i.stack.imgur.com/uc5o7.png" alt="alt text"></p> <p>How can i enable the preview?. </p>
4980
4980
2010-12-15T05:18:28.053
2011-11-18T22:17:33.920
Window preview is not working in DockbarX
[ "10.10", "gnome", "dockbarx" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ul>\n<li><p>To use the window previews,you need CompizConfig Settings Manager</p>\n<p><code>sudo apt-get install compizconfig-settings-manager</code></p>\n</li>\n<li><p>Warning: <a href=\"https://askubuntu.com/questions/80589/what-are-some-of-the-issues-with-ccsm-and-why-should-i-not-use-it\">What are some of the issues with CCSM and why would I want to avoid it?</a></p>\n</li>\n<li><p>Also in gnome enable <strong>KDE Compatibility</strong> plugin System&gt;&gt;Preferences&gt;&gt;CompizConfig Settings Manager.</p>\n</li>\n<li><p>Once you enable this plugin, in DockBarX preferences goto Applications&gt;&gt;Accessories&gt;&gt;DockBarX&gt;&gt; Preference), on the <strong>Window List</strong> tab, enable <strong>Show Previews</strong>.</p>\n</li>\n</ul>\n<p><img src=\"https://i.stack.imgur.com/8Amo5.png\" alt=\"alt text\" /></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-12-14T06:49:46.190", "id": "18521", "postId": "17291", "score": "0", "text": "@karthik: Yes .I have already done this. Still the preview is not working.", "userDisplayName": null, "userId": "4980" }, { "creationDate": "2010-12-15T10:36:58.220", "id": "18722", "postId": "17291", "score": "0", "text": "Just to confirm, this did work for me.", "userDisplayName": null, "userId": "4661" }, { "creationDate": "2010-12-18T07:56:25.990", "id": "19203", "postId": "17291", "score": "0", "text": "@aneeshep Press **ALT+F2** and type the following without quotes \"compiz --replace && killall gnome-panel\"", "userDisplayName": null, "userId": "5691" }, { "creationDate": "2011-02-16T05:09:45.680", "id": "29231", "postId": "17291", "score": "0", "text": "@karthik: it is also not working. At last i got it working by reinstalling the os.", "userDisplayName": null, "userId": "4980" }, { "creationDate": "2014-02-14T05:54:35.713", "id": "543106", "postId": "17291", "score": "2", "text": "interesting answer for ubuntu but what about those running xfce or xubuntu? xfce comes with a compositor so there should be no need to run compiz. correct?", "userDisplayName": null, "userId": "13177" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-14T06:35:51.880", "id": "17291", "lastActivityDate": "2011-11-18T22:17:33.920", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17290", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<ul>\n<li><p>To use the window previews,you need CompizConfig Settings Manager</p>\n<p><code>sudo apt-get install compizconfig-settings-manager</code></p>\n</li>\n<li><p>Warning: <a href=\"https://askubuntu.com/questions/80589/what-are-some-of-the-issues-with-ccsm-and-why-should...
null
null
null
null
null
17294
1
17982
2010-12-14T07:04:35.200
12
3088
<p>Since I rarely use <kbd>caps-lock</kbd>, I'd like to map the key to a middle mouse click instead. I would also like to map <kbd>Alt</kbd>+<kbd>Caps Lock</kbd> to the original function of the caps lock key, should I ever need it.</p> <p>I can map any keyboard shortcut to <code>xdotool click 2</code>, but the Gnome <em>Keyboard Shortcuts</em> dialog won't let me assign a command to the caps-lock key, even with modifiers. </p> <p>I know this is a bit of a strange undertaking; How would I go about doing it?</p>
1067
252
2011-02-26T04:11:28.373
2019-03-02T06:41:33.237
Map caps-lock key to middle mouse click
[ "xorg", "keyboard", "shortcut-keys", "input-devices", "xmodmap" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you first remove the lock modifier from the Caps Lock key you should then be able to assign the key in Keyboard Shortcuts, use the command below to do that:</p>\n\n<pre><code>echo 'remove lock = Caps_Lock' | xmodmap -\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-18T16:36:05.803", "id": "19236", "postId": "17982", "score": "0", "text": "very good! any chance to get caps lock back onto alt+capslock?", "userDisplayName": null, "userId": "1067" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-18T01:05:14.237", "id": "17982", "lastActivityDate": "2010-12-18T01:05:14.237", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6205", "parentId": "17294", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>If you first remove the lock modifier from the Caps Lock key you should then be able to assign the key in Keyboard Shortcuts, use the command below to do that:</p>\n\n<pre><code>echo 'remove lock = Caps_Lock' | xmodmap -\n</code></pre>\n", "commentCount": "1", "comme...
null
null
null
null
null
17295
1
17397
2010-12-14T07:10:02.153
2
3024
<p>I'm trying to install a package from a PPA I've added. (Yes, I'm the author of the package if that helps in any way.)</p> <p>Running a simple install command yields the following:</p> <pre> xxxxx@xxxxx:~$ sudo apt-get install opentracks [sudo] password for xxxxx: Reading package lists... Done Building dependency tree Reading state information... Done The following packages will be upgraded: opentracks 1 upgraded, 0 newly installed, 0 to remove Need to get 1,834kB of archives. After this operation, 184kB of additional disk space will be used. (Reading database ... 218827 files and directories currently installed.) Preparing to replace opentracks 0.0.2-1 (using .../opentracks_0.0.5-1_amd64.deb) ... Unpacking replacement opentracks ... dpkg: error processing /var/cache/apt/archives/opentracks_0.0.5-1_amd64.deb (--unpack): <b>trying to overwrite directory '/usr/share/pixmaps'</b> in package mysql-query-browser 5.0r14+openSUSE-2.1 with nondirectory dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/opentracks_0.0.5-1_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1) </pre> <p>I have emphasized the error... it seems like something is trying to overwrite <code>/usr/share/pixmaps</code> for some strange reason.</p> <p>What could cause such an error?</p>
5
17722
2012-07-09T13:11:53.403
2012-07-09T13:11:53.403
Error installing a package: "trying to overwrite directory /usr/share/pixmaps"
[ "apt", "ppa" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Browsing the <code>.deb</code> package using File Roller and noticed <code>/usr/share/pixmaps</code> is not a directory, it is an image file (<code>/usr/share/applications</code> is also not a directory as it should be).</p>\n\n<p><img src=\"https://i.stack.imgur.com/SdwrS.png\" alt=\"alt text\"></p>\n\n<p>I believe the problem is with your <a href=\"http://bazaar.launchpad.net/~george-edison55/opentracks/trunk/annotate/head:/Makefile\" rel=\"nofollow noreferrer\"><code>Makefile</code></a>, specifically these two lines: </p>\n\n<pre><code>cp -r images/* $(DESTDIR)/usr/share/pixmaps\ncp other/opentracks.desktop $(DESTDIR)/usr/share/applications\n</code></pre>\n\n<p>Neither of the directories you are trying to copy to exist, so <code>cp</code> just creates new files <code>$(DESTDIR)/usr/share/pixmaps</code> and <code>$(DESTDIR)/usr/share/applications</code></p>\n\n<p>To fix this, modify your <code>Makefile</code>:</p>\n\n<pre><code>mkdir -p $(DESTDIR)/usr/share/pixmaps\nmkdir -p $(DESTDIR)/usr/share/applications\ncp -r images/* $(DESTDIR)/usr/share/pixmaps\ncp other/opentracks.desktop $(DESTDIR)/usr/share/applications\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-14T21:00:40.057", "id": "18624", "postId": "17397", "score": "0", "text": "Thanks... I should have known my Makefile would be responsible :)", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-12-14T21:07:58.430", "id": "18628", "postId": "17397", "score": "0", "text": "Well, its you Makefile being used to build the package in a clean chroot. Running `make install`, you probably won't run into this problem on most systems. But Debian packages are built in a minimal environment.", "userDisplayName": null, "userId": "570" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T19:27:08.437", "id": "17397", "lastActivityDate": "2010-12-14T19:27:08.437", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "114", "parentId": "17295", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Type the following in terminal,</p>\n\n<pre><code>sudo dpkg -i --force-overwrite /var/cache/apt/archives/opentracks_0.0.5-1_amd64.deb\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-14T20:41:42.273", "id": "18621"...
null
null
null
null
null
17299
1
17300
2010-12-14T08:15:44.293
487
1048606
<p>What do the different colours in Ubuntu's <code>ls</code> command mean? For example, when I type the <code>ls</code> command in one of my folders, I get one of the files in light green, the other (which is a folder) in blue with green highlighting. </p> <p>What do those colours mean, and there is any manual about all the colours?</p>
7280
495653
2017-02-16T06:42:28.137
2022-06-20T02:10:26.143
What do the different colors mean in ls?
[ "command-line", "colors", "ls" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<ul>\n<li><strong>Blue</strong>: Directory</li>\n<li><strong>Green</strong>: Executable or recognized data file</li>\n<li><strong>Cyan</strong> (Sky Blue): Symbolic link file</li>\n<li><strong>Yellow with black background</strong>: Device</li>\n<li><strong>Magenta</strong> (Pink): Graphic image file</li>\n<li><strong>Red</strong>: Archive file</li>\n<li><strong>Red with black background</strong>: Broken link</li>\n</ul>\n<p>For your information:</p>\n<ul>\n<li><p>To turn the color off, you have to comment out the following lines in <code>.bashrc</code>.</p>\n<pre class=\"lang-bash prettyprint-override\"><code># enable color support of ls and also add handy aliases\n#if [ -x /usr/bin/dircolors ]; then\n# test -r ~/.dircolors &amp;&amp; eval &quot;$(dircolors -b ~/.dircolors)&quot; || eval &quot;$(dircolors -b)&quot;\n# alias ls='ls --color=auto'\n# #alias dir='dir --color=auto'\n# #alias vdir='vdir --color=auto'\n#\n# alias grep='grep --color=auto'\n# alias fgrep='fgrep --color=auto'\n# alias egrep='egrep --color=auto'\n#fi\n</code></pre>\n</li>\n<li><p>Also if you want to see your own bash color meanings,then copy/paste the following codes in your terminal.</p>\n<pre class=\"lang-bash prettyprint-override\"><code>eval $(echo &quot;no:global default;fi:normal file;di:directory;ln:symbolic link;pi:named pipe;so:socket;do:door;bd:block device;cd:character device;or:orphan symlink;mi:missing file;su:set uid;sg:set gid;tw:sticky other writable;ow:other writable;st:sticky;ex:executable;&quot;|sed -e 's/:/=&quot;/g; s/\\;/&quot;\\n/g') \n{ \n IFS=: \n for i in $LS_COLORS \n do \n echo -e &quot;\\e[${i#*=}m$( x=${i%=*}; [ &quot;${!x}&quot; ] &amp;&amp; echo &quot;${!x}&quot; || echo &quot;$x&quot; )\\e[m&quot; \n done \n} \n</code></pre>\n</li>\n</ul>\n<p><strong>Output:</strong><br />\n<a href=\"https://i.stack.imgur.com/nfbKg.png\" rel=\"noreferrer\"><img src=\"https://i.stack.imgur.com/nfbKg.png\" alt=\"terminal output\" /></a></p>\n<p><strong>Note:</strong></p>\n<ul>\n<li>For more information, type <a href=\"http://manpages.ubuntu.com/dir_colors.5\" rel=\"noreferrer\"><code>man dir_colors</code></a> in terminal.</li>\n</ul>\n", "commentCount": "9", "comments": [ { "creationDate": "2011-07-27T22:00:01.323", "id": "61600", "postId": "17300", "score": "36", "text": "That `eval` script showing the output color representation for each type is brilliant... thanks!", "userDisplayName": null, "userId": "7638" }, { "creationDate": "2015-08-04T13:30:24.010", "id": "944477", "postId": "17300", "score": "6", "text": "Pure sourcery ;)", "userDisplayName": null, "userId": "40756" }, { "creationDate": "2016-09-04T17:41:04.790", "id": "1245313", "postId": "17300", "score": "9", "text": "A more readable version of that `eval` script is here: https://github.com/gkotian/gautam_linux/blob/master/scripts/colours.sh", "userDisplayName": null, "userId": "309899" }, { "creationDate": "2017-05-06T16:17:44.530", "id": "1436096", "postId": "17300", "score": "3", "text": "Red is also a dead symlink.", "userDisplayName": null, "userId": "10616" }, { "creationDate": "2017-07-15T08:42:43.923", "id": "1483578", "postId": "17300", "score": "1", "text": "what about files in normal white text?", "userDisplayName": null, "userId": "248861" }, { "creationDate": "2018-08-02T07:27:59.633", "id": "1737822", "postId": "17300", "score": "1", "text": "You've got a few lines in your output (`hl` and `ca`) that you haven't named. What are they for? Is there a resource somewhere that defines all the codes used by `$LS_COLORS`?", "userDisplayName": null, "userId": "541818" }, { "creationDate": "2018-09-11T17:45:56.620", "id": "1763287", "postId": "17300", "score": "0", "text": "The script works only up to the point where `i` assumes the value `*.tar=01;31`. Since `x` then becomes `*.tar`, which is not a valid variable name, the test `[ \"${!x}\" ]` raises the error `bash: *.tar: wrong variable substitution`, and the alternative `echo \"$x\"` is not executed.", "userDisplayName": null, "userId": "119493" }, { "creationDate": "2018-09-11T18:10:31.697", "id": "1763318", "postId": "17300", "score": "1", "text": "If you add `[ \"${x:0:1}\" != \"*\" ] && ` before `[ \"${!x}\" ]`, it works.", "userDisplayName": null, "userId": "119493" }, { "creationDate": "2020-11-26T22:36:52.753", "id": "2201132", "postId": "17300", "score": "0", "text": "I am getting `bash: *.tar: invalid variable name`", "userDisplayName": null, "userId": "660555" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-12-14T08:18:23.937", "id": "17300", "lastActivityDate": "2022-06-20T02:10:26.143", "lastEditDate": "2022-06-20T02:10:26.143", "lastEditorDisplayName": null, "lastEditorUserId": "739431", "ownerDisplayName": null, "ownerUserId": "5691", "parentId": "17299", "postTypeId": "2", "score": "535" }
[ { "accepted": true, "body": "<ul>\n<li><strong>Blue</strong>: Directory</li>\n<li><strong>Green</strong>: Executable or recognized data file</li>\n<li><strong>Cyan</strong> (Sky Blue): Symbolic link file</li>\n<li><strong>Yellow with black background</strong>: Device</li>\n<li><strong>Magenta</strong> (Pink...
null
null
null
null
null
17302
1
null
2010-12-14T08:44:10.673
1
460
<p>I tried to update to Natty Narwhal with <code>update-manager -d</code> and then I followed through everything and then when I restarted everything broke. Told me to put in some code or something but then after I restarted I couldn't find where to put the code in.</p>
7333
1067
2010-12-27T13:43:27.077
2011-06-25T12:49:24.393
I updated to Ubuntu 11.04 and It broke my installation
[ "unity", "update-manager", "updates" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-14T09:18:02.407", "id": "18531", "postId": "17302", "score": "2", "text": "You will need to put a few more details, the exact messages you're getting, what 'code' you're talking about and so on, in the question for us to be able to answer it.", "userDisplayName": n...
null
[ { "accepted": null, "body": "<p>You can report your problems to the people who is developing it, so they can fix it for the others, of for yourself if you finally end up installing 10.10 again. ;)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC ...
null
null
2011-06-26T15:05:11.400
null
null
17305
1
null
2010-12-14T08:57:14.927
2
1211
<p>I'm using Netbook Remix 10.04 now. I'm having the 10.10 alternate iso with me. If I use that iso to upgrade, will I lose my netbook version? I've seen in some forums that the upgrade resulted in a change from netbook version to desktop version.</p> <p><strong>Updated on 15/12/2010</strong></p> <p>I upgraded the OS from 10.04 to 10.10. But I'm getting an error like this after restart:</p> <blockquote> <p>modprobe: FATAL: Could not load /lib/modules/2.6.35-22-generic/modules.dep: No such file or directory</p> </blockquote> <p>I searched in the forums and got a solution like this:</p> <blockquote> <p>Open Terminal</p> <p>gksudo gedit /etc/initramfs-tools/initramfs.conf</p> <p>change the line MODULES=most to MODULES=dep</p> <p>Then use Synaptic (System&gt;Administration&gt;Synaptic Package Manager) to reinstall initramfs-tools.</p> </blockquote> <p>I'll be definitely trying this later.</p> <p>After that when the system tries to login, my screen starts flashing with just the ubuntu netbook desktop wallpaper on the screen. No other options will be available. It will be flashing continuosly. If I press the power button then one window comes up with options like Shut down, Restart, Hibernate etc. And the screen won't stop flashing either.</p> <p>I've uploaded a 1 min video. Please go through it as it will give you a clear idea of the error which I'm facing now <a href="http://www.twitvid.com/8UUW4" rel="nofollow noreferrer">Video Link Here</a></p>
7334
-1
2020-06-12T14:37:07.210
2011-03-16T06:33:33.220
Netbook Remix 10.04 to 10.10 upgrade using alternate iso
[ "upgrade", "ubuntu-netbook" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I can't really confirm, but I don't think normal version would upgrade to netbook edition. You should upgrade over the internet, then you can be sure the packages will be right.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentL...
null
null
null
null
null
17309
1
17341
2010-12-14T09:35:27.257
13
27165
<p>I've been using recordMyDesktop to record stuff. A little slow to compile but it records fine. However, when I try to convert from ogv to avi (I've used Devede and an mencoder script) the audio and video go out of sync.</p> <p>Here's the script for reference:</p> <pre><code>#!/bin/bash # ogv to avi # Call this with multiple arguments # for example : ls *.{ogv,OGV} | xargs ogv2avi N=$#; echo "Converting $N files !" for ((i=0; i&lt;=(N-1); i++)) do echo "converting" $1 filename=${1%.*} #mencoder "$1" -ovc xvid -oac mp3lame -xvidencopts pass=1 -o $filename.avi mencoder "$1" -o $filename.avi -oac mp3lame -lameopts fast:preset=standard -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=4000 shift 1 done </code></pre> <p><strong>Are there good reliable video converters out there? :)</strong></p>
7189
667
2010-12-14T17:49:18.103
2017-03-11T06:07:48.040
Video converter: ogv to avi (or another more common format)
[ "video", "conversion", "recordmydesktop" ]
9
4
CC BY-SA 2.5
[ { "creationDate": "2010-12-14T17:54:13.747", "id": "18596", "postId": "17309", "score": "0", "text": "Similar question: http://askubuntu.com/q/1691/667", "userDisplayName": null, "userId": "667" }, { "creationDate": "2010-12-15T14:16:56.423", "id": "18752", "postId": "173...
{ "accepted": true, "body": "<h1><a href=\"http://packages.ubuntu.com/winff\" rel=\"noreferrer\">winff</a> <a href=\"http://apt.ubuntu.com/p/winff\" rel=\"noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install winff\" /></a></h1>\n<p>Is a GUI for the command line video converter, FFMPEG. It will convert most any video file that FFmpeg will convert. WinFF does multiple files in multiple formats at one time. You can for example convert mpeg's, flv's, and mov's, all into avi's all at once.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-15T15:49:56.230", "id": "18774", "postId": "17341", "score": "0", "text": "This worked for me too. I suspect because it's FFMPEG just like http://askubuntu.com/questions/17309/video-converter-ogv-to-avi-or-another-more-common-format/17312#17312. I'm picking this though because it has the gui. Less for me to memorize!", "userDisplayName": null, "userId": "7189" }, { "creationDate": "2014-10-11T18:25:40.200", "id": "731422", "postId": "17341", "score": "0", "text": "WinFF is presently unusable on Ubuntu 14.04, it fails to find the libxvid encoder. There is a bug report on it: https://code.google.com/p/winff/issues/detail?can=2&start=0&num=100&q=&colspec=ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary&groupby=&sort=&id=168", "userDisplayName": null, "userId": "177437" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-12-14T13:46:26.830", "id": "17341", "lastActivityDate": "2017-03-11T06:07:48.040", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3550", "parentId": "17309", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>You can try with ffmpeg:</p>\n\n<pre><code>ffmpeg -i input.ogv output.avi\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-15T14:59:23.610", "id": "18766", "postId": "17312", "score": "1", "...
null
null
null
null
null
17315
1
17377
2010-12-14T10:32:36.810
5
4692
<p>Compiz and Gnome have many keyboard shortcuts. Examples are <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>L</kbd> for locking the session or <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Arrows</kbd> for switching workspaces. Often they overwrite shortcuts in applications. It would be nice to have a way to temporarily disable these system shortcuts to make way for application shortcuts. Best thing would be to have a shortcut for doing so. :)</p> <p>Any solutions, ideas?</p>
7341
17739
2011-10-31T20:51:25.180
2011-10-31T20:51:39.937
Quick way to temporarily disable compiz and gnome shortcuts
[ "gnome", "compiz", "shortcut-keys", "shortcuts" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Here is an example of how to <strong>disable</strong> and <strong>enable</strong> individual shortcut-keys in Compiz: </p>\n\n<p>Assign these two commands to hotkeys, or just run them in the terminal (either asis, or in scripts). </p>\n\n<p>You can setup your shortcut-keys via \"Keyboard Shortcuts\" in the Preferences Menu... (I use <code>xbindkeys</code>.. It has finer control over wihch keys you can use. eg Numlock on/off makes a difference.)</p>\n\n<p>Turn enable the shortcut-key for: <em>Zoom Specific Level 1</em>: </p>\n\n<pre><code>gconftool-2 --set /apps/compiz/plugins/ezoom/allscreens/options/zoom_specific_1_key --type string \"&lt;Shift&gt;&lt;Control&gt;Return\" \n</code></pre>\n\n<p>Turn disable the shortcut-key for: <em>Zoom Specific Level 1</em>: </p>\n\n<pre><code>gconftool-2 --set /apps/compiz/plugins/ezoom/allscreens/options/zoom_specific_1_key --type string \"Disabled\" \n</code></pre>\n\n<p>If there are many hotkeys, just make two scripts: one for <strong>on</strong>, and the other for <strong>off</strong></p>\n\n<p>You can find all the Compiz keys in Gconf Editor: `gconf-editorenter code here</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-15T13:41:34.660", "id": "18747", "postId": "17377", "score": "0", "text": "This looks like a very promising solution. I will try this. Maybe you know a (semi) automatic way to extract the current settings into the script? Or at least a file where I can read them without having to browse through the compiz setting manager.", "userDisplayName": null, "userId": "7341" }, { "creationDate": "2010-12-15T14:12:16.570", "id": "18748", "postId": "17377", "score": "0", "text": "Actually it works and solves all my problems in a very customizable way. Thank you!", "userDisplayName": null, "userId": "7341" }, { "creationDate": "2010-12-15T14:53:28.560", "id": "18762", "postId": "17377", "score": "0", "text": "@ziggystar... You're welcome... To list all keys and values: `gconftool-2 --recursive-list /apps/compiz` ... to get more info: `info gconftool-2`", "userDisplayName": null, "userId": "2670" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T17:06:04.193", "id": "17377", "lastActivityDate": "2010-12-14T17:55:25.683", "lastEditDate": "2010-12-14T17:55:25.683", "lastEditorDisplayName": null, "lastEditorUserId": "2670", "ownerDisplayName": null, "ownerUserId": "2670", "parentId": "17315", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>To disable compiz temporarily, replace it with metacity, that's the other window manager/decorator.</p>\n\n<p><kbd>Alt</kbd>+<kbd>F2</kbd>, and run <code>metacity --replace</code></p>\n\n<p>To restore compiz, run <code>compiz --replace</code></p>\n\n<p>Of course, after loggin...
null
null
null
null
null
17316
1
null
2010-12-14T10:35:18.897
23
1946
<p>I remember a longer time ago there was an anouncement that some Ubuntu developers were planing to bring the possibility to Ubuntu to run Android Apps on an Ubuntu and planned to write an environment for this purpose.</p> <p>Since this announcement i havn't heard again anything about this plans. And via Google nothing couldn't be found.</p> <p>Are these plans abandoned?</p>
7155
158442
2016-01-01T00:09:10.703
2016-01-01T00:09:10.703
Plans to make Android Apps run on Ubuntu abandoned?
[ "android", "history-of-ubuntu" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2012-01-27T18:22:42.633", "id": "113607", "postId": "17316", "score": "1", "text": "Interestingly, with the advent of HTML 5 and the pending demise of Flash, it may render apps obsolete in just a few years anyway; HTML 5 will be supported on all major platforms including Apple...
null
[ { "accepted": null, "body": "<p>The original plans were presented by <a href=\"https://launchpad.net/~debbie-beliveau\">Debbie Beliveau</a> and <a href=\"https://launchpad.net/~mfrey\">Michael Frey</a>. If you want to know what happened to <em>their</em> plans, you'd probably do best to ping them an email. ...
null
null
null
null
null
17322
1
17385
2010-12-14T11:27:01.063
2
3852
<p>Since Firestarter GUI needs Admin rights to start, does it make sense to autostart firestarter on boot and how can i do it?</p>
7155
7155
2010-12-14T17:42:22.293
2011-09-05T16:37:13.477
Autostart Firestarter GUI on Boot?
[ "10.10", "firewall", "autostart" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-14T17:43:09.373", "id": "18592", "postId": "17322", "score": "0", "text": "ok, just posted the solution as a separate answer", "userDisplayName": null, "userId": "7155" } ]
{ "accepted": true, "body": "<p>Addition:</p>\n\n<p>With the following steps firestarter can be autostarted</p>\n\n<ol>\n<li><p>Start a terminal with this command to edit the file /etc/sudoers</p>\n\n<p><code>sudo visudo -s</code></p></li>\n<li><p>Add the following line at the end of the code (where username should be replaced by your Ubuntu username)</p>\n\n<p><code>USERNAME ALL= NOPASSWD: /usr/sbin/firestarter</code></p></li>\n<li><p>save the changes and end the editor</p></li>\n<li><p>start these two commands (where username should be replaced by your Ubuntu username)</p>\n\n<p><code>sudo ln -fs ~/.Xauthority /root/.Xauthority</code></p>\n\n<p><code>sudo chown USERNAME.root ~/.Xauthority</code></p></li>\n<li><p>Now firestarter can start on login without the password prompt</p></li>\n<li><p>Finally you have to add Firestarter to autostart with the following command</p>\n\n<p><code>sudo \"firestarter --start-hidden\"</code> </p></li>\n</ol>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T17:41:45.383", "id": "17385", "lastActivityDate": "2010-12-14T20:45:47.777", "lastEditDate": "2010-12-14T20:45:47.777", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "7155", "parentId": "17322", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>You can't start a GUI app on boot because it needs to be attached to a graphical session, the graphical session is only setup after you login.\nYou could set it up to start when you login:</p>\n\n<p>System -> Preferences -> Start applications</p>\n\n<p>Add whatever command is...
null
null
null
null
null
17327
1
18608
2010-12-14T11:56:14.193
3
1072
<p>I'm running Ubuntu Lucid which contains the Gnome 2.30. The thing is that, I'm really interested on using empathy 2.32, since it fixes a lot of bugs. However I don't want to upgrade the entire system but I really want the new version of empathy :3. I tried using ppa or other methods but no luck. Any idea?</p>
5950
3550
2010-12-14T14:26:00.320
2015-10-05T11:19:34.650
Is it possible to use empathy 2.32 on gnome 2.30?
[ "10.04", "gnome", "upgrade", "empathy" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-22T05:45:05.210", "id": "19688", "postId": "17327", "score": "0", "text": "have you tried compiling it from source?", "userDisplayName": null, "userId": "4497" } ]
{ "accepted": true, "body": "<p>I just tried to build empathy from Maverick for Lucid, but it's not possible due to unmet build dependencies. The easiest other solution that I can think of is just to install the Maverick package using apt, and making use of <a href=\"https://help.ubuntu.com/community/PinningHowto\" rel=\"nofollow\">pinning</a> to keep the impact on your system to the minimum. This <em>will</em> require you to upgrade GTK+ and some other system components, but it's not so bad and works just fine for me. YMMV though, I'm not responsible if you break your system.</p>\n\n<p>Here's how I just did it.</p>\n\n<p>Open up <code>/etc/apt/sources.list</code>, and add Maverick sources at the bottom:</p>\n\n<pre><code>deb http://archive.ubuntu.com/ubuntu maverick main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu maverick main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu maverick-updates main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu maverick-updates main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu maverick-security main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu maverick-security main restricted universe multiverse\n</code></pre>\n\n<p>(or use your preferred mirror). Don't do anything with apt yet. Next we'll open up the apt pinning file <code>/etc/apt/preferences</code> and tell apt not to install packages from Maverick (see <code>man apt_preferences</code> for more):</p>\n\n<pre><code>Package: *\nPin: release a=maverick\nPin-Priority: 1\n</code></pre>\n\n<p>Now run <code>aptitude update</code> to get the package indexes from these new sources you just added. Next call <code>aptitude install empathy/maverick-updates</code> to instruct aptitude to explicitly pull the package from Maverick instead of Lucid (the default). aptitude will tell you it wants to upgrade to a number of packages from Maverick:</p>\n\n<pre><code>Upgrade the following packages:\ngconf2 [2.28.1-0ubuntu1 (lucid, now) -&gt; 2.31.91-0ubuntu3.1 (maverick-updates)]\ngnome-icon-theme [2.28.0-1ubuntu1 (lucid, now) -&gt; 2.31.0-0ubuntu1 (maverick)]\nlibdbus-glib-1-2 [0.84-1 (lucid, now) -&gt; 0.88-2 (maverick)]\nlibdbusmenu-glib1 [0.2.9-0ubuntu3.1 (lucid-updates, now) -&gt; 0.3.16-0ubuntu1 (maverick)]\nlibgail18 [2.20.1-0ubuntu2 (lucid-updates, now) -&gt; 2.22.0-0ubuntu1 (maverick)]\nlibglib2.0-0 [2.24.1-0ubuntu1 (lucid-updates, now) -&gt; 2.26.0-0ubuntu1 (maverick)]\nlibgtk2.0-0 [2.20.1-0ubuntu2 (lucid-updates, now) -&gt; 2.22.0-0ubuntu1 (maverick)]\nlibgtk2.0-bin [2.20.1-0ubuntu2 (lucid-updates, now) -&gt; 2.22.0-0ubuntu1 (maverick)]\nlibnotify1 [0.4.5-1ubuntu4 (lucid-updates, now) -&gt; 0.5.0-2ubuntu1 (maverick)]\nlibrsvg2-2 [2.26.3-0ubuntu1 (lucid-updates, now) -&gt; 2.32.0-0ubuntu1 (maverick)]\nlibrsvg2-common [2.26.3-0ubuntu1 (lucid-updates, now) -&gt; 2.32.0-0ubuntu1 (maverick)]\nlibsqlite3-0 [3.6.22-1 (lucid, now) -&gt; 3.7.2-1 (maverick)]\nlibtelepathy-glib0 [0.10.1-1ubuntu2 (lucid, now) -&gt; 0.12.0-0ubuntu1 (maverick)]\nnautilus-sendto-empathy [2.30.3-0ubuntu1 (lucid-updates, now) -&gt; 2.32.1-0ubuntu1 (maverick-updates)]\n</code></pre>\n\n<p>Agree to this if you don't think it's too bad (like I said, worked for me), and you'll end up with a newer Empathy.</p>\n\n<p>Good luck!</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-12-23T12:42:40.390", "id": "19837", "postId": "18608", "score": "1", "text": "Your solution may work, but it still makes major changes/updates to key components of the system (libdus, etc) which as Marcos already said, is not acceptable.", "userDisplayName": null, "userId": "6650" }, { "creationDate": "2010-12-23T12:52:44.513", "id": "19840", "postId": "18608", "score": "0", "text": "I said that. If a package depends on newer libraries then there is now way around it, you have to upgrade to them.", "userDisplayName": null, "userId": "6683" }, { "creationDate": "2010-12-24T04:20:00.420", "id": "19978", "postId": "18608", "score": "0", "text": "I'll try this when I get home. It seems the only viable/possible solution. Even if it's doesn't work your research is valid. Bounty :)", "userDisplayName": null, "userId": "5950" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-23T12:19:33.260", "id": "18608", "lastActivityDate": "2010-12-23T12:34:53.770", "lastEditDate": "2010-12-23T12:34:53.770", "lastEditorDisplayName": null, "lastEditorUserId": "6683", "ownerDisplayName": null, "ownerUserId": "6683", "parentId": "17327", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>At the bottom of the package's <a href=\"http://packages.ubuntu.com/maverick/empathy\" rel=\"nofollow\">page</a> you can find the download links for the latest version (AMD64 or x86):</p>\n\n<p><a href=\"http://packages.ubuntu.com/maverick/amd64/empathy/download\" rel=\"nofol...
null
null
null
null
null
17332
1
17364
2010-12-14T12:47:16.580
10
14663
<p>How can i move a enrypted home directory to another partition? Are there differences between moving an unencrypted home directory to another partition and an encrypted home directory?</p> <p>Perhaps does Ubuntu installer offer an option to place your home directory on an other partition?</p>
7155
null
null
2013-01-31T19:53:39.927
How can i move an encrypted home directory to another partition?
[ "partitioning", "encryption" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I am assuming you want to keep your data encrypted on the new partition.</p>\n\n<p>First close all running applications, we don't want files being updated during the copy.\nCopy the encrypted data to the new partition:</p>\n\n<pre><code>ecryptfs-umount-private\nchown $USER /new_mount_point/$USER\nrsync -avP $HOME/.Private $HOME/.ecryptfs /new_mount_point/$USER\neditor /etc/passwd # Change the user's home dir to point to the new location\n</code></pre>\n\n<p>Log-off\nLog-in</p>\n\n<p>If you want to move/copy an encrypted home you only need to copy/move ~/.Private and the encryption keys (~/.ecryptfs). If you want to copy/move to an unencrypted location just copy everything except .Private and .ecryptfs.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-12-14T18:02:15.810", "id": "18597", "postId": "17364", "score": "0", "text": "thanks, now i just have to learn how i can create a new partition with mountpoint by splitting an existing partition. will open a new question for that.", "userDisplayName": null, "userId": "7155" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T16:46:26.027", "id": "17364", "lastActivityDate": "2010-12-14T16:46:26.027", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "17332", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>Copy your home directory to other partition and then use System->Administration->Users &amp; Groups to open user settings dialog. Click on the keys icon to authenticate your self</p>\n\n<p><img src=\"https://i.stack.imgur.com/d4JQY.png\" alt=\"alt text\"></p>\n\n<p>After that...
null
null
null
null
null
17333
1
17350
2010-12-14T12:50:13.113
9
16286
<p>How do I boot from USB on a Mac? Mac OS X crashed on that PC and I want to make the owner switch to Ubuntu.</p>
3981
43660
2012-05-22T00:11:13.123
2012-05-22T00:11:13.123
Boot from USB on a Macbook
[ "live-usb", "mac" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-05-13T22:58:19.337", "id": "46609", "postId": "17333", "score": "5", "text": "It's worth noting that for whatever reason, Apple has decided to be insane and not allow booting from USB in the vast majority of cases. Essentially the drive needs to have OS X installed on it,...
{ "accepted": true, "body": "<p>solution on the apple support site: <a href=\"http://support.apple.com/kb/HT1948\">http://support.apple.com/kb/HT1948</a> </p>\n\n<p>the gist of the answer is press the option key during boot and select the device....some devices have issues. there are troubleshooting steps at the website linked above</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-14T14:38:13.587", "id": "17350", "lastActivityDate": "2010-12-14T14:38:13.587", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5768", "parentId": "17333", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>solution on the apple support site: <a href=\"http://support.apple.com/kb/HT1948\">http://support.apple.com/kb/HT1948</a> </p>\n\n<p>the gist of the answer is press the option key during boot and select the device....some devices have issues. there are troubleshooting steps...
null
null
null
null
null
17338
1
106798
2010-12-14T13:37:49.347
3
1593
<p>I already saw in the past some presentations made with a 'cube effect' transition, similar to the 3D-multiple desktop of Compiz. I heard 'Keynotes' on Mac OSX could do that.</p> <p>Is it possible to do the same on Ubuntu with PDF presentations? I tried <strong>pdfcube</strong> but it did not really kept its promises.</p>
5592
5592
2010-12-17T01:59:50.193
2012-02-23T02:45:12.133
How do I create a cube effect for PDF presentation transitions?
[ "pdf", "3d", "presentation", "cube" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It is now possible in LibreOffice Impress to set the transition of a presentation to \"Outside turning cube\". Checked on LibreOffice 3.4.5 or greater.</p>\n\n<p>This requires that the 3d-transitions be installed.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-02-23T02:32:09.867", "id": "106798", "lastActivityDate": "2012-02-23T02:45:12.133", "lastEditDate": "2012-02-23T02:45:12.133", "lastEditorDisplayName": null, "lastEditorUserId": "1992", "ownerDisplayName": null, "ownerUserId": "5592", "parentId": "17338", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>I think it might have helped to tell us what packages you've already tried, so we're not duplicating bad suggestions...</p>\n\n<p>But perhaps you want either <a href=\"http://code.100allora.it/pdfcube\" rel=\"nofollow\">pdfcube</a> or <a href=\"http://impressive.sourceforge.n...
null
null
null
null
null