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
22259
1
22263
2011-01-19T11:47:40.673
6
4198
<p>I am using GNU R to calculate a huge dataset. My PC has 4 CPU-cores, and I can see, that R is using only 1 CPU.</p> <p>Is there a way to tell R to use all 4 CPUs in order to make the calculation complete faster?</p>
8907
158442
2021-05-10T16:00:03.077
2021-05-10T16:00:03.077
How to make "R" use all CPUs
[ "cpu", "r" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T12:15:53.410", "id": "24018", "postId": "22259", "score": "0", "text": "Just to be sure: depending on your code there could be no speedup at all. Having more cores doesn't automatically lead to a performance increase. So, are you sure your code _should_ run faster u...
{ "accepted": true, "body": "<p>You should use the <code>r-cran-multicore</code> package to enable multiple cpu processing:</p>\n\n<pre><code>sudo apt-get install r-cran-multicore\n</code></pre>\n\n<p>See details about this functionality here: <a href=\"http://www.rforge.net/multicore\">http://www.rforge.net/multicore</a> but as a warning, your 'R' code will probably have to be updated to take advantage of multiple core technology. unless you are already using pre-made code which supports the multicore extensions.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-19T13:01:27.133", "id": "24022", "postId": "22263", "score": "0", "text": "thanks martin, my current script looks something like this: for(i in length){max(x[i,])} <-- how do I need to change the script in order to use multicore? (\"length\" and \"x\" are very large (length>50,000 , x>1700 values in 50,000 rows)", "userDisplayName": null, "userId": "8907" }, { "creationDate": "2011-01-19T14:06:19.963", "id": "24039", "postId": "22263", "score": "0", "text": "According to the documentation (linked above) you have to split the job up into parts which are not dependant on each other. In the case of your code, you should endeavour to split it up 4 ways, each loop dealing with 1/4 of the length. How to code this, I don't know in R.", "userDisplayName": null, "userId": "132" }, { "creationDate": "2011-01-19T18:02:48.683", "id": "24076", "postId": "22263", "score": "1", "text": "@Produnis You can easily turn your loops into parallel ones like this: `result <- mclapply(as.data.frame(t(x)), max)`. This example would find by-row maximums using all your CPUs.", "userDisplayName": null, "userId": "9061" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T12:44:44.553", "id": "22263", "lastActivityDate": "2011-01-19T12:44:44.553", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "22259", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>You should use the <code>r-cran-multicore</code> package to enable multiple cpu processing:</p>\n\n<pre><code>sudo apt-get install r-cran-multicore\n</code></pre>\n\n<p>See details about this functionality here: <a href=\"http://www.rforge.net/multicore\">http://www.rforge.ne...
null
null
null
null
null
22265
1
22328
2011-01-19T13:08:26.580
9
8925
<p>I have a VPS that has Ubuntu 8.10 Server Edition installed on it and I would like to upgrade it to 10.04. What would be the correct way of doing this? I only have ssh access to it and a "Start/Shutdown VPS" in the client panel of the vendor. In other words, I do not have physical access to it.</p> <p>Also worth noting is that I apparently cannot install programs any more since the sources (osuosl.org ?) are not online. Not the ones this server has set anyway.</p> <pre><code># apt-get update Ign http://ubuntu.osuosl.org intrepid Release.gpg Ign http://ubuntu.osuosl.org intrepid/main Translation-en_US Ign http://ubuntu.osuosl.org intrepid/universe Translation-en_US Ign http://ubuntu.osuosl.org intrepid Release Ign http://ubuntu.osuosl.org intrepid/main Packages Ign http://ubuntu.osuosl.org intrepid/universe Packages Err http://ubuntu.osuosl.org intrepid/main Packages 404 Not Found Err http://ubuntu.osuosl.org intrepid/universe Packages 404 Not Found W: Failed to fetch http://ubuntu.osuosl.org/ubuntu/dists/intrepid/main/binary-amd64/Packages.gz 404 Not Found W: Failed to fetch http://ubuntu.osuosl.org/ubuntu/dists/intrepid/universe/binary-amd64/Packages.gz 404 Not Found E: Some index files failed to download, they have been ignored, or old ones used instead. </code></pre>
506
169736
2013-10-21T11:05:11.133
2013-10-21T11:05:11.133
Updating Ubuntu server from 8.10 to 10.04
[ "server", "upgrade", "10.04", "8.10" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T13:18:27.407", "id": "24027", "postId": "22265", "score": "0", "text": "I was just about to answer you should use a CD to upgrade to the next LTS, when I saw you were talking about a Virtual Private Server ;-) Good question, +1.", "userDisplayName": null, "u...
{ "accepted": true, "body": "<p>Ok, I managed to get it solved using wojox' tip as a kickstart.</p>\n\n<ol>\n<li><p>The main issue was the inability to access the repos and thus run a proper upgrade. This is resolved by editing <code>/etc/apt/sources.list</code> and changing every occurance of <code>intrepid</code> into <code>jaunty</code>. You can do this manually or use wojox' oneliner (which requires perl to be installed). Note that <strong>we assume that the jaunty repos are still up</strong>, which they were at the time of writing.</p>\n\n<pre><code>sudo perl -p -i.intrepid -e 's/intrepid/jaunty/' /etc/apt/sources.list\n</code></pre>\n\n<p>Note - Ubuntu provides mirrors to old releases: <a href=\"https://help.ubuntu.com/community/EOLUpgrades/Intrepid\" rel=\"nofollow\">https://help.ubuntu.com/community/EOLUpgrades/Intrepid</a></p></li>\n<li><p>Update the package list</p>\n\n<pre><code>sudo apt-get update\n</code></pre></li>\n<li><p>Install <code>update-manager-core</code></p>\n\n<pre><code>sudo apt-get install update-manager-core\n</code></pre></li>\n<li><p>Run <code>do-release-upgrade</code> which will handle the update to the next version properly (and make sure being on ssh is not a hindrance). Keep in mind that although we changed the source list earlier, we are still on the version we started out. So in my case, I had to do step 4 three times. Be sure to reboot between each upgrade. Note that in case of doubt on your current Ubuntu version, you can always issue</p>\n\n<pre><code>cat /etc/issue\n</code></pre></li>\n</ol>\n", "commentCount": "2", "comments": [ { "creationDate": "2015-12-29T16:25:03.310", "id": "1053597", "postId": "22328", "score": "0", "text": "it seems it does not work anymore", "userDisplayName": null, "userId": "159182" }, { "creationDate": "2015-12-30T21:43:19.013", "id": "1054738", "postId": "22328", "score": "0", "text": "That is a bit vague, Marian. Which part does not work anymore? I assume this may have to do with the jaunty repos having been taken offline, be sure to read the link about EOLUpgrades then, you may need to use those sources.", "userDisplayName": null, "userId": "506" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-19T20:28:05.737", "id": "22328", "lastActivityDate": "2012-05-12T18:32:08.027", "lastEditDate": "2012-05-12T18:32:08.027", "lastEditorDisplayName": null, "lastEditorUserId": "506", "ownerDisplayName": null, "ownerUserId": "506", "parentId": "22265", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>It may not work because you you have to go in chronological order. 8.10 > 9.04 > 9.10 > 10.04 and 9.04 is EOL as well.</p>\n\n<pre><code>sudo perl -p -i.intrepid -e 's/intrepid/jaunty/' /etc/apt/sources.list\n</code></pre>\n", "commentCount": "3", "comments": [ ...
null
null
null
null
null
22267
1
22598
2011-01-19T13:24:55.817
3
16950
<p>I have downloaded the kernel 2.6.37 from kernel.org. I have tried to compile it but I get an error:</p> <pre><code>$ make menuconfig scripts/kconfig/conf --silentoldconfig Kconfig *** *** Configuration file ".config" not found! *** *** Please run some configurator (e.g. "make oldconfig" or *** "make menuconfig" or "make xconfig"). *** make[2]: *** [silentoldconfig] Error 1 make[1]: *** [silentoldconfig] Error 2 make: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop. </code></pre> <p>I have copied the actual kernel configuration to <code>.config</code>:</p> <pre><code>cp /boot/config-2.6.37-20110117 .config </code></pre> <p>I have executed <code>make menuconfig</code> another time but it compiles the full kernel without showing a menu. o_O I have compiled this kernel a few days without problems.</p> <p>Any help? Thanks.</p>
4870
54298
2012-07-09T13:08:41.010
2013-04-19T00:38:18.770
Error when I try to compile the kernel 2.6.37
[ "kernel", "compiling" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T13:29:00.087", "id": "24031", "postId": "22267", "score": "1", "text": "So so that it's mentioned here, and it has nothing to do with compiling the Kernel, there's a [Mainline Kernel PPA](https://wiki.ubuntu.com/Kernel/MainlineBuilds) which does already contain 2.6....
{ "accepted": true, "body": "<p>The error was an alias of <code>make</code> that I have defined in my <code>.bashrc</code>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T14:12:45.443", "id": "22598", "lastActivityDate": "2011-01-21T14:12:45.443", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4870", "parentId": "22267", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>I do this on a fairly regular basis. It's quite simple. I follow the <a href=\"https://help.ubuntu.com/community/Kernel/Compile\">\"Old fashioned way\" instructions</a>. If you're not, read that from the beginning and make sure you have the right things installed. My steps ar...
null
null
null
null
null
22268
1
null
2011-01-19T13:35:42.387
18
14135
<p>I just got my laptop's battery replaced and read a bit about how to prolong it's life. Most people say that the best choice is not to charge it will 100%, but rather to 60-80%. My battery is quite powerful (8 hours declared), so it's okay for me to charge it like this, and I mainly work plugged in.</p> <p>In Windows which ships with the laptop I can see the way to set the threshold, and there is even the auto mode, where system decides itself how much to charge. Is there something like this in Ubuntu?</p>
4185
19490
2011-09-24T21:52:56.757
2012-09-27T17:09:21.680
How to charge the battery till 60-80% only?
[ "power-management", "battery" ]
2
6
CC BY-SA 3.0
[ { "creationDate": "2011-01-19T13:44:19.750", "id": "24036", "postId": "22268", "score": "2", "text": "Do you know what type of battery it is? (I remember hearing that this 80% idea was a myth, but I want to make sure)", "userDisplayName": null, "userId": "1067" }, { "creationDate...
null
[ { "accepted": null, "body": "<p>You can install Dells Airplane manager(<a href=\"https://launchpad.net/~opensource-subakutty/+archive/ppa/+files/aircraft-manager_12.1_i386.deb\" rel=\"nofollow\">Download</a>) when you battery is 80% charged open it and enable airplane mode so now the laptop will not charge ...
null
null
null
null
null
22271
1
null
2011-01-19T13:57:30.443
5
1810
<p>I have my 7.1 soundcard set to stereo and plugged in two stereo thingies (a. my desktop speakers b. my stereo) to the front respectively rear plug. Now I would like to an easy way to mute/volume control them independently - gui if possible. </p> <p>If I set my soundcard to 4.0, the pulse audio mixer gives me sliders for front and back but the problem is that's the input signal. so if i mute the front there and I'm listening to stereo everything remains silent. But what I'd have liked in that scenario would be the front to be silent and the back playing the full stereo signal.</p> <p>Is there a way to do that or something similar? </p>
null
null
null
2014-02-20T21:21:37.840
How do I control Front and Back volume independently with cloned stereo signal
[ "sound", "pulseaudio" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The mixers that ship in Ubuntu are all very flimsey in my opinion but there are a couple of good options that are simple to install.</p>\n\n<ol>\n<li><p>ALSAMixer is usually the first port of call for telling people how to fix muted channels, etc but it's a fairly robust text...
null
null
null
null
someguy1984
22276
1
22280
2011-01-19T14:43:04.003
5
2233
<p>Does "CONCURRENCY_LEVEL=x" variable affects to compilations made with <em>make</em>?</p>
4870
null
null
2012-06-06T13:04:48.673
Does "CONCURRENCY_LEVEL=x" affect to all compilations made with make?
[ "compiling" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>No. <code>CONCURRENCY_LEVEL</code> is <code>make-kpkg</code> specific as far as I know.</p>\n\n<p>For make, the standard way of doing things is to use the <code>-j</code> (aka jobs) argument:</p>\n\n<pre><code>make -j8\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T15:03:20.610", "id": "22280", "lastActivityDate": "2011-01-19T15:03:20.610", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "22276", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>No. <code>CONCURRENCY_LEVEL</code> is <code>make-kpkg</code> specific as far as I know.</p>\n\n<p>For make, the standard way of doing things is to use the <code>-j</code> (aka jobs) argument:</p>\n\n<pre><code>make -j8\n</code></pre>\n", "commentCount": "0", "comments...
null
null
null
null
null
22283
1
23387
2011-01-19T15:26:30.987
1
136
<p>I have a server running 8.04 with the <a href="https://launchpad.net/ubuntu/+source/libnet-z3950-perl" rel="nofollow">libnet-z3950-perl</a> package</p> <p>I got some issues with encoding and while trying to debug them on my local 10.10 installation I got the following error:</p> <pre><code># apt-get install libnet-z3950-perl Reading package lists... Done Building dependency tree Reading state information... Done Package libnet-z3950-perl is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However the following packages replace it: libnet-z3950-zoom-perl E: Package 'libnet-z3950-perl' has no installation candidate </code></pre> <p>Now I want to use the <a href="https://launchpad.net/ubuntu/+source/libnet-z3950-zoom-perl" rel="nofollow">libnet-z3950-zoom-perl</a> package, which includes the <code>libnet-z3950-perl</code> package.</p> <p>My question is is the <code>libnet-z3950-zoom-perl</code> package backward compatible with <code>8.04</code>, and are there any special steps I have to take, other then downloading the package and extracting it on my server, to get it to work?</p> <p><strong>Edit:</strong> I also asked on <a href="https://answers.launchpad.net/ubuntu/+source/libnet-z3950-zoom-perl/+question/142056" rel="nofollow">launchpad</a></p>
8642
235
2011-01-26T16:10:27.737
2011-01-26T16:31:48.250
Updating from libnet-z3950-perl to libnet-z3950-zoom-perl
[ "package-management", "8.04" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I posted the solution on <a href=\"https://answers.launchpad.net/ubuntu/+source/libnet-z3950-zoom-perl/+question/142056\" rel=\"nofollow\">launchpad</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-26T16:31:48.250", "id": "23387", "lastActivityDate": "2011-01-26T16:31:48.250", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8642", "parentId": "22283", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I posted the solution on <a href=\"https://answers.launchpad.net/ubuntu/+source/libnet-z3950-zoom-perl/+question/142056\" rel=\"nofollow\">launchpad</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5",...
null
null
null
null
null
22285
1
22291
2011-01-19T15:37:50.053
13
103790
<p>During installation, the user is presented with the following dialogue:</p> <p><img src="https://i.stack.imgur.com/sITSt.png" alt="alt text"></p> <p>The 'Flash' and 'MP3' options are pretty self-explanatory, but what about the 'wireless hardware' and 'other media' options. What 'other media' is this referring to, and how is the installation of wireless hardware handled. Does Ubiquity attempt to recognise the computer's wireless device and install the appropriate drivers or does it just dump a 'proprietary wireless driver module' into the kernel and be done with it? How does it react if the computer has no wireless card?</p>
null
null
null
2011-01-19T16:02:41.440
Clarification of the third-party software options during system installation
[ "installation", "wireless", "flash", "ubiquity", "proprietary" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The \"Install this third-party software\" checkbox does two things:</p>\n\n<ol>\n<li>It installs <code>ubuntu-restricted-addons</code> much later on in the main install process. This currently includes gstreamer0.10-plugins-ugly, flashplugin-installer (Adobe Flash support), gstreamer0.10-plugins-bad, gstreamer0.10-ffmpeg, icedtea6-plugin (Java and the browser plugin for it), and gstreamer0.10-fluendo-mp3 (MP3 playback support).</li>\n<li>It asks the Additional Drivers (jockey) program to enable any drivers that can be automatically installed. Currently this is limited to just the Broadcom wireless (binary) driver.</li>\n</ol>\n\n<p>If the computer is not connected to the Internet, the install will complete successfully; however, the following will happen:</p>\n\n<ol>\n<li>Your location will not be automatically determined on the 'Where are you?' page.</li>\n<li>The set of locations you can look up by typing in the box on the 'Where are you?' page will be limited to just the cities that represent a timezone (Oslen database locations).</li>\n<li>If you have checked the 'Download updates while installing' box, this step will be skipped.</li>\n<li>If you have selected a language without full language support shipped on the CD, the language support packages will not be downloaded as part of the Ubuntu installation process.</li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2017-01-11T17:44:10.153", "id": "1349816", "postId": "22291", "score": "1", "text": "Does Additional Drivers include NVIDIA as well?", "userDisplayName": null, "userId": "21413" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T16:02:41.440", "id": "22291", "lastActivityDate": "2011-01-19T16:02:41.440", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "46", "parentId": "22285", "postTypeId": "2", "score": "14" }
[ { "accepted": null, "body": "<p><strong>Install This third-party software</strong><br>\nThird Party are ALL software that does not come normally recommended (100% free software) with Ubuntu in the CD/DVD. For example the Flash and MP3 are proprietary (Until a better software emerges which i have high hopes ...
null
null
null
null
user2405
22287
1
22296
2011-01-19T15:49:27.197
7
2773
<p>How can i make programs on second monitor still visible while playing game (Wolfenstein: Enemy Territory)?</p> <p>I know that i can use windowed mode, but playing in windowed kinda feels different, like game has a lot of tiny video lags. </p> <p>EDIT1: I am running gnome on latest ubuntu, and while one monitor has game on it and other is completely black (my notifications are set up so they pop up on second monitor) i can see notifications (libnotify and skype).</p>
6564
6564
2011-01-25T16:05:46.500
2018-10-29T11:23:44.027
How to run game on one monitor and have programs on other monitor still visible?
[ "multiple-monitors", "games" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Windowed is as good as I've got, I'm afraid but to be fair, doing it any other way will be just as laggy because the system is rendering more. It's overlaying your game on a desktop as well as the other uncovered desktop and those applications, so yeah, it's a little more intensive and that's going to hurt in-game performance.</p>\n\n<p>Coincidentally, I also use Compiz to make certain screen-sized windows render with fullscreen hinting (so they show above the panel, without window decoration). You can do this by opening CCSM (<code>compizconfig-settings-manager</code>), heading down to Window Rules, enabling it and entering a rule for your game's window.</p>\n\n<p>This won't help performance, it'll just make it look how you'd expect. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-19T17:23:36.770", "id": "24072", "postId": "22296", "score": "0", "text": "Ok, i tried playing it in windowed mode, and game is fluid as usual, i have created other question descibing problem where game locks focus and i cant change to some other window.\nhttp://askubuntu.com/q/22303/6564", "userDisplayName": null, "userId": "6564" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T16:37:32.130", "id": "22296", "lastActivityDate": "2011-01-19T16:37:32.130", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "22287", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Windowed is as good as I've got, I'm afraid but to be fair, doing it any other way will be just as laggy because the system is rendering more. It's overlaying your game on a desktop as well as the other uncovered desktop and those applications, so yeah, it's a little more int...
null
null
null
null
null
22292
1
22306
2011-01-19T16:07:39.440
11
2670
<p>When people start a new convo with me, all I see initially is that the message indicator is lit. This isn't quite obvious, so I'd like the new chat window to just pop up in my face. How can I do this?</p>
2071
10698
2014-01-08T23:00:48.887
2014-01-08T23:00:48.887
Get Chat (Empathy) to pop up when people are talking to me
[ "empathy" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-03-09T15:50:22.033", "id": "33071", "postId": "22292", "score": "0", "text": "I'd suggest not doing that as it will be distracting when not running a full screen application. For example you are writing a document or playing a game, and a chat window pops up grabbing your...
{ "accepted": true, "body": "<p><em>Edit ➜ Preferences ➜ General ➜ Behavior ➜ Uncheck <b>Display incoming events in notification area</b></em>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/2rAw7.png\" alt=\"enter image description here\"></p>\n\n<p>The Messaging Menu indicator will no longer change color/brightness when you someone tries to talk to you, but that shouldn't be needed because the window will open automatically.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-10-04T07:53:11.687", "id": "244108", "postId": "22306", "score": "3", "text": "I would NEVER suspect this checkbox to work this way.", "userDisplayName": null, "userId": "24542" }, { "creationDate": "2014-11-10T10:40:36.170", "id": "750648", "postId": "22306", "score": "2", "text": "With Empathy 3.8.6 running on Ubuntu 14.04 this solution does not work anymore. The only \"Behavior\" option left to me it whether to auto connect on startup :-(", "userDisplayName": null, "userId": "88692" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T17:45:34.833", "id": "22306", "lastActivityDate": "2011-03-09T15:44:54.567", "lastEditDate": "2011-03-09T15:44:54.567", "lastEditorDisplayName": null, "lastEditorUserId": "114", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "22292", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p><em>Edit ➜ Preferences ➜ General ➜ Behavior ➜ Uncheck <b>Display incoming events in notification area</b></em>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/2rAw7.png\" alt=\"enter image description here\"></p>\n\n<p>The Messaging Menu indicator will no longer change color/...
null
null
null
null
null
22294
1
22295
2011-01-19T16:20:00.793
2
229
<p><a href="https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/395001" rel="nofollow">Bug #395001</a> is currently giving me a headache. The OP is attempting to install Finch, a text-based instant messaging client, but is upset about the amount of dependencies that are being installed. When attempting to install it on my own server, the following packages listed below were installed. What's the purpose of all these packages in such a program? Is gstreamer included because it supports audio communication? The Finch <a href="http://developer.pidgin.im/wiki/Using%20Finch" rel="nofollow">user manual</a> doesn't help much.</p> <pre><code>The following extra packages will be installed: gstreamer0.10-nice gstreamer0.10-plugins-base gstreamer0.10-plugins-good gstreamer0.10-x gvfs gvfs-backends indicator-application libaa1 libappindicator1 libarchive1 libatasmart4 libavahi-glib1 libavc1394-0 libbluetooth3 libcaca0 libcdio-cdda0 libcdio-paranoia0 libcdio10 libcdparanoia0 libdbusmenu-glib1 libdbusmenu-gtk1 libdv4 libflac8 libgadu3 libgdu0 libglu1-mesa libgnome-keyring0 libgphoto2-2 libgphoto2-port0 libgssdp-1.0-2 libgstfarsight0.10-0 libgstreamer-plugins-base0.10-0 libgudev-1.0-0 libgupnp-1.0-3 libgupnp-igd-1.0-3 libgvfscommon0 libiec61883-0 libimobiledevice1 libindicator1 libjson-glib-1.0-0 libmeanwhile1 libnice0 libntfs10 libogg0 libopenobex1 liborc-0.4-0 libperl5.10 libplist1 libpolkit-agent-1-0 libpolkit-backend-1-0 libproxy0 libpurple-bin libpurple0 libraw1394-11 libsgutils2-2 libshout3 libsilc-1.1-2 libsilcclient-1.1-3 libsmbclient libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libtag1-vanilla libtag1c2a libtheora0 libusb-1.0-0 libusbmuxd1 libv4l-0 libvisual-0.4-0 libvisual-0.4-plugins libvorbis0a libvorbisenc2 libwavpack1 libwbclient0 libzephyr4 mtools ntfsprogs obex-data-server pidgin-data policykit-1 policykit-1-gnome udisks usbmuxd Suggested packages: libdv-bin gnome-keyring gphoto2 gtkam gstreamer-codec-install gnome-codec-install libraw1394-doc sg3-utils speex floppyd xfsprogs reiserfsprogs mdadm cryptsetup The following NEW packages will be installed: finch gstreamer0.10-nice gstreamer0.10-plugins-base gstreamer0.10-plugins-good gstreamer0.10-x gvfs gvfs-backends indicator-application libaa1 libappindicator1 libarchive1 libatasmart4 libavahi-glib1 libavc1394-0 libbluetooth3 libcaca0 libcdio-cdda0 libcdio-paranoia0 libcdio10 libcdparanoia0 libdbusmenu-glib1 libdbusmenu-gtk1 libdv4 libflac8 libgadu3 libgdu0 libglu1-mesa libgnome-keyring0 libgphoto2-2 libgphoto2-port0 libgssdp-1.0-2 libgstfarsight0.10-0 libgstreamer-plugins-base0.10-0 libgudev-1.0-0 libgupnp-1.0-3 libgupnp-igd-1.0-3 libgvfscommon0 libiec61883-0 libimobiledevice1 libindicator1 libjson-glib-1.0-0 libmeanwhile1 libnice0 libntfs10 libogg0 libopenobex1 liborc-0.4-0 libperl5.10 libplist1 libpolkit-agent-1-0 libpolkit-backend-1-0 libproxy0 libpurple-bin libpurple0 libraw1394-11 libsgutils2-2 libshout3 libsilc-1.1-2 libsilcclient-1.1-3 libsmbclient libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libtag1-vanilla libtag1c2a libtheora0 libusb-1.0-0 libusbmuxd1 libv4l-0 libvisual-0.4-0 libvisual-0.4-plugins libvorbis0a libvorbisenc2 libwavpack1 libwbclient0 libzephyr4 mtools ntfsprogs obex-data-server pidgin-data policykit-1 policykit-1-gnome udisks usbmuxd 0 upgraded, 84 newly installed, 0 to remove and 0 not upgraded. Need to get 17.4MB of archives. After this operation, 58.0MB of additional disk space will be used. </code></pre>
null
null
null
2011-01-19T16:32:37.223
What do the dependencies of 'Finch' (CLI IM client) do
[ "packaging", "dependencies" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Finch is just a CLI for Pidgin.</p>\n\n<p>It uses all the same backends and all of those need their dependencies filling. As such, a lot of garb you wouldn't be able to even use on a headless server gets pulled in.</p>\n\n<p>I don't think there's a clean way around that short of formally separating the two projects and cherry-picking code from the pidgin backends and pulling that into Finch.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T16:32:37.223", "id": "22295", "lastActivityDate": "2011-01-19T16:32:37.223", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "22294", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Finch is just a CLI for Pidgin.</p>\n\n<p>It uses all the same backends and all of those need their dependencies filling. As such, a lot of garb you wouldn't be able to even use on a headless server gets pulled in.</p>\n\n<p>I don't think there's a clean way around that short...
null
null
null
null
user2405
22297
1
null
2011-01-19T16:38:52.633
4
1478
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/10465/poor-sound-quality-and-headphones-not-working">Poor sound quality and headphones not working</a> </p> </blockquote> <p>Using Ubuntu 10.10 on a HP Pavilion t3019.es, which has a Realtek ALC880 soundcard. It has 6 rear jack outputs, plus digital audio input and output, plus 3 front jacks (mic, headphones and a blue one which i don't know what's for). </p> <p>The sound on my computer is very low, and when i raise the volume up to 50%, it starts sounding distorted, crackling. Also, the headphones don't work when i plug them (it just keeps on playing through the speakers). </p> <p>I tried to comment the "/etc/modprobe.d/alsa-base.conf" file according to the soundcard and jacks in my computer, but none of the lines added worked (naturally, didn't added them at once). I found out that adding "options snd-hda-intel model=generic" to it made the sound better, but it's not as good as in Windows yet.</p> <p>I've fulfilled a bug report with the <strong>ubuntu-bug audio</strong> command, and sent it to launchpad. Here it is: <a href="https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/709799" rel="nofollow noreferrer">https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/709799</a></p> <p>Any ideas? Other than setting the PCM value, please, didn't work for me.</p> <p>Thanks.</p>
9067
-1
2017-04-13T12:23:59.520
2011-02-02T21:48:53.810
Bad sound quality and headphones not working
[ "10.10", "sound" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2011-06-05T20:31:29.393
null
null
22300
1
null
2011-01-19T16:51:49.257
2
824
<p>In the event an external hard-drive is physically disconnected and the device is mounted using device-mapper, no cleanup is made.</p> <p><strong>In particular:</strong></p> <ul> <li>the directory where the drive was mounted is empty</li> <li>the mount is still present in mount(8)</li> <li>the device-mapper devices are still present</li> <li>the physical device is still present as <code>/dev/sd*</code></li> </ul> <p>In this scenario, without cleaning up the items above, the first three steps need manual cleanup (via umount, dmsetup remove and udevadm trigger --subsystem-match=block). Even then, the disk's sysfs directory is still present in <code>/sys/bus/scsi/drivers/sd</code> and you need to manually echo 1 > delete to make sure the SCSI device is unregistered. Without it, replugging the disk back in does not work.</p> <p>So my question is - is there a program that can detect when a physical disk that's been device mapped is no longer responding and perform the necessary cleanup?</p>
9206
47151
2012-03-12T15:04:23.173
2012-03-12T15:04:23.173
What utility to use to clean up after a disk is suddenly disconnected?
[ "kernel", "disk", "udisks" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>I am not aware of a program to do that for you however I had a device at one stage which would periodically end up in this state by suddenly disconnecting itself. It would reconnect fine after manually going through the steps you describe above, my solution relied on noticin...
null
null
null
null
null
22302
1
22308
2011-01-19T17:07:00.560
4
15038
<p><br> First time ever today <strong>Firefox Version 3.6.13</strong> freezed for me on <strong>Ubuntu 10.10 64bit</strong>.</p> <p>I open <strong>Firefox</strong> normally but then nothing respond on the <strong>GUI</strong>.The only thing I can do is close it.<br> When Closed I try to re-open but the application still runs on the background<br> So I have to kill it manually along with <strong>Firefox-bin</strong> from the <strong>System monitor</strong> or <strong>kill pid</strong> command ..<br> I don´t know what caused this..I suspect <strong>Addons</strong> or maybe a proxy setting with polipo.<br> I also installed <strong>DockbarX</strong> this morning but it seems ok with <strong>Chromium</strong> now.</p> <p>Same story after rebooting,<br> So I left it as it is to find a solution from <strong>AskUbuntu</strong><br> What can I do now? Where do I check the Logs to locate the problem?<br> How do I get back my working Firefox without Re-installation ?<br> Any Suggestion is welcome.</p>
8096
41
2011-01-19T18:38:36.113
2017-11-03T00:19:55.760
How to Fix Firefox when it freezes completely after open it?
[ "10.10", "firefox", "freeze", "plugins" ]
6
1
CC BY-SA 2.5
[ { "creationDate": "2012-12-12T14:12:38.977", "id": "281747", "postId": "22302", "score": "0", "text": "I also discuss some other useful `firefox` troubleshooting techniques in [relation to a different question](http://askubuntu.com/questions/228222/mozilla-addons-not-working-properly-in-ubuntu-1...
{ "accepted": true, "body": "<p>It sounds possible you have a problem with an Add-On causing an issue.</p>\n\n<p>I would suggest attempting to start firefox in safe mode with all your addons etc disabled and see if that stops the application freezing on startup. You can do so by running the following command.</p>\n\n<p><code>firefox -safe-mode</code></p>\n\n<p>You should then get a dialog box with several options make sure that Disabled all add-ons is checked and click on Continue in Safe Mode. There are other options there to reset certain settings and features that you can also try if it turns out not to be an Add-On conflict. If that resolves the issue remember safe mode only applies for this session so you will now want to resolve which add-on is causing firefox to freeze.</p>\n\n<p>First while in safe mode go to Tools > Add-Ons and disable all installed Add-Ons there that will make firefox run with no Add-Ons next time it is started in normal mode. At that point close firefox down and start it in normal mode to ensure it still runs without freezing and that all Add-Ons are indeed disabled.</p>\n\n<p>Your next course of action if this is all working still is to attempt to enable each Add-On you have in turn, restarting firefox in between each to identify the Add-On which is causing firefox to freeze note it could also be a combination of Add-Ons so in the event that enabling only one at a time does not cause the symptoms next try these steps.</p>\n\n<p>After running through every Add-On singly start enabling all your Add-Ons again restarting with each you enable until you produce the freeze, at that point you know that the last one you activated is conflicting with one of the others enabled prior. You can then use the safe mode trick to disable the others and try each of those candiates combined with just the last suspect Add-On you enabled to find the responsible pair of Add-Ons.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-20T00:58:27.620", "id": "24136", "postId": "22308", "score": "0", "text": "Yes it works! I input the safe mode command disable some supsected addons and Firefox was back and running.I accept this as the solution cause the way was faster.thanks", "userDisplayName": null, "userId": "8096" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T17:50:31.377", "id": "22308", "lastActivityDate": "2011-01-19T17:50:31.377", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9202", "parentId": "22302", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>It sounds possible you have a problem with an Add-On causing an issue.</p>\n\n<p>I would suggest attempting to start firefox in safe mode with all your addons etc disabled and see if that stops the application freezing on startup. You can do so by running the following comma...
null
null
null
null
null
22303
1
37108
2011-01-19T17:20:56.537
6
1547
<p>I am playing <em>Wolfenstein: Enemy Territory</em>, and when I play it in windowed mode, I can't change focus from the game to something else (<kbd>Alt</kbd>+<kbd>Tab</kbd> doesn't work).</p>
6564
114
2011-06-23T03:20:46.793
2011-06-23T03:20:46.793
How can I change focus when a game locks it?
[ "window-manager", "games", "focus" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I found one way, it works for Wolf:ET, it may help with other games too, if you turn on gameconsole (usually tilde key) game will release mouse lock (in windowed mode).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-26T13:23:15.407", "id": "37108", "lastActivityDate": "2011-04-26T13:23:15.407", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6564", "parentId": "22303", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>I had similar experience with Unreal Tournament 2004. Eventually I have found that pressing Esc (thus switching to game menu) released keyboard grab and I could alt-tab.</p>\n\n<p>Unfortunately, lot of games seem to not behave in a desktop-friendly fashion, exclusively grabbi...
null
null
null
null
null
22305
1
22341
2011-01-19T17:39:25.723
3
1106
<p>I am trying to get my ruby on rails up and running but i can't seem to install sqlite3-ruby gem . When i run it i get this error : </p> <blockquote> <p>Fetching: sqlite-ruby-2.2.3.gem (100%) Building native extensions. This could take a while... ERROR: Error installing sqlite-ruby: ERROR: Failed to build gem native extension.</p> <p>/usr/bin/ruby1.8 extconf.rb checking for main() in -lsqlite... no checking for sqlite.h... no <strong>* extconf.rb failed *</strong> Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options.</p> </blockquote> <p>any solutions ?</p>
9214
null
null
2011-05-31T20:06:23.827
sqlite-ruby gem problem
[ "rails", "sqlite" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Okay, so I think I have to post something since I'm telling folks they are incorrect. </p>\n\n<p>In the case of sqlite-ruby libsqlite3-dev should do it. </p>\n\n<p>To be clear the ruby-full pseudo package only installs all of the \"components\" for an almost all option ruby installation. It does absolutely nothing for dependency satisfaction for gems containing binary components. </p>\n\n<p>To find out what dev packages a gem requires you can occasionally check the gem's specfile or the page on rubyforge. If it complains about a specific file not being found a little creative googling (the word provides often helps) should help you locate the -dev package that is required. </p>\n\n<p>Another useful site for this type of thing is ubuntu package search: <a href=\"http://packages.ubuntu.com/search?mode=exactfilename&amp;suite=intrepid&amp;section=all&amp;arch=any&amp;searchon=contents&amp;keywords=sqlite.h\" rel=\"nofollow\">http://packages.ubuntu.com/search?mode=exactfilename&amp;suite=intrepid&amp;section=all&amp;arch=any&amp;searchon=contents&amp;keywords=sqlite.h</a> </p>\n\n<p>Another point worth noting is that Ubuntu is siding with Debian on this one and trying to prebuild packages titled ruby-gemname or similar into aptitude to simplify package management and track gem changes. This does break some of the requires in some ruby scripts. I have quite the rant on that topic, but I digress. </p>\n\n<p>If you install libsqlite3-dev and it still doesn't work - ensure you are using the correct architecture gem (this is not necessarily automatic, maybe a future feature would be great gem developers). </p>\n\n<p>If you have that library installed and you are sure the architecture on the gem is correct, post what file it hangs on, and I'll see what I can dig up.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-20T00:32:08.013", "id": "24134", "postId": "22341", "score": "0", "text": "Yeah I think you got it down. Thats what he needs.", "userDisplayName": null, "userId": "5368" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T21:36:58.790", "id": "22341", "lastActivityDate": "2011-01-19T21:36:58.790", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5768", "parentId": "22305", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Okay, so I think I have to post something since I'm telling folks they are incorrect. </p>\n\n<p>In the case of sqlite-ruby libsqlite3-dev should do it. </p>\n\n<p>To be clear the ruby-full pseudo package only installs all of the \"components\" for an almost all option ruby...
null
null
null
null
null
22307
1
23125
2011-01-19T17:49:53.100
6
10985
<p>Not sure what's going on here. I've installed <code>clamav</code>, <code>clamav-freshclam</code> and <code>clamav-daemon</code> to run automated scans (using cron) on my machine running <strong>Ubuntu Desktop 10.04 LTS x64</strong>.</p> <p>Unfortunately, <em>clamdscan refuses to scan anything</em>. This is the output I receive every time I try:</p> <pre><code>root@uhs:/raid/Share/Public/# clamdscan -v /raid/Share/Public/ /raid/Share/Public: lstat() failed: Permission denied. ERROR ----------- SCAN SUMMARY ----------- Infected files: 0 Total errors: 1 Time: 0.004 sec (0 m 0 s) root@uhs:/raid/Share/Public/# </code></pre> <p><code>/raid/Share/Public</code> has 777 permissions, and the clamav-daemon user <code>clamav</code> has been added to both the <code>admin</code> and <code>root</code> groups. I get the same error no matter what files or directories I try to scan.</p> <p>I even ran <code>dpkg-reconfigure clamav-base</code> and made the daemon user <code>root</code> to see if that would help (which it didn't). And I have of course run <code>service clamav-daemon restart</code> in between all of these changes.</p> <p>I'm aware of the <code>cat file_name | clamdscan -</code> option, <strong>but I need to be able to scan whole directories recursively</strong>, so obviously this won't work.</p> <p>What am I doing wrong? Can I use clamdscan?</p> <p>Thank you for any help.</p> <hr /> <h2>Update</h2> <p>Output of <code>sudo -u clamav stat /raid/Share/Public/</code>:</p> <pre><code>root@uhs:/raid/Share/Public# sudo -u clamav stat /raid/Share/Public/ File: `/raid/Share/Public/' Size: 6 Blocks: 0 IO Block: 4096 directory Device: 900h/2304d Inode: 54526208 Links: 2 Access: (0777/drwxrwxrwx) Uid: ( 1000/awensley) Gid: ( 120/ admin) Access: 2011-01-19 01:00:00.304365306 -0600 Modify: 2011-01-18 22:47:06.793592673 -0600 Change: 2011-01-19 00:42:52.023813550 -0600 root@uhs:/raid/Share/Public# </code></pre> <hr /> <h2><strong>Update 2</strong></h2> <p>I have this exact same problem on 5 separate Ubuntu 10.04 machines; 3 of them servers. So either I'm missing something or there's a real problem here.</p> <hr /> <h2><strong>Update 3</strong></h2> <p>I've submitted this as <a href="https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/708395" rel="nofollow noreferrer">a bug report on Launchpad</a></p>
3291
-1
2020-06-12T14:37:07.210
2014-09-16T09:16:14.077
Why can't clamdscan scan anything?
[ "10.04", "permissions", "clamav" ]
1
6
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T18:08:41.613", "id": "24077", "postId": "22307", "score": "1", "text": "Try: sudo -u clamav stat /raid/Share/Public/ , post the output.", "userDisplayName": null, "userId": "742" }, { "creationDate": "2011-01-19T21:04:42.547", "id": "24106", ...
{ "accepted": true, "body": "<p>Elsewhere, I've seen that AppArmor or SELinux can cause problems for clamdscan. </p>\n\n<p>If you run <code>sudo aa-complain clamd</code> and the re-scan works, that's probably your issue. (Be sure to re-enable it with <code>sudo aa-enforce clamd</code>.)</p>\n\n<p>To temporarily disable SELinux, which I haven't run on Ubuntu, you can try \n<code>echo 0 &gt; /selinux/enforce</code> . We can follow up with that if you're running SELinux.</p>\n\n<p>update: Here's a very interesting thread from launchpad: <a href=\"https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/450250\" rel=\"nofollow noreferrer\">https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/450250</a> .\nI would follow Jamie Strandboge's comments there to eliminate AppArmor profiles as the culprit.</p>\n\n<hr>\n\n<p>If these aren't applicable the hack that springs to mind is piping a directory to standard output via tar, and feeding that into clamdscan (which is a variation on what you've mentioned for a single file). I think that would look something like : </p>\n\n<pre><code> tar -cvf --to-stdout /somedirectory | clamdscan - \n</code></pre>\n\n<hr>\n\n<p>You should be able to get the most recent packaged version of clamav from the Ubuntu Clamav team from their ppa : <a href=\"https://launchpad.net/~ubuntu-clamav/+archive/ppa\" rel=\"nofollow noreferrer\">https://launchpad.net/~ubuntu-clamav/+archive/ppa</a></p>\n\n<p>Also, from the <a href=\"http://www.clamav.net\" rel=\"nofollow noreferrer\">ClamAV site</a>: \"If you are going to submit a bug report, always check it against the <a href=\"http://www.clamav.net/download/sources\" rel=\"nofollow noreferrer\">latest development code</a> .\" (Assuming you haven't already done this) You'll have to pull that code manually from their Git repository and compile it. </p>\n\n<p>For bug reporting on the Ubuntu packages, please see <a href=\"https://askubuntu.com/questions/5121/how-do-i-report-a-bug\">http://askubuntu.com...how-do-i-report-a-bug</a> .</p>\n\n<p>=======</p>\n\n<p>One thing to note, is that as far as I can tell, it is <code>clamscan</code> and not <code>clamdscan</code> which is supposed to just work unproblematically in your home directory. </p>\n\n<p>Ubuntu presents some possible complication (with the very desirable security increase) by having apparmor turned on by default. </p>\n\n<p>(clamdscan requires the clamav daemon to be running -- clamscan, more of an ad-hoc user-oriented package, does not. With the additional features of clamdscan/clamd, there is added complexity overhead.)</p>\n\n<p>Yet, against that, the bug for <code>clamdscan</code> and apparmor mentioned in the bug from this post should have been corrected by the time of the current package. </p>\n\n<hr>\n\n<p><strong>Updated</strong> \n<em>attempts to reproduce and resolve</em></p>\n\n<p>I don't think I can completely reproduce your environment or control for user error (definitely mine and possibly yours), however I've reproduced what I think is the same issue under the same version of clamav you have. </p>\n\n<p>Additionally, I've downloaded the latest code from the git repository, compiled and installed it, and still have the issue. </p>\n\n<p>I don't have SELinux, but I do have AppArmor. Have I correctly accounted for that? I'm not 100%. I still get the permission denied errors after turning off AppArmor though. </p>\n\n<p>=======</p>\n", "commentCount": "12", "comments": [ { "creationDate": "2011-01-25T18:38:51.583", "id": "25098", "postId": "23125", "score": "0", "text": "I thought I had it with the apparmor profiles. I added `/raid/ r, /raid/** r,` to /etc/apparmor.d/usr.sbin.clamd and restarted apparmor and clamav-daemon, but ended up with the exact same problem. I even stopped apparmor completely with `service apparmor teardown` (the stop option doesn't unload profiles), restarted clamav-daemon, and... same problem. I'm thinking maybe it's selinux or a bug now. I didn't fully understand how to use the command to disable selinux, so I'm not sure if it worked.", "userDisplayName": null, "userId": "3291" }, { "creationDate": "2011-01-25T18:44:59.313", "id": "25101", "postId": "23125", "score": "0", "text": "Nevermind, I just found this article: http://www.thegeekstuff.com/2009/06/how-to-disable-selinux-redhat-fedora-debian-unix/ and verified that I did disable selinux properly. I still have the same problem. I think this is a bug now because I also noted that even with the default installation of clamav-daemon (after purging all clamav packages completely), I can't even scan my home directory, which IS supposed to \"just work\" according to that bug report.", "userDisplayName": null, "userId": "3291" }, { "creationDate": "2011-01-25T22:49:20.040", "id": "25121", "postId": "23125", "score": "0", "text": "I have `ClamAV 0.96.5/12569/Tue Jan 25 10:13:26 2011`", "userDisplayName": null, "userId": "3291" }, { "creationDate": "2011-01-26T17:56:55.890", "id": "25301", "postId": "23125", "score": "0", "text": "So, this is a bug right? I can't even scan my own home directory, and the entries to allow for that in the apparmor profile were already there when I looked at it.", "userDisplayName": null, "userId": "3291" }, { "creationDate": "2011-01-26T18:53:25.540", "id": "25313", "postId": "23125", "score": "0", "text": "As far as I can tell, it does look like a bug. I am not confident in isolating the component at fault, though. I'm updating my answer with some steps I took in an attempt to reproduce and resolve.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-01-26T18:56:53.193", "id": "25317", "postId": "23125", "score": "0", "text": "For now, I think it would be helpful to send this as an ubuntu bug. Please try running `ubuntu-bug clamav-base` or possibly against `clamav-daemon`. Let us know -- I'll add myself to the bug.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-01-26T23:10:24.767", "id": "25356", "postId": "23125", "score": "0", "text": "In response to your attempt to reproduce the error, I had both selinux and apparmor completely disabled and clamdscan still didn't work. Also, the apparmor profile is /etc/apparmor.d/usr.sbin.clamd, ending with `clamd` (which implies daemon, though I could be wrong). I'm going to try to submit the bug now. As far as I can tell, clamdscan in Ubuntu 10.04 doesn't do jack.", "userDisplayName": null, "userId": "3291" }, { "creationDate": "2011-01-26T23:48:36.500", "id": "25359", "postId": "23125", "score": "0", "text": "Bug reported: https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/708395", "userDisplayName": null, "userId": "3291" }, { "creationDate": "2011-01-27T19:57:50.203", "id": "25499", "postId": "23125", "score": "0", "text": "Please, never use \"service apparmor teardown\", just stop individual profiles, like this: \"aa-complain clamd\"", "userDisplayName": null, "userId": "721" }, { "creationDate": "2011-01-27T20:24:14.617", "id": "25511", "postId": "23125", "score": "0", "text": "@Kees You mean as an apparmor best practice? (We should have a QA post for that!) However, in some cases we don't know what package is presenting the problem. Teardown is the equivalent of completely removing an ACL on a firewall instead of tinkering with an individual src/dst/port rule -- something you do for a moment before reapplying the entire set of protections. Certainly you don't want to run that way, but success or failure gives you a clear idea of a major component that should be targeted or eliminated as a possible culprit. Or is there some more dire consequence of teardown?", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-01-27T20:32:43.733", "id": "25513", "postId": "23125", "score": "0", "text": "@Kees -- here's the 'best practices' post: http://askubuntu.com/questions/23577/i-need-to-troubleshoot-apparmor-but-ive-heard-that-using-the-teardown-method", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-01-30T23:26:29.397", "id": "26085", "postId": "23125", "score": "0", "text": "Bounty awarded. Thanks for your help. I gained a lot of info about Apparmor through this process that I had no clue about before. Hopefully the devs can figure out the rest of the issue.", "userDisplayName": null, "userId": "3291" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-24T23:47:02.207", "id": "23125", "lastActivityDate": "2011-01-27T19:59:06.460", "lastEditDate": "2017-04-13T12:23:44.677", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "22307", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Elsewhere, I've seen that AppArmor or SELinux can cause problems for clamdscan. </p>\n\n<p>If you run <code>sudo aa-complain clamd</code> and the re-scan works, that's probably your issue. (Be sure to re-enable it with <code>sudo aa-enforce clamd</code>.)</p>\n\n<p>To tempora...
null
null
null
null
null
22309
1
23148
2011-01-19T18:08:18.617
17
6183
<p>This is a big feature when it comes to putting Ubuntu onto tablets. Currently, Netbook edition works great for that purpose and the pen digitiser is perfect, but the handwriting would be a real dealmaker (especially for my business - we could actually move to Linux) to compete with the Windows one.</p> <p>CellWriter exists, but that only handles character and keyboard input (but I don't know about multitouch on the keyboard). It also needs to handle print and cursive, because character mode can be slow and uncomfortable (unless you're writing passwords). Lastly, CellWriter needs to have some default letter shapes rather than having to be trained from the start.</p> <p>There is a software package called MyScript (by Vision Objects) that handles all four modes (keyboard, character, print, cursive) plus calculator and fullscreen, but it's only free as a trial. Still, it would be nice to see it in the For Purchase section and the trial in the free section of the Software Centre.</p> <p>The only other ones are for Chinese/Japanese/Korean characters.</p> <p>What would really make a difference for us is the integration of some formal API with the OS that can automatically activate when running on a tablet to pass ink data to whatever recognition system is installed, and have something available (however rudimentary) to use it.</p>
9215
25798
2012-10-30T10:20:51.387
2012-10-30T10:20:51.387
Are there plans for handwriting recognition?
[ "tablet", "input-method", "stylus" ]
1
5
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T19:45:30.930", "id": "24099", "postId": "22309", "score": "2", "text": "I'm not sure of what is the question here. I think this probably should go on Ubuntu Brainstorm.", "userDisplayName": null, "userId": "2834" }, { "creationDate": "2011-01-19T21:0...
{ "accepted": true, "body": "<p>Ubuntu keeps all it's plans in a system on launchpad called <code>blueprints</code>, each feature or plan is carefully laid out and given a time line. Searching this database I can find no release targeted specifications for handwriting. But I did find this user created specification back in Boston-UDS 2007:</p>\n\n<p><a href=\"https://blueprints.launchpad.net/ubuntu/+spec/handwriting-recognition\" rel=\"nofollow\">https://blueprints.launchpad.net/ubuntu/+spec/handwriting-recognition</a></p>\n\n<p>Perhaps it's time for you and others to pick this up and beat the drum so Mark and the Platform team will take the lack of handwriting recognition as a problem that needs fixing in the next release.</p>\n\n<p>Now Ubuntu is based on Gnome, and checking Ubuntu functionality at this level wouldn't be complete without looking for gnome solutions. For that I come across this project called CellWriter:</p>\n\n<p><a href=\"http://risujin.org/cellwriter/\" rel=\"nofollow\">http://risujin.org/cellwriter/</a></p>\n\n<p>Gnome plans are not firm on the matter of hand reorganisation, so it's not likely we'll get leadership in putting the functionality into Gnome by default. My best advice would be to try CellWriter, if it does the job then push for it's inclusion by default by creating or modifying the blueprint and keeping at the issue through the release cycle.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-25T03:52:51.993", "id": "24985", "postId": "23148", "score": "0", "text": "This should be lobied as an accessability issue. Handwriting is an alternative input option, and for some can be the only input method. As I found when I used to sell computers a few years back.", "userDisplayName": null, "userId": "7528" }, { "creationDate": "2011-01-25T04:00:28.380", "id": "24987", "postId": "23148", "score": "0", "text": "@Kyle Please consider contacting Penelope Stowe of the Accessibility Team to discuss the issue further.", "userDisplayName": null, "userId": "132" }, { "creationDate": "2011-01-25T12:56:41.420", "id": "25045", "postId": "23148", "score": "0", "text": "As I said, CellWriter - while good - doesn't support the full range of handwriting input (print and cursive) and needs to be trained before it can be used. It would be good to at least have default behaviour so it can train itself.", "userDisplayName": null, "userId": "9215" }, { "creationDate": "2011-01-25T14:55:52.610", "id": "25057", "postId": "23148", "score": "0", "text": "@Patrick - That's a development job, as you can see, I can find no such plans to spend the time or money on building that functionality at this time.", "userDisplayName": null, "userId": "132" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-25T03:08:23.173", "id": "23148", "lastActivityDate": "2011-01-25T03:08:23.173", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "22309", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Ubuntu keeps all it's plans in a system on launchpad called <code>blueprints</code>, each feature or plan is carefully laid out and given a time line. Searching this database I can find no release targeted specifications for handwriting. But I did find this user created speci...
null
null
null
null
null
22311
1
22334
2011-01-19T18:26:22.417
4
7762
<p>I have an Asus X71SL with an Intel Dual Core T3200 processor. Any kernel version after 2.6.35-rc2 won't boot up on my machine without the <code>nolapic</code> kernel parameter at bootup. I have already reported this <a href="https://bugs.launchpad.net/ubuntu/+source/linux-meta/+bug/689796" rel="nofollow">as a bug</a>, but this is the only thing keeping me from updating to 10.10 or 11.04 when it'll be released. </p> <p>Should I just use the <code>nolapic</code> parameter as a default and move on (and in the meantime try to resolve the bug) or is there a big performance/other trade-off?</p>
9217
158442
2018-02-13T07:20:58.203
2018-02-13T07:20:58.203
What is the impact of the nolapic parameter on a multiprocessor laptop?
[ "kernel", "acpi" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2012-03-20T12:34:55.613", "id": "135458", "postId": "22311", "score": "0", "text": "I just noticed this problem as well. My Asus U46E (dual core i7) won't boot without the nolapic flag either (generic kernel of 11.10). It will boot with the flag, but only show 1 cpu. It is a b...
{ "accepted": true, "body": "<p>I don't think there are any limitations under that mode. All It will do Is make one of your processors work, not all of them. Basically, with <code>nolapic</code> it just uses one processor than the number installed.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-19T21:28:16.407", "id": "24111", "postId": "22334", "score": "0", "text": "I know the performance boost is not linear with number of cpus, but that still would be quite a performance drop, no? (I know this is better answered empirically, but I love to hear hard facts before that :) )", "userDisplayName": null, "userId": "9217" }, { "creationDate": "2011-01-19T21:28:17.893", "id": "24112", "postId": "22334", "score": "2", "text": "So, a 50% performance hit. It might be possible that you could get the multiple cores working with a newer kernel, if you disabled hyper-threading in the BIOS, or tried other things like that.", "userDisplayName": null, "userId": "9229" }, { "creationDate": "2011-01-19T21:34:18.237", "id": "24114", "postId": "22334", "score": "0", "text": "My BIOS is incredibly locked down, it won't let me change anything significant, except for boot order and password-protect the pc. I've been trying a lot of kernel versions, from 2.6.35-rc to the latest 2.6.37 in the kernel ppa. all have the same reaction.", "userDisplayName": null, "userId": "9217" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T20:50:26.513", "id": "22334", "lastActivityDate": "2011-01-19T20:50:26.513", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "456", "parentId": "22311", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>I don't think there are any limitations under that mode. All It will do Is make one of your processors work, not all of them. Basically, with <code>nolapic</code> it just uses one processor than the number installed.</p>\n", "commentCount": "3", "comments": [ { ...
null
0
null
null
null
22313
1
191013
2011-01-19T18:32:28.913
100
180349
<p>Mark Shuttleworth <a href="http://www.markshuttleworth.com/archives/568">recently blogged</a> about the decision to include the Qt libraries in the 11.10 release, with a <a href="http://www.jonobacon.org/2011/01/18/some-further-notes-on-qt-in-ubuntu/">followup from</a> Jono Bacon. Mark states that the biggest challenge to integrating apps written in Qt into the larger Ubuntu system is Qt's current non-compatibility with dconf.</p> <p>What is dconf, and what is the role it plays in Ubuntu?</p>
null
null
2013-01-15T10:54:57.863
2020-10-29T15:41:43.857
What is dconf, what is its function, and how do I use it?
[ "dconf", "gsettings" ]
3
1
CC BY-SA 3.0
[ { "creationDate": "2019-07-24T15:33:31.350", "id": "1933287", "postId": "22313", "score": "0", "text": "Possible duplicate of [How do I use the gconf editor?](https://askubuntu.com/questions/17249/how-do-i-use-the-gconf-editor)", "userDisplayName": null, "userId": "349837" } ]
{ "accepted": true, "body": "<h2>Introduction</h2>\n\n<p>As other answers on this site discuss <code>gconf</code> and <code>dconf</code> together, I will just concentrate on discussing command-line tools such as <code>gsettings</code> and the gui <code>dconf-editor</code> that are used to access the <code>dconf</code> database.</p>\n\n<p>At <a href=\"https://live.gnome.org/dconf\" rel=\"noreferrer\">the GNOME official site</a> it is noted that </p>\n\n<blockquote>\n <p>dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems.</p>\n \n <p>dconf is a simple key-based configuration system. Keys exist in an unstructured database (but it is intended that keys that logically belong together are grouped together). </p>\n \n <p>Having all of the keys in a single compact binary format also avoids the intense fragmentation problems currently experienced by the tree-of-directories-of-xml-files approach.</p>\n \n <p>dconf is optimised for reads. Typically, reading a key from dconf involves zero system calls and zero context switches.\n Writes are less optimised -- they traverse the bus and are handled by a \"writer\" -- a DBus service -- in the ordinary way. </p>\n</blockquote>\n\n<h2>Using <code>gsettings</code> to view and change settings</h2>\n\n<p>Once one gets to know <code>gsettings</code> it can be as easy as the gui <code>dconf-editor</code>. The options can be listed by entering <code>man gsettings</code> or going to the <a href=\"http://manpages.ubuntu.com/manpages/precise/en/man1/gsettings.1.html\" rel=\"noreferrer\">Ubuntu manpages online</a>.</p>\n\n<p><strong>NOTE:</strong> As everyone's system has different programs installed, you may have to substitute the specific items I choose for different ones when experimenting yourself, as I am using XUbuntu XFce with quite a lot of GNOME programs.</p>\n\n<p>To list all the available schemas, enter</p>\n\n<pre><code>gsettings list-schemas\n</code></pre>\n\n<p>To also include all the keys, enter</p>\n\n<pre><code>gsettings list-recursively\n</code></pre>\n\n<p><strong>However</strong>, it is usually easier to specify what you want with, for examples, </p>\n\n<pre><code>gsettings list-schemas | grep -i shotwell\n</code></pre>\n\n<p>This returns a long list; I have shortened it to:</p>\n\n<pre><code>org.yorba.shotwell\norg.yorba.shotwell.preferences.ui\norg.yorba.shotwell.preferences.slideshow\norg.yorba.shotwell.plugins.enable-state\norg.yorba.shotwell.printing\norg.yorba.shotwell.preferences.editing\norg.yorba.shotwell.preferences.files\n</code></pre>\n\n<p>Now when you have found the schema that you are interested in, list the keys with</p>\n\n<pre><code>gsettings list-keys org.yorba.shotwell.preferences.ui\n</code></pre>\n\n<p>This returns a list (again I have shortened it):</p>\n\n<pre><code>background-color\ndisplay-basic-properties\ndisplay-extended-properties\ndisplay-photo-ratings\ndisplay-photo-tags\ndisplay-photo-titles\nevent-photos-sort-ascending\nevent-photos-sort-by\n</code></pre>\n\n<p>Pick one and see what the current value is with</p>\n\n<pre><code>gsettings get org.yorba.shotwell.preferences.ui display-photo-tags\n</code></pre>\n\n<p>This returns a value of true, so to reverse it, use</p>\n\n<pre><code>gsettings set org.yorba.shotwell.preferences.ui display-photo-tags false\n</code></pre>\n\n<p>These are <em>trivial</em> examples, but show basically how keys and values are identified and changed with <code>gsettings</code>.</p>\n\n<h2>Using dconf-editor to change settings</h2>\n\n<p>The GUI program, <code>dconf-editor</code> is installed with <a href=\"https://packages.ubuntu.com/bionic/dconf-tools\" rel=\"noreferrer\">dconf-tools</a> package by clicking <a href=\"http://apt.ubuntu.com/p/dconf-tools\" rel=\"noreferrer\">here</a> or by running</p>\n\n<pre><code>sudo apt-get install dconf-tools\n</code></pre>\n\n<p>Then run it by entering in the terminal or in the quick launch menu, <code>dconf-editor</code>.</p>\n\n<p>As you can see in the screenshot, all the various schemas can be expanded on the left hand side and the appropriate key selected. It is very straightforward to navigate to the value you want (in this case the <code>gnome-mplayer</code> preferences). You can click the check box to have a value activated or add a numerical value into one of the other boxes. You can also search within dconf editor with <kbd>Ctrl</kbd>+<kbd>F</kbd> keyboard shortcut.</p>\n\n<p><img src=\"https://i.stack.imgur.com/yBGwT.png\" alt=\"enter image description here\"></p>\n\n<p>You can also add another log say to <code>log-viewer</code> by adding a path in the form ['/var/log/auth.log', var....'] in the screenshot below. </p>\n\n<p><img src=\"https://i.stack.imgur.com/S01q4.png\" alt=\"enter image description here\"></p>\n\n<h2>Conclusion</h2>\n\n<p>There are many other useful ways that you can tweak settings with both <code>gsettings</code> and <code>dconf-editor</code> and they are straightforward to use. It is worth looking through them to see if there are options there that are not in the programs' preferences, as you may be able to customize your program just the way you want. As fossfreedom recently showed in this question</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/189265/how-do-i-edit-the-list-of-music-library-locations-in-rhythmbox/189686#189686\">How do I edit the list of music library locations in Rhythmbox?</a></li>\n</ul>\n\n<p>knowing how to use <code>gsettings</code> or <code>dconf-editor</code> is extremely valuable. See also:</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/17249/how-do-i-use-the-gconf-editor\">How do I use the gconf editor?</a></li>\n</ul>\n", "commentCount": "7", "comments": [ { "creationDate": "2012-09-22T11:10:59.330", "id": "237742", "postId": "191013", "score": "5", "text": "Since the programs `gsettings` and `dconf-editor` work both on the `dconf` database, why don't they show the same information? `gsetting` on 12.04 shows values for the schema `com.canonical.Unity.Launcher` and the key `favorites` but `dconf-editor` does not even offer `com.canonical.Unity` let alone the full schema or the key.", "userDisplayName": null, "userId": "92033" }, { "creationDate": "2013-01-15T10:42:22.500", "id": "301401", "postId": "191013", "score": "0", "text": "@A.H: good question. I've asked it here: http://askubuntu.com/q/243409/2355", "userDisplayName": null, "userId": "2355" }, { "creationDate": "2013-01-15T10:44:22.563", "id": "301403", "postId": "191013", "score": "0", "text": "@A.H. I'm sorry that I forgot to answer your comment: I can't comment on Unity because I'm on Xubuntu, but Flimm has asked a separate question which should get some good answers.", "userDisplayName": "user76204", "userId": null }, { "creationDate": "2014-04-15T06:56:38.657", "id": "587928", "postId": "191013", "score": "4", "text": "But what on earth makes dconf incompatible with Qt, a GUI toolkit?", "userDisplayName": null, "userId": "7442" }, { "creationDate": "2017-06-04T19:33:02.010", "id": "1456594", "postId": "191013", "score": "0", "text": "On RHEL / CentOS use `yum install dconf-editor` to install the GUI tool.", "userDisplayName": null, "userId": "467195" }, { "creationDate": "2021-02-09T07:58:09.663", "id": "2238408", "postId": "191013", "score": "0", "text": "On Ubuntu 20.04.2, install dconf by `sudo apt-get install dconf-editor`", "userDisplayName": null, "userId": "934644" }, { "creationDate": "2023-07-18T22:46:23.357", "id": "2589341", "postId": "191013", "score": "0", "text": "I don't know why this answer is accepted; it's more or less just a user guide advertising a GUI interface as ease of use. What is dconf? Is it a just a GUI app as this explanation focuses on? Isn't it a service? It runs on startup then? How do apps interact with it? Can dconf based apps run without the service? How does it work? All the GUI usage advice could be dropped and a shorter text could surely provide many more answers. I still don't really know what dconf is or how it works. I just know how to use the GUI settings. But I knew that already.", "userDisplayName": null, "userId": "874886" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2012-09-20T16:31:04.460", "id": "191013", "lastActivityDate": "2019-07-24T15:40:57.417", "lastEditDate": "2019-07-24T15:40:57.417", "lastEditorDisplayName": "user76204", "lastEditorUserId": "349837", "ownerDisplayName": "user76204", "ownerUserId": null, "parentId": "22313", "postTypeId": "2", "score": "112" }
[ { "accepted": null, "body": "<p>dconf is not Ubuntu specific, it's the GNOME technology used to store application settings.\nFor more details please read\n<a href=\"http://live.gnome.org/dconf\">http://live.gnome.org/dconf</a></p>\n", "commentCount": "3", "comments": [ { "creationDate"...
null
null
null
user2405
user2405
22314
1
22333
2011-01-19T18:34:32.717
7
2335
<p>I am using Ubuntu 10.10 and having trouble setting a custom icon for an application launcher that I created. I have created and SVG file and placed it in <code>/usr/shared/icons/hicolor/scalable/apps/</code> and when I try to select it as the icon for the application launcher, it just goes back to the gnome-panel-launcher.svg default.</p> <p>If I put the SVG file on my desktop and then select it, all is well. I'm assuming this is some type of permission problem, but I cannot seem to figure it out. I have set the permissions to be identical to the other icons in <code>/usr/shared/icons/hicolor/scalable/apps/</code>, but have no luck doing that either.</p>
9219
null
null
2017-12-05T10:21:04.400
Unable to set custom icon on application launcher
[ "icons", "launcher" ]
2
7
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T18:46:03.830", "id": "24080", "postId": "22314", "score": "0", "text": "Did you verify that YOUR user has read/write permissions to the scalable/apps folder? i mean same user, group, chmod permissions, chown permission. just to be 100% sure.", "userDisplayName":...
{ "accepted": true, "body": "<p>I think you also need to Provide PNG versions in 16x16,24x24,36x36,48x48 ect. folders. Not just scalable! Maybe you can try the ubuntu-mono-light and ubuntu-mono-dark folders :)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-19T20:52:42.500", "id": "24104", "postId": "22333", "score": "1", "text": "That seems to have worked. I didn't verify that you must also provide the PNG versions, but by placing it in a different folder, I was able to set the custom icon. Thanks for your help!", "userDisplayName": null, "userId": "9219" }, { "creationDate": "2011-01-19T20:54:44.183", "id": "24105", "postId": "22333", "score": "0", "text": "No Problem I like to help :)", "userDisplayName": null, "userId": "456" }, { "creationDate": "2016-08-02T16:04:59.693", "id": "1218070", "postId": "22333", "score": "0", "text": "FYI I also had to grant full read permissions in order to get this to work (gou+r)", "userDisplayName": null, "userId": "448063" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T20:41:34.750", "id": "22333", "lastActivityDate": "2011-01-19T20:41:34.750", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "456", "parentId": "22314", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>I think you also need to Provide PNG versions in 16x16,24x24,36x36,48x48 ect. folders. Not just scalable! Maybe you can try the ubuntu-mono-light and ubuntu-mono-dark folders :)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-01-19T20:...
null
0
null
null
null
22316
1
22319
2011-01-19T18:37:45.397
15
11245
<p>Mark Shuttleworth <a href="http://www.markshuttleworth.com/archives/568">recently blogged</a> about the decision to include the Qt libraries in the 11.10 release, with a <a href="http://www.jonobacon.org/2011/01/18/some-further-notes-on-qt-in-ubuntu/">followup from Jono Bacon</a>. The thing that puts me off Qt apps is that they don't blend in very well with Ubuntu's Gtk-based theme. I recently read an <a href="http://arstechnica.com/open-source/news/2010/10/canonical-cto-contemplates-qt-we-think-it-has-a-lot-to-offer-ubuntu.ars">Ars Technica article</a> that mentioned that, with a bit of effort, Qt apps could be make to resemble Gtk apps.</p> <p>Is there any documentation that will help me do this, and if not, does anyone at least have any idea how one would go about doing this?</p>
null
9781
2011-10-10T13:00:28.403
2016-05-21T10:26:00.873
How can I theme my Qt app to resemble one written in Gtk?
[ "development", "gtk", "qt", "application-development" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<blockquote>\n <p><em>Note: this is useful to desktop users, not to developers using Qt.</em></p>\n</blockquote>\n\n<p><code>sudo apt-get install qt4-qtconfig</code>, then go to <em>System / Preferences / Qt 4 settings</em> and select GTK style in the first combobox:</p>\n\n<p><img src=\"https://i.stack.imgur.com/C4IOX.png\" alt=\"Qt Configuration dialog\"></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-05-16T07:08:32.667", "id": "47207", "postId": "22319", "score": "2", "text": "this is already default since lucid .", "userDisplayName": null, "userId": "5149" }, { "creationDate": "2011-11-13T22:54:53.427", "id": "89054", "postId": "22319", "score": "1", "text": "Is there a way to do this that works with GTK3?", "userDisplayName": null, "userId": "15726" }, { "creationDate": "2012-07-22T11:25:44.707", "id": "204661", "postId": "22319", "score": "1", "text": "This is great except it does nothing to change the icons that the qt apps use. For example, dolphin uses some really ugly icons running on ubuntu unity", "userDisplayName": null, "userId": "13177" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-19T18:57:40.100", "id": "22319", "lastActivityDate": "2013-05-20T08:52:28.580", "lastEditDate": "2013-05-20T08:52:28.580", "lastEditorDisplayName": null, "lastEditorUserId": "9061", "ownerDisplayName": null, "ownerUserId": "9061", "parentId": "22316", "postTypeId": "2", "score": "16" }
[ { "accepted": null, "body": "<p>From nagul's SU post <a href=\"https://superuser.com/questions/37444/how-can-i-make-kde-and-other-non-gnome-apps-inherit-the-ubuntu-theme\">https://superuser.com/questions/37444/how-can-i-make-kde-and-other-non-gnome-apps-inherit-the-ubuntu-theme</a> - direct quote: </p>\n\n...
null
null
null
null
user2405
22322
1
null
2011-01-19T19:48:02.830
4
426
<p>Or, alternatively:</p> <p>What is the closest I can get to this?</p> <p><a href="http://xkcd.com/416/" rel="nofollow noreferrer" title="I hear this is an option in the latest Ubuntu release."><img src="https://i.stack.imgur.com/KFnbd.png" alt="xkcd: Zealous Autoconfig"></a></p> <p>If my laptop ever gets stolen, I want it to do everything in its power to phone home. <a href="http://preyproject.com/" rel="nofollow noreferrer">Prey</a> only kicks in <em>after</em> an internet connection has been established, and I don't trust a thief to figure out how to connect to wireless networks in a foreign operating system.</p>
1859
null
null
2011-01-20T01:50:46.210
How can I make my laptop's password-less guest account automatically attempt to connect to any and all open wireless networks?
[ "wireless", "automation" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T10:00:41.487", "id": "24173", "postId": "22322", "score": "0", "text": "LMAO nice comic :P", "userDisplayName": null, "userId": "4777" }, { "creationDate": "2015-12-16T08:44:58.900", "id": "1044634", "postId": "22322", "score": "0", "...
null
[ { "accepted": null, "body": "<p>First thing probably would be to make sure that wifi was enabled and up at boot then drop a bash script into the start-up programs that will search for and attempt to connect to avaliable networks. I haven't been able to find one that does that \"specifically\" but I found th...
null
null
null
null
null
22324
1
25140
2011-01-19T20:02:20.307
0
314
<p>While trying to install a dual boot from LiveCD, WUBI seems to go through all the steps correctly. It unpacks everything, reboots, starts to finalize the install, brings up the install slide show and seems to do everything necessary. The slide show disappears and what is left is what would normally be the background, however there is no login, no panels, no response to any input or keystrokes. Using 10.04 I had a mouse cursor (working) with 10.10, not even that. In 10.04 The only way to reboot is to shutdown using the power switch. When it reboots it goes through the "finalizing install" phase again. In 10.10 if I hit the power switch it brings up a shutdown menu that doesn't respond to the keyboard, but does shutdown when the 60 seconds expire.</p>
49
null
null
2011-02-07T13:46:14.547
WUBI install not completing on Dell Latitude D600 using 10.04 and 10.10
[ "10.10", "10.04", "installation", "wubi" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I believe this was all related to what turned out to be a bad hard disk that showed up in another problem <a href=\"https://askubuntu.com/questions/23233/gparted-cant-create-ext3-or-ext4-partitions\">Gparted can&#39;t create ext3 or ext4 partitions</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-07T13:46:14.547", "id": "25140", "lastActivityDate": "2011-02-07T13:46:14.547", "lastEditDate": "2017-04-13T12:23:27.200", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "49", "parentId": "22324", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I believe this was all related to what turned out to be a bad hard disk that showed up in another problem <a href=\"https://askubuntu.com/questions/23233/gparted-cant-create-ext3-or-ext4-partitions\">Gparted can&#39;t create ext3 or ext4 partitions</a></p>\n", "commentCou...
null
null
null
null
null
22327
1
null
2011-01-19T20:23:37.570
2
956
<p>I have a Toshiba L650, installed (dual boot) Ubuntu 10.10. Touchpad worked fine until I tried for the first time to suspend (I closed the screen on the keyboard).</p> <p>The system never woke up again. Reset (battery disconnected and then reconnected), restart of the system, disk checks, and so on.</p> <p>After that, everything works fine except the Touchpad, completely dead. Rebooted again. The problem persists.</p> <p>Any hints?</p>
null
235
2011-12-21T03:50:10.833
2011-12-21T03:50:10.833
Touchpad stopped working after suspend on a Toshiba L650
[ "10.10", "mouse" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>A user in another forum suggested to </p>\n\n<ol>\n<li><p>run <code>gconf-editor</code></p></li>\n<li><p>locate the key <code>/desktop/gnome/peripherals/touchpad/touchpad_enabled</code></p></li>\n<li><p>and enable it.</p></li>\n</ol>\n\n<p>I would be interested to know whethe...
null
null
null
null
Luca
22336
1
32299
2011-01-19T21:00:31.147
6
11276
<p>I installed XVidcap from synaptic. There is an option in preferences to turn on audio recording but there is no audio in final output. I followed instructions on <a href="http://ubuntuforums.org/showthread.php?t=1156709">Ubuntu Forums</a> and downgraded the package to an older version but still can't get it working.</p>
8592
527764
2017-08-19T05:55:28.440
2017-08-19T06:34:47.210
How to record internal audio with XVidCap? (not with microphone)
[ "sound", "video-recording" ]
7
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I found the solution <a href=\"http://ubuntu-cosillas.blogspot.com/2010/11/xvidcap-grabaciones-de-escritorio-una.html\" rel=\"nofollow noreferrer\">in this blog post</a>:</p>\n\n<blockquote>\n <ol>\n <li>Uninstall xvidcap in Synaptic</li>\n <li>Install xvidcap from <a href=\"http://sourceforge.net/projects/xvidcap/files/xvidcap/1.1.7/xvidcap_1.1.7jaunty_i386.deb/download\" rel=\"nofollow noreferrer\">here on Sourceforge</a>\n [editor's note - this is a very old version (deb is for Jaunty) - not recommended. I doubt\n this solution is still valid]</li>\n <li>Lock the installed version in Synaptic</li>\n <li>Install <code>pavucontrol</code> in Synaptic</li>\n <li>Open the program with <code>padsp xvidcap</code></li>\n <li>Click on the recording button (red circle)</li>\n <li>Run <code>pavucontrol</code>, go to the <strong>Recording</strong> tab and there choose Monitor of Analog Stereo Internal Audio</li>\n </ol>\n \n <p>Done!!</p>\n \n <p>To record with sound, the program has always to be run with <code>padsp\n xvidcap</code> (for example from ALT+F2). To run it always like that from\n the menu: run alacarte, go to <strong>Sound and video</strong>, then to <strong>XVidCap\n Screen Capture > Properties</strong> and where it says Command put <code>padsp\n xvidcap</code>.</p>\n</blockquote>\n\n<p>I would add this:</p>\n\n<p>The above is to record system sound, that is, whatever is coming out of the speakers, which can be of a song or movie of our hard drive or pendrive played by Totem, of a Flash music video of a website played by Firefox.</p>\n\n<p>Nevertheless, sometimes it can be necessary to record the microphone sound, for example if we want to make a video tutorial to explain how a program works. In this case we put xvidcap in recording state, run pavucontrol and in the Recording tab we put Analog Stereo Internal Audio (without \"Monitor of\").</p>\n\n<p>If we only want to record sound (without video) we can run from ALT+F2 gnome-sound-recorder. The first time probably it will be configured to record from the microphone. To record the system sound we run with ALT+F2 gnome-volume-control, go to the Hardware tab and in Profile we put Analog Stereo Output (it's also possible to do this running pavucontrol and using the Configuration tab).</p>\n\n<p>But when we finish we have to put again Analog Stereo Duplex in the Profile of Hardware of gnome-volume-control (or of Configuration of pavucontrol), so we can still choose the origin of the sound when recording with xvidcap.</p>\n\n<p>NB: sometimes, to change from Analog Stereo Duplex to Analog Stereo Output it may be necessary to change first to Off, close, open again and then change finally to Analog Stereo Output. The same for the opposite change. If not, the computer may \"not notice\" that we have applied the change.</p>\n\n<p>Taken from <a href=\"http://ubuntuforums.org/showpost.php?p=10607591\" rel=\"nofollow noreferrer\">this post on Ubuntu Forums</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-03-27T21:28:46.573", "id": "32299", "lastActivityDate": "2017-08-19T06:34:47.210", "lastEditDate": "2017-08-19T06:34:47.210", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": "user13095", "ownerUserId": null, "parentId": "22336", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>You need pavucontrol - from here, you can set Xvidcap to record from your internal audio.\n<img src=\"https://i.stack.imgur.com/kJGxg.png\" alt=\"alt text\"></p>\n\n<p>To get XVidCap to be detected, you have to:</p>\n\n<ul>\n<li>first record a dummy video (I know, an annoying...
null
null
null
null
null
22337
1
null
2011-01-19T21:17:37.520
12
877
<p>Will Ubuntu 11.04 contain new, redesigned Nautilus 3 from GNOME 3 ?</p>
9228
235
2011-06-05T20:35:58.273
2011-06-05T20:35:58.273
Will 11.04 ship with Nautilus 3?
[ "11.04", "nautilus" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Not likely, according to this <a href=\"https://lists.ubuntu.com/archives/ubuntu-desktop/2011-January/002740.html\" rel=\"nofollow\">status report</a>, GNOME 2.32 will be shipped in 11.04.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, ...
null
null
null
null
null
22338
1
22351
2011-01-19T21:23:27.837
3
7038
<p>When you want to set a server to accept "Remote Desktop" connections, you do: System \ Preferences \ Remote Desktop</p> <p>The thing is I just have a ssh connection to the server for now. How do you set it using only the command line ?</p>
7846
null
null
2011-01-20T01:23:29.880
Set "Remote desktop" host server remotely
[ "configuration", "remote-desktop" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T18:11:43.777", "id": "24262", "postId": "22338", "score": "0", "text": "Actually I found out that when the host restart, vino-server is not restarted by default, eventhough the settings at System \\ Preferences \\ Remote Desktop are correct. If you unset and reset, ...
{ "accepted": true, "body": "<p>This will work with a normal installation: </p>\n\n<p>ssh to your remote machine, with X forwarding turned on</p>\n\n<pre><code>ssh -X servername \n</code></pre>\n\n<p>Then run <code>vino-preferences</code> </p>\n\n<p>Alternatively, set the gconf keys from the command line with gconftool :</p>\n\n<pre><code>gconftool-2 --set --type=bool /desktop/gnome/remote_access/enabled true\n</code></pre>\n\n<p>You can see the other remote_access keys with this command :</p>\n\n<pre><code>gconftool-2 -a /desktop/gnome/remote_access\n</code></pre>\n\n<p>If your server isn't started remotely, start it with</p>\n\n<pre><code>/usr/lib/vino/vino-server\n</code></pre>\n\n<p>There's more info in <a href=\"https://askubuntu.com/questions/4474/enable-remote-vnc-from-the-commandline/22354#22354\">this answer</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-19T22:50:44.517", "id": "22351", "lastActivityDate": "2011-01-20T01:23:29.880", "lastEditDate": "2017-04-13T12:23:44.677", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "22338", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Am assuming then that you have the openssh server installed in the server. So from a client do this:</p>\n\n<p>ssh USER@SERVER. For example: <code>ssh cyrex@askubuntu.com</code> This is the <strong>simple</strong> way of ssh to connect.</p>\n\n<p>The user HAS to have ssh perm...
null
0
null
null
null
22342
1
22368
2011-01-19T22:01:43.153
2
225
<p>Looking for some good uses for your own custom live CD/distro, including custom branded distributions for Cafes etc.</p> <p>You can include instructions etc in your answer, as well as links to good examples. However, please limit ONE example per answer - though feel free to answer multiple times!</p>
1992
1992
2011-01-19T22:26:35.020
2011-01-20T04:47:09.347
What are some good uses for custom live CDs
[ "live-cd", "custom-distributions" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Another cool idea is to create a distro (obviously based on Ubuntu) where you can use it for a kiosk PC.\nFor example, you need to set-up a PC where people will be able to search books on a library only typing the name of the book on a touchpad screen.\nThe main thing is create this distro with:</p>\n\n<ul>\n<li>A minimal install</li>\n<li>A browser (like firefox)</li>\n<li>A browser's addon to create this kiosk mode ( like <a href=\"https://addons.mozilla.org/es-ES/firefox/addon/r-kiosk/\" rel=\"nofollow\">this</a> addons for firefox)</li>\n<li>Apache and (if is necessary) a DBMS</li>\n</ul>\n\n<p>Its really easy to set-up and you can use in several cases\nFor example</p>\n\n<ul>\n<li>In a Restaurant (where persons can see their reservations)</li>\n<li>In a cofee shop (You can order your coffee directly in the system)</li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2011-01-20T04:47:09.347", "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T04:47:09.347", "id": "22368", "lastActivityDate": "2011-01-20T04:47:09.347", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6586", "parentId": "22342", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>One good idea is a stripped down recovery CD, containing the tools you need to check drives, perform backups, and chroot into the system to perform fixes.</p>\n\n<p>Method:</p>\n\n<ul>\n<li>Install Ubuntu Minimal (in a virtual machine)</li>\n<li>Add the <a href=\"http://remas...
2011-01-19T22:04:38.753
null
2018-08-23T09:23:05.530
null
null
22350
1
22389
2011-01-19T22:45:27.873
2
195
<p>My laptop's video card is malfunctioning. I have Ubuntu 10.10 Desktop. After typical boot up, it restarts, but it's working fine in recovery mode.</p> <p>There is my other solved question here: <a href="https://askubuntu.com/questions/22013/how-to-enable-ssh-server-in-recovery-mode/22017#22017">How to enable SSH server in recovery mode?</a></p> <p>I don't want my Ubuntu run in recovery mode. I want everything start normally, just without video card. I'm expecting it to run like a remote server.</p>
9036
-1
2017-04-13T12:23:28.223
2011-01-20T09:32:54.363
How to save Ubuntu from restarting on a laptop with malfunctioning video card?
[ "kubuntu", "intel-graphics" ]
1
9
CC BY-SA 2.5
[ { "creationDate": "2011-01-19T23:16:38.750", "id": "24128", "postId": "22350", "score": "0", "text": "I've copied my kernel log. I've tried few times to boot up Ubuntu normally, but it restarted. Probably because of graphics card. What should I look for in this log?", "userDisplayName": null...
{ "accepted": true, "body": "<p>Start the computer in recovery mode, when you get to the selection screen you need to select <code>root with networking</code>.</p>\n\n<p>Once on the command line you can install and run the openssh-server:</p>\n\n<pre><code>apt-get install openssh-server\nservice ssh start\n</code></pre>\n\n<p>Although this won't help you with your graphics problem, it will let you get access to the machine.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-20T13:51:07.097", "id": "24201", "postId": "22389", "score": "0", "text": "This was described already by Stefano here: http://askubuntu.com/questions/22013/how-to-enable-ssh-server-in-recovery-mode/22017#2201\n\nSorry if my questions was unclear.", "userDisplayName": null, "userId": "9036" }, { "creationDate": "2011-01-20T14:43:37.967", "id": "24214", "postId": "22389", "score": "0", "text": "Please delete your duplicate question.", "userDisplayName": null, "userId": "132" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T09:32:54.363", "id": "22389", "lastActivityDate": "2011-01-20T09:32:54.363", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "22350", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Start the computer in recovery mode, when you get to the selection screen you need to select <code>root with networking</code>.</p>\n\n<p>Once on the command line you can install and run the openssh-server:</p>\n\n<pre><code>apt-get install openssh-server\nservice ssh start\n...
null
null
null
null
null
22360
1
22378
2011-01-20T02:34:01.950
10
1310
<p>I want the resolution of my console to match my screen resolution(1440x900). 1024x768 works fine but for some reason when I put 1440x900 when I switch to ttyX the command prompt is almost right off the bottom of the screen! The Ubuntu splash screen goes off the edge of the screen during boot as well.</p> <p>Here is my /etc/default/grub </p> <pre><code> 4 GRUB_DEFAULT=0 5 GRUB_HIDDEN_TIMEOUT=0 6 GRUB_HIDDEN_TIMEOUT_QUIET=true 7 GRUB_TIMEOUT=10 8 GRUB_DISTRIBUTOR=`lsb_release -i -s 2&gt; /dev/null || echo Debian` 9 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 10 GRUB_CMDLINE_LINUX="" 11 GRUB_GFXMODE=1440x900 12 GRUB_GFXPAYLOAD_LINUX=keep </code></pre> <p>How do I get my CLI resolution to be 1440x900?</p>
3960
1067
2011-01-23T11:02:35.077
2013-02-06T15:03:57.200
High resolution CLI?
[ "10.10", "command-line", "grub2" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T14:50:10.290", "id": "28480", "postId": "22360", "score": "2", "text": "What video card are you using? With what driver?", "userDisplayName": null, "userId": "8973" }, { "creationDate": "2011-01-20T03:55:17.707", "id": "36546", "postId": "223...
{ "accepted": true, "body": "<p>For what it's worth, this is something Kernel Mode Setting does for us automatically. KMS is a feature available for most of the open source graphics drivers. Basically, it means the system figures out the screen resolution as early as possible and sticks with it.</p>\n\n<p>If you are willing to give up fancy 3D support and your graphics hardware has an open source driver available, you can try switching to that.\n<br/>That's “nouveau,” as opposed to “nvidia,” for NVidia hardware.\n<br/>“ati/radeon,” as opposed to “fglrx” for ATI hardware.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-06T17:22:15.530", "id": "27363", "postId": "22378", "score": "0", "text": "I'm thinking this is the answer in your particular case. However, on natty with nvidia binary drivers - at least in my case - 1440x900 switching to a console works out of the box. The text is fairly large, but it is still usable. Wanting tiny text would mean I would have to go with open source drivers. I KNOW it works with simple VESA drivers in knoppix for example.", "userDisplayName": null, "userId": "5768" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T07:39:50.820", "id": "22378", "lastActivityDate": "2011-01-20T07:39:50.820", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2992", "parentId": "22360", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>For what it's worth, this is something Kernel Mode Setting does for us automatically. KMS is a feature available for most of the open source graphics drivers. Basically, it means the system figures out the screen resolution as early as possible and sticks with it.</p>\n\n<p>I...
null
null
null
null
null
22361
1
22544
2011-01-20T03:00:43.423
14
7178
<p>According to <a href="https://askubuntu.com/questions/14535/whats-the-local-folder-for-in-my-home-directory/14536#14536">this answer</a>, <code>.local .cache</code> and <code>.config</code> are, by convention, configuration storage locations adopted by Gnome and Ubuntu. </p> <p>Are <code>.gnome .gnome2</code> and <code>.gconf</code> therefore legacy configuration directories, or are they supposed to co-exist?<br> And does the adoption of dconf alter these dot-file application config conventions?</p> <p>Finally, what is the relation of the gconf-editor data settings to these directories? Do .gnome/.gconf contain the same info that gconf-editor accesses? </p> <p>Updates: XDG has been pointed to as the reason for .cache, .local, and .config. </p> <p>This <a href="https://askubuntu.com/questions/22313/what-is-dconf-and-what-is-its-function">question on dconf</a> advises that dconf will be the replacement for gconf, as documented on <a href="http://live.gnome.org/dconf" rel="nofollow noreferrer">Gnome.org</a> . Furthermore, <a href="https://askubuntu.com/users/742/joao-pinto">João</a> says that dconf is the</p> <blockquote> <p>GNOME technology used to store application settings. [...] dconf is the GNOME3 replacement for gconf which has not been maintained for some time. dconf is also expected to bring performance improvements over gconf (relevant for applications startup).</p> </blockquote> <p>I expect, based on that that there will be a somewhat anarchic migration path from gconf settings to dconf. I would love to hear any additional perspectives.</p>
8844
-1
2017-04-13T12:23:59.520
2012-02-17T16:10:56.667
What is the relationship between .gconf, .gnome2, .cache, .local, and other dot-file hierarchies in my home directory?
[ "gnome", "files", "gconf", "configuration-management", "dconf" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><code>.local</code>, <code>.cache</code>, and <code>.config</code> are part of the FreeDesktop <a href=\"http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html\">Base Directory Specification</a>. They should not actually be hard-coded but instead use the environment variables (i.e. <code>$XDG_DATA_HOME</code>, <code>$XDG_CACHE_HOME</code>, and <code>$XDG_CONFIG_HOME</code>). There are <a href=\"http://developer.gnome.org/glib/2.30/glib-Miscellaneous-Utility-Functions.html#g-get-user-config-dir\">GLib</a> and <a href=\"http://freedesktop.org/wiki/Software/pyxdg\">Python</a> wrappers for the spec that may be helpful as well. Here's an example in Python:</p>\n\n<pre class=\"lang-python prettyprint-override\"><code>&gt;&gt;&gt; import xdg.BaseDirectory\n&gt;&gt;&gt; print xdg.BaseDirectory.xdg_data_home\n/home/andrew/.local/share\n&gt;&gt;&gt; print xdg.BaseDirectory.xdg_config_home\n/home/andrew/.config\n&gt;&gt;&gt; print xdg.BaseDirectory.xdg_cache_home\n/home/andrew/.cache\n</code></pre>\n\n<p><code>.gnome</code> and <code>.gnome2</code> are indeed deprecated and should not be used. These were used by libgnome's <a href=\"http://library.gnome.org/devel/libgnome/stable/libgnome-gnome-config.html\">gnome-config module</a>.</p>\n\n<p><code>.gconf</code> does indeed contain the settings that <code>gconf-editor</code> accesses as xml files. For instance, compare the output of the following commands:</p>\n\n<pre><code>gconftool -a /desktop/gnome/applications/browser\n\ncat ~/.gconf/desktop/gnome/applications/browser/%gconf.xml\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-02-17T08:34:03.200", "id": "121500", "postId": "22544", "score": "0", "text": "I came across your answer when trying to find how to find the configuration directory from a gtk application. For other programmers who come after me there is a gtk(glib) wrapper which uses XDG on Linux and also handles MS Windows. Specific information here: http://developer.gnome.org/glib/2.30/glib-Miscellaneous-Utility-Functions.html#g-get-user-config-dir", "userDisplayName": null, "userId": "33121" }, { "creationDate": "2012-02-17T16:04:09.017", "id": "121642", "postId": "22544", "score": "0", "text": "Right you are. I was mostly just being descriptive in this answer, not providing hands on examples for a programmer. I'll update the answer to add a little more info for those who stumble across this.", "userDisplayName": null, "userId": "570" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-21T04:31:28.110", "id": "22544", "lastActivityDate": "2012-02-17T16:10:56.667", "lastEditDate": "2012-02-17T16:10:56.667", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "22361", "postTypeId": "2", "score": "16" }
[ { "accepted": null, "body": "<p>The proper phrasing should be that .local, .cache, etc are part of the XDG Base Directory Specification of FreeDesktop, <a href=\"http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html\">http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html</a...
null
null
null
null
null
22362
1
null
2011-01-20T03:35:33.350
3
518
<p>This is quite similar to several other posts. System was running 10.04 without problems for several months.</p> <p>Recently upgraded to 10.10 and have not been able to resume from closing lid on laptop since. Have to reboot from forced power down. No other posts I have seen have suggested an approach to solving the problem.</p>
null
235
2011-01-20T15:03:48.880
2012-02-18T20:38:36.473
Resume fails on Dell E6510
[ "10.10", "resume" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-28T18:12:18.813", "id": "25724", "postId": "22362", "score": "0", "text": "I am suffering of the same problem here, this is very annoying.", "userDisplayName": null, "userId": "9782" } ]
null
[ { "accepted": null, "body": "<p>Try update system maybe new update will help. Maybe you havent updated system for long time. Also googling problem may help find slow fix. \nI googled and found this is bug thats now beeing in fixing process so maybe even after month it will be fixed. U can help fixing by cod...
null
null
null
null
Bob Pearson
22369
1
null
2011-01-20T05:09:10.207
1
427
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/22337/nautilus-3-in-natty">Nautilus 3 in Natty</a> </p> </blockquote> <p>I want to know if Nautilus will change or be replaced in Natty Narwhal? If so to what?</p>
9243
-1
2017-04-13T12:23:59.520
2011-02-19T22:27:00.660
Will nautilus be replaced as the default file manager in 11.04?
[ "nautilus", "11.04" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T08:28:15.883", "id": "24155", "postId": "22369", "score": "1", "text": "Can you explain what you mean by constant?", "userDisplayName": null, "userId": "866" } ]
null
[ { "accepted": null, "body": "<p>Yes, Ubuntu 11.04 contains nautilus and it's the same as Ubuntu 10.10 release. The move to Unity has not effected the release or use of nautilus to show files and folders.</p>\n\n<p>Yet.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, ...
null
null
2011-06-05T20:35:22.557
null
null
22372
1
22428
2011-01-20T05:24:25.697
3
1519
<p>This question consists of two parts:</p> <p>How to find out what is the writing mode of ext4? </p> <p>How to configure an existing ext4 (a journaling file system) to do writes to a file in place such that shredding/wiping can be effective.</p>
8620
1067
2011-01-20T19:38:22.903
2014-04-17T12:02:35.663
How to make ext4 update files in place during writes
[ "filesystem", "security", "ext4" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Ext[234] always does update in place. You don't have to do anything.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-01-20T19:41:02.760", "id": "24295", "postId": "22428", "score": "0", "text": "You may have misunderstood the question (or maybe it was me). Note: \"such that shredding/wiping can be effective\", the question is about how to make the file system overwrite, delete and update files instead of just changing the inodes and metadata.", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2011-01-20T21:46:40.390", "id": "24312", "postId": "22428", "score": "0", "text": "Yes, and my answer is that is the normal way things work. If you open a file and overwrite its contents, then it is overwritten in place.", "userDisplayName": null, "userId": "8500" }, { "creationDate": "2011-01-21T05:07:33.200", "id": "24360", "postId": "22428", "score": "0", "text": "Correct, that's the ext4 default: data=ordered (*) All data are forced directly out to the main file\nsystem prior to its metadata being committed to the\njournal.", "userDisplayName": null, "userId": "8620" }, { "creationDate": "2011-01-21T05:12:11.257", "id": "24361", "postId": "22428", "score": "0", "text": "However, I'm still not entirely sure what happens during multiple shredding passes: does the file system commit just the last version similar to the way dirty pages are saved?", "userDisplayName": null, "userId": "8620" }, { "creationDate": "2011-01-21T21:12:32.713", "id": "24485", "postId": "22428", "score": "1", "text": "shred forces the data out between passes.", "userDisplayName": null, "userId": "8500" }, { "creationDate": "2019-07-07T17:26:22.867", "id": "1924430", "postId": "22428", "score": "0", "text": "At the moment `ext4` doesn't do update in place when `data=ordered` or `data=journal`. But only with `data=writeback`.", "userDisplayName": null, "userId": "782461" }, { "creationDate": "2019-08-01T15:54:14.807", "id": "1937528", "postId": "22428", "score": "0", "text": "I don't think this answer is canonically correct. Please look at https://opensource.com/article/17/5/introduction-ext4-filesystem\nand comment.", "userDisplayName": null, "userId": "1723" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T15:30:08.690", "id": "22428", "lastActivityDate": "2011-01-20T15:30:08.690", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8500", "parentId": "22372", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Ext[234] always does update in place. You don't have to do anything.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-01-20T19:41:02.760", "id": "24295", "postId": "22428", "score": "0", "text": "You may...
null
null
null
null
null
22373
1
22375
2011-01-20T05:55:16.953
2
770
<p>I want to redirect the audio coming from Skype (and only Skype, not other programs running at the same time) over the network. Is there any way to do that?</p>
9246
9246
2011-01-20T06:06:34.727
2011-01-20T07:27:18.510
Redirect Skype sound output over the network
[ "sound", "skype", "networking" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This can be done quite easily with pulseaudio the default sound server in ubuntu, first make sure that both machines have these packages installed as well as pulseaudio itself of ourse (if the other machine isn't ubuntu it might need installing). These will make the configuation easier.</p>\n\n<p><code>sudo apt-get instapp padevchooser pavucontrol pulseaudio</code></p>\n\n<p>Next run padevchooser from a terminal or Applications > Sound &amp; Video > PulseAudio Device Chooser</p>\n\n<p>This will load a small application to your system tray area near your clock which enables you to quickly configure and control pulseaudio. The first thing you need to do is configure the machine you was to recieve sound to advertise it's devices over the network then the sending device needs to be configured to add discoaverabe devices to the local sound server.</p>\n\n<p>With that done and the remote devices showing up on the sending machine first use the device chooser icon to open the volume control from the menu. Next start skype and have it begin playing audio, starting the Skype Test Call will work for this when it does you will see skype appear in the list on the playback tab. Next to it above the meter bars on the right will be a drop down box showing the device selected for the audio to be played here you can select the remote vevice you would like the sound to be sent to.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-20T07:52:41.810", "id": "24152", "postId": "22375", "score": "0", "text": "`padevcooser` is deprecated. Use `paprefs` instead to set up pulseaudio network features", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-01-21T01:02:31.380", "id": "24344", "postId": "22375", "score": "0", "text": "That would work too, I like the way `padevchooser` puts it all at ones fingertips not only one part. However noted and as it is depreciated will avoid recommending it in future opting for the individual tools instead where possible. Thank you.", "userDisplayName": null, "userId": "9202" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T07:27:18.510", "id": "22375", "lastActivityDate": "2011-01-20T07:27:18.510", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9202", "parentId": "22373", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>This can be done quite easily with pulseaudio the default sound server in ubuntu, first make sure that both machines have these packages installed as well as pulseaudio itself of ourse (if the other machine isn't ubuntu it might need installing). These will make the configua...
null
null
null
null
null
22374
1
null
2011-01-20T06:37:32.930
1
5418
<p>Could you please tell me how to configure xvfb in ubuntu?</p>
6284
25863
2012-03-16T14:47:05.257
2016-05-16T19:37:12.537
How to configure xvfb?
[ "xorg" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I usually avoid configuring xvfb and just use the <code>xvfb-run</code>tool to launch applications into xvfb.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-23T09:28:29.44...
null
null
null
null
null
22376
1
22377
2011-01-20T07:28:45.063
5
1480
<p>I'm on Maverick trying to access shared folders hosted on Windows machines across a home network. Mysteriously I stopped being able to see them through Nautilus (I couldn't even open Windows network and see my own machine), nor using "smbclient -L //HOSTNAME" from the command line. The error code I got was NT_STATUS_UNSUCCESSFUL.</p>
7146
7146
2011-01-24T13:26:14.780
2011-12-12T10:28:47.267
How can I access Windows shares after changing DNS servers (e.g. switching to OpenDNS)?
[ "networking", "windows", "samba" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I discovered the problem was I had recently started using OpenDNS and Samba resolves local hostnames using DNS. Of course, OpenDNS can't resolve my local network hostnames.</p>\n\n<p>The solution is to edit your Samba configuration so that the hostnames are resolved locally and then restart Samba:</p>\n\n<ol>\n<li><p>Edit <code>/etc/samba/smb.conf</code> (To edit it within the terminal, run <code>sudo nano /etc/samba/smb.conf</code>. To edit it within gedit, aka Text Editor, run <code>gksu gedit /etc/samba/smb.conf</code> from the terminal.)</p></li>\n<li><p>Change the line <blockquote>; name resolve order = lmhosts host wins bcast</blockquote> to <blockquote>name resolve order = lmhosts wins bcast host</blockquote> (note remove semicolon and change order)</p></li>\n<li><p>Restart Samba from the terminal:</p>\n\n<ul>\n<li>Maverick and later: \"sudo restart smbd\"</li>\n<li>Lucid and before: \"/etc/init.d/samba restart\"</li>\n</ul></li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-20T07:52:44.933", "id": "24153", "postId": "22377", "score": "0", "text": "Use /etc/init.d/sambar restart in older versions.", "userDisplayName": null, "userId": "211" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-20T07:36:01.547", "id": "22377", "lastActivityDate": "2011-12-12T10:28:47.267", "lastEditDate": "2011-12-12T10:28:47.267", "lastEditorDisplayName": null, "lastEditorUserId": "7146", "ownerDisplayName": null, "ownerUserId": "7146", "parentId": "22376", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>I discovered the problem was I had recently started using OpenDNS and Samba resolves local hostnames using DNS. Of course, OpenDNS can't resolve my local network hostnames.</p>\n\n<p>The solution is to edit your Samba configuration so that the hostnames are resolved locally a...
null
null
null
null
null
22379
1
null
2011-01-20T07:41:47.563
4
6651
<p>My colleague and me are often using skype to work together, but there is a problem that bothers me very much. When he is sharing his whole screen, I only receive it in a window that takes about a fourth part of my screen (about 50% size). Obviously, all text becomes unreadable.</p> <p>We have the same horizontal resolution, but I have a 4:3 display, and he has a 16:9 display. So it's 1280x1024 against 1280x768, his screen should be able to fit into mine. </p> <p>What's even stranger is that when I use a laptop I have, the screen is shared with me at 100% size. Both my PC and my laptop use Ubuntu 10.10.</p> <p>Can something be done about it?</p> <p>P.S. Maybe it has something to do with <code>compiz</code>?</p>
202
721
2011-03-22T23:14:48.107
2014-03-13T21:30:44.463
Why is the screen shared with me over skype is so small?
[ "10.10", "skype" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Can't you maximize the video-window?</p>\n\n<p>The fact that for some users/on other computers the video-window is maximized by default could be a saved preference from your last session.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011...
null
null
null
null
null
22380
1
22415
2011-01-20T07:55:46.787
10
2062
<p>Nautilus File Search is not working. It is as simple as that. Nothing is ever found.. Nothing happens... (Nautilus 2.30.1, on Lucid 10.04) </p> <p>The same version of Nautilus running in a VM works fine, so I know I'm doing the right thing. </p> <p>One "difference" I've noticed between my problem Nautilus and the VM Nautilus, is that the "Reload" button never appears... (nor does any list of files ever appear)... </p> <p>update:<br> I've tried removing ~/.nautilus (no effect)<br> I've reinstalled nautilus ... (no effect) </p> <p>I'm a bit wary of doing a full reomoval of nautilus (and then a new install), because I don't know how this will effect the desktop integration; specifically... what is going to happen to my nautilus notes, which are tenuously attached to files via a feature of nautilus.. .</p>
2670
1067
2011-08-15T09:31:05.037
2015-04-14T12:12:58.487
Nautilus File Search is not working
[ "10.04", "nautilus", "search" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I've got it working again, by purging Nautilus...<br>\nI first made a backup of my plugins and extensions data ...<br>\nNautilus Notes and other metadata are in '~/.local/share/gvfs-metadata'<br>\n'nautilus-scripts-manager' data is in '~/.gnome2/nautilus-scripts' ... etc. </p>\n\n<ul>\n<li>apt-get remove ...my plugins, in case there was some clash </li>\n<li>apt-get purge nautilus gnome-session ubuntu-desktop </li>\n<li>apt-get install nautilus gnome-session ubuntu-desktop </li>\n</ul>\n\n<p>Then I rebooted, and the search feature is now working.<br>\nNautilus Notes was still working, so I then reinstalled my plugins,<br>\nand everyghing is working fine again.</p>\n\n<p>There may have been no need to uninstall my plugin, but as it turned out, it doesn't matter; eaither way works... (I've been without this feature for 3 months... Today was <strong>the</strong> day !</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-28T10:25:46.300", "id": "25620", "postId": "22415", "score": "0", "text": "I tried but it didN_# work for me. I'll ask another question ...", "userDisplayName": null, "userId": "3275" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T13:43:22.330", "id": "22415", "lastActivityDate": "2011-01-20T13:43:22.330", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2670", "parentId": "22380", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>I've got it working again, by purging Nautilus...<br>\nI first made a backup of my plugins and extensions data ...<br>\nNautilus Notes and other metadata are in '~/.local/share/gvfs-metadata'<br>\n'nautilus-scripts-manager' data is in '~/.gnome2/nautilus-scripts' ... etc. <...
null
0
null
null
null
22381
1
22382
2011-01-20T08:29:07.817
353
1648412
<p>In Windows there is a straightforward "Format" option in a flash drive's right-click pop-up menu. Where's that in Ubuntu?</p>
2390
1103140
2021-05-29T10:04:16.487
2021-05-29T12:04:25.323
How to format a USB flash drive?
[ "usb-drive", "disk-management", "disk-formatting" ]
13
1
CC BY-SA 3.0
[ { "creationDate": "2019-07-25T07:25:30.633", "id": "1933613", "postId": "22381", "score": "0", "text": "Ubuntu 18.04 has a \"Format...\" option, when you right-click on the USB drive in Files.", "userDisplayName": null, "userId": "978690" } ]
{ "accepted": true, "body": "<p>You can use <em>Disks</em>. It's installed by default and easy to use.</p>\n<p><a href=\"https://i.stack.imgur.com/xWmoi.png\" rel=\"noreferrer\"><img src=\"https://i.stack.imgur.com/xWmoi.png\" alt=\"Disks application appears in Dash search\" /></a></p>\n<ul>\n<li>Click on the Dash icon</li>\n<li>Search for &quot;Disks&quot;</li>\n<li>Click on <strong>Disks</strong></li>\n</ul>\n<p>The application will show up:</p>\n<p><a href=\"https://i.stack.imgur.com/1bxzH.png\" rel=\"noreferrer\"><img src=\"https://i.stack.imgur.com/1bxzH.png\" alt=\"choose device in Disks interface left bar\" /></a></p>\n<ul>\n<li>1st: Choose the USB flash drive</li>\n<li>2nd: Click on the &quot;gear&quot; icon and choose &quot;Format&quot;</li>\n</ul>\n<p>This little window will appear, just choose the option you want and click on <strong>Format</strong>:</p>\n<p><a href=\"https://i.stack.imgur.com/y31zp.png\" rel=\"noreferrer\"><img src=\"https://i.stack.imgur.com/y31zp.png\" alt=\"Erase option, filesystem type option, and Name field shown in Format Volume dialog\" /></a></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2014-07-29T17:20:57.680", "id": "678618", "postId": "22382", "score": "0", "text": "BTW you will have to unmount first I believe.", "userDisplayName": null, "userId": "308208" }, { "creationDate": "2016-03-28T01:30:15.980", "id": "1119760", "postId": "22382", "score": "0", "text": "In Ubuntu 14.04, The Disks utility may not select the partition by default--click on the big wide rectangle (it may be called Partition 1), and then the format option will be enabled.", "userDisplayName": null, "userId": "56403" }, { "creationDate": "2018-07-13T06:42:42.587", "id": "1724660", "postId": "22382", "score": "2", "text": "FWIW, when starting it from the CLI (e.g. in i3), the name is `gnome-disks`.", "userDisplayName": null, "userId": "69674" }, { "creationDate": "2020-05-24T12:02:03.270", "id": "2095041", "postId": "22382", "score": "0", "text": "I needed this first: https://askubuntu.com/questions/500549/how-to-run-gnome-disk-utility", "userDisplayName": null, "userId": "1003629" }, { "creationDate": "2020-10-24T01:30:09.387", "id": "2183225", "postId": "22382", "score": "0", "text": "Greetings from the future 2020. Hey, this is still valid in 20.04!!!", "userDisplayName": null, "userId": "901345" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-01-20T08:38:02.483", "id": "22382", "lastActivityDate": "2021-05-29T11:42:28.273", "lastEditDate": "2021-05-29T11:42:28.273", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "6861", "parentId": "22381", "postTypeId": "2", "score": "323" }
[ { "accepted": true, "body": "<p>You can use <em>Disks</em>. It's installed by default and easy to use.</p>\n<p><a href=\"https://i.stack.imgur.com/xWmoi.png\" rel=\"noreferrer\"><img src=\"https://i.stack.imgur.com/xWmoi.png\" alt=\"Disks application appears in Dash search\" /></a></p>\n<ul>\n<li>Click on t...
null
null
null
null
null
22383
1
22385
2011-01-20T08:42:54.847
13
83893
<p>I have changed ownership of my localhost file on <code>/var/www/</code> and its sub folders and given it permission 777. However, whenever I add a new folder in it the new folder does not automatically get that permission. How can I give a folder 777 permission forever so that if I add a new folder or file it gets the same permission?</p>
6698
506
2012-08-16T01:25:42.890
2013-11-19T08:05:04.410
How to give read write permission to a folder and its sub folders and files?
[ "permissions" ]
6
4
CC BY-SA 3.0
[ { "creationDate": "2011-01-20T12:26:33.677", "id": "24191", "postId": "22383", "score": "4", "text": "PLEASE read this [Reasons why /var/www SHOULD NOT have chmod 777](http://askubuntu.com/questions/20105/reasons-why-var-www-should-not-have-chmod-777/20110#20110)", "userDisplayName": null, ...
{ "accepted": true, "body": "<p>Permissions for newly created files are set by <a href=\"http://en.wikipedia.org/wiki/Umask\" rel=\"nofollow\">umask</a></p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-20T09:39:26.537", "id": "24170", "postId": "22385", "score": "0", "text": "can u write the command for making /var/www/ writable and giving it permission such that i get same permission (777) for site i recently add in it.", "userDisplayName": null, "userId": "6698" }, { "creationDate": "2012-08-13T04:07:16.403", "id": "216118", "postId": "22385", "score": "1", "text": "Giving 777 permission to your webserver is not good.", "userDisplayName": null, "userId": "11932" }, { "creationDate": "2012-08-13T06:13:16.220", "id": "216152", "postId": "22385", "score": "0", "text": "Could you please add more details.", "userDisplayName": null, "userId": "11932" }, { "creationDate": "2012-08-15T18:40:35.660", "id": "217894", "postId": "22385", "score": "0", "text": "@ Vojtech Trefny. The link is not working at the moment.It says 404 Not Found.", "userDisplayName": null, "userId": "29152" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-20T08:49:37.597", "id": "22385", "lastActivityDate": "2013-11-19T08:05:04.410", "lastEditDate": "2013-11-19T08:05:04.410", "lastEditorDisplayName": "user134866", "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6861", "parentId": "22383", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Permissions for newly created files are set by <a href=\"http://en.wikipedia.org/wiki/Umask\" rel=\"nofollow\">umask</a></p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-20T09:39:26.537", "id": "24170", "postId": "223...
null
null
null
null
null
22384
1
22409
2011-01-20T08:46:48.490
1
286
<p>Yesterday I updated dbus library via apt-get. This morning I switched on my laptop and found out that Gnome doesn't start properly (it tries to display error dialog, doesn't show any panels).</p> <p>XServer works fine. Laptop is ASUS eeePC 1215n. Any ideas?</p> <p>EDIT: Here are some logs: </p> <p><a href="http://pastebin.com/vjYQv2wF" rel="nofollow">syslog</a></p> <p><a href="http://pastebin.com/tV2vEUQL" rel="nofollow">messages</a></p>
6102
41
2011-01-20T12:25:01.697
2011-01-20T12:31:36.323
Gnome doesn't start after libdbus update
[ "10.10", "gnome", "dbus" ]
1
6
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T09:26:32.293", "id": "24164", "postId": "22384", "score": "0", "text": "Can you post any error logs? Does gdm work (the login screen) or is it just the desktop? Can you tell is dbus is running and if not can you try and run it from the command line and report any er...
{ "accepted": true, "body": "<p>It looks like your system is in a non-recoverable position. It might be possible to recover if an expert has access to your machine directly, but unless you have a support person you can ask for help my best advice is to reinstall Ubuntu.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-20T12:36:37.320", "id": "24194", "postId": "22409", "score": "0", "text": "Well, that sucks)) Anyway, thank You! Is there any way to save my current configuration (installed applications, libraries and other stuff) ?", "userDisplayName": null, "userId": "6102" }, { "creationDate": "2011-01-20T14:42:39.967", "id": "24213", "postId": "22409", "score": "0", "text": "You can do an installation over your existing one which will save your configurations and files (basically it will keep /home and delete everything else) Just make sure to set the installer to 'not' format. Your installed apps can be saved and recovered but you need to do a google search for that if you think it's important. always keep backups of your files, VERY IMPORTANT!", "userDisplayName": null, "userId": "132" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T12:31:36.323", "id": "22409", "lastActivityDate": "2011-01-20T12:31:36.323", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "22384", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>It looks like your system is in a non-recoverable position. It might be possible to recover if an expert has access to your machine directly, but unless you have a support person you can ask for help my best advice is to reinstall Ubuntu.</p>\n", "commentCount": "2", ...
null
null
null
null
null
22392
1
null
2011-01-20T09:58:11.153
5
33028
<p>I've downloaded the package but as I'm trying to open it I get this message:</p> <pre><code>Archive: /home/agnes/Downloads/ggtranslate.exe [/home/agnes/Downloads/ggtranslate.exe] End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central directory and zipfile comment will be found on the last disk(s) of this archive. zipinfo: cannot find zipfile directory in one of /home/agnes/Downloads/ggtranslate.exe or /home/agnes/Downloads/ggtranslate.exe.zip, and cannot find /home/agnes/Downloads/ggtranslate.exe.ZIP, period. </code></pre>
6281
866
2011-01-20T10:23:01.620
2021-05-12T12:06:39.300
How do I install Google Translate Desktop?
[ "translation" ]
6
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T18:22:00.240", "id": "24270", "postId": "22392", "score": "3", "text": "I can find two apps called Google-Translate-Desktop. One in http://www.athtek.com/google-translate-desktop.html, and other in http://code.google.com/p/google-translate-desktop/. They are differe...
null
[ { "accepted": null, "body": "<p>Google Desktop Translator is a Java application that runs on Ubuntu if Java was installed. The file you downloaded obviously is designed to install and uncompress from Windows or (see Javier Rivera's comment) may be another third party Windows program. Both will not work in U...
null
null
null
null
null
22395
1
44492
2011-01-20T10:30:03.313
29
46770
<p>When I fire up remote desktop on Windows and connect to my server (Windows Server 2008), the fonts look pretty smooth. I just installed Ubuntu 10.10 yesterday and when I use rdesktop to connect the fonts look terrible. </p> <p>I've looked at all the settings but had no luck. Maybe there's some secret switch, or do I need to use a different client?</p>
9253
9253
2011-01-20T15:58:24.590
2018-02-11T09:30:05.903
How can I enable font smoothing when I connect to a Windows server with Terminal Services Client?
[ "remote-desktop", "font-rendering" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T10:35:56.943", "id": "24176", "postId": "22395", "score": "0", "text": "hmmm... looking at terminal services client, it only supports RDP 5.0. ClearType was added in RDP 6.0, looks like I might need a different client.", "userDisplayName": null, "userId": "...
{ "accepted": true, "body": "<p>Use one of the following experience options:</p>\n\n<pre><code>rdesktop -x 0x8F mywinserver # modem default + font smoothing\nrdesktop -x 0x81 mywinserver # broadband default + font smoothing\nrdesktop -x 0x80 mywinserver # LAN default + font smoothing\n</code></pre>\n\n<p>From <a href=\"http://katastrophos.net/andre/blog/2008/03/10/rdesktop-connect-to-windows-vista-with-cleartype-font-smoothing-enabled/\">http://katastrophos.net/andre/blog/2008/03/10/rdesktop-connect-to-windows-vista-with-cleartype-font-smoothing-enabled/</a></p>\n\n<p>Fonts will be better</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-05-22T18:28:27.387", "id": "48866", "postId": "44492", "score": "0", "text": "+1 and the green tick — excellent find, thanks!", "userDisplayName": null, "userId": "9253" }, { "creationDate": "2016-10-15T18:24:21.573", "id": "1280525", "postId": "44492", "score": "0", "text": "+1 and here is an example of the fonts being much improved in Outlook composition windows: [Example of improving font rendering from Windows 7 to rdesktop](http://i.imgur.com/ZLpDlNi.png) by using `-x 0x80`", "userDisplayName": null, "userId": "340383" }, { "creationDate": "2018-07-13T14:54:31.443", "id": "1724928", "postId": "44492", "score": "0", "text": "Not working for me. Cleartype is still turned off even with the `-x 0x80` switch, when connecting using rdesktop version 1.8.3 to a Windows 7 Professional host.", "userDisplayName": null, "userId": "4197" }, { "creationDate": "2019-03-26T17:11:50.400", "id": "1869276", "postId": "44492", "score": "0", "text": "`-x 0x8F` enables ClearType for me, with rdesktop 1.8.3 on Ubuntu 18.04 to Windows 8.1.", "userDisplayName": null, "userId": "20557" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-22T17:21:08.253", "id": "44492", "lastActivityDate": "2014-06-02T16:01:45.243", "lastEditDate": "2014-06-02T16:01:45.243", "lastEditorDisplayName": null, "lastEditorUserId": "38581", "ownerDisplayName": null, "ownerUserId": "18352", "parentId": "22395", "postTypeId": "2", "score": "24" }
[ { "accepted": null, "body": "<p>My guess is that you want to check out remmina (http://remmina.sourceforge.net/) which has quality options for RDP 5. I'm not aware that there's an RDP 6 client for us for the time being.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011...
null
null
null
null
null
22397
1
22400
2011-01-20T11:05:59.503
1
5133
<p>While making screencasts I always end up with a file having poorly synced audio and video streams. This is not container specific as this happens with all the formats - ogg, mkv, avi, mp4 etc. I guess this has something to do with ffmpeg. </p> <p>After searching on Internet, I found that this can be fixed using <strong>itsoffset</strong> switch in ffmpeg. I also tested it and it works. But the question is how do I find exact lag between audio and video streams in seconds:milliseconds?? I tried <strong>ffmpeg -i</strong> but it always shows delay to be zero.</p>
8592
34576
2013-07-06T00:40:45.347
2013-07-06T00:40:45.347
How can I find exact delay in badly synced audio and video streams in a media container?
[ "ffmpeg", "audio-sync" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Do you know what a clapper is? It's an old device used in movie making and looks like this:</p>\n\n<p><img src=\"https://i.stack.imgur.com/HpQxA.jpg\" alt=\"alt text\"></p>\n\n<p>This is used by the editor to sync the video and audio together. You need this because there is nothing about audio and video streams that really allow a computer to work out how out of sync they are.</p>\n\n<p>Your best course of action is to work out why your recording is going out of sync. It sounds like your computer might be underpowered (conjecture as I don't know how powerful your computer is). If you can't solve the syncing problem, then use a clapper (or make one) and then trial and error your way into syncing it back up.</p>\n\n<p>Of course this only helps with fixed sync issues, if you have progressive sync issues then you can use the time signature to resync the streams and this is something the computer <strong>can</strong> help you with. Is suspect that's what ffmpeg is trying to do.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-20T11:41:17.697", "id": "24180", "postId": "22400", "score": "0", "text": "Ok. I found a solution for this. For accurate trial and error results, I used track synchronisation option in VLC and it turned out that delay is approx. 2.700 seconds. What is strange that the sync problem is only on a laptop powered by ATI card. It does not happen with another machine using weak Intel card and in both cases I installed ffmpeg from Ubuntu 10.10 repositories", "userDisplayName": null, "userId": "8592" }, { "creationDate": "2011-01-20T12:32:40.470", "id": "24193", "postId": "22400", "score": "0", "text": "The video recording has nothing to do with the video card. It's most likely 2.7 seconds of audio or video that isn't in the other. Basically that they start recording at different times.", "userDisplayName": null, "userId": "132" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T11:27:42.330", "id": "22400", "lastActivityDate": "2011-01-20T11:27:42.330", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "132", "parentId": "22397", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Do you know what a clapper is? It's an old device used in movie making and looks like this:</p>\n\n<p><img src=\"https://i.stack.imgur.com/HpQxA.jpg\" alt=\"alt text\"></p>\n\n<p>This is used by the editor to sync the video and audio together. You need this because there is n...
null
null
null
null
null
22401
1
32000
2011-01-20T11:28:30.723
8
4463
<p>Is there any <kbd>Alt</kbd>+<kbd>Tab</kbd> module for gnome that make it behave more like it is in Windows 7?</p> <p><strong>Edit</strong>: By how it behaves more like Windows 7, I mean when you press <kbd>Alt</kbd>+<kbd>Tab</kbd> you can also, when you have those keys pressed in, navigate through the windows with the arrow keys</p>
8498
8498
2011-04-24T09:29:21.680
2017-10-30T01:29:57.800
Better alt+tab for Gnome?
[ "gnome", "shortcut-keys" ]
6
3
CC BY-SA 3.0
[ { "creationDate": "2011-03-25T15:47:46.787", "id": "35796", "postId": "22401", "score": "1", "text": "Compiz takes anything you've ever dreamed of other operating system and lets you tear it down and reconstruct it to your own will.\nPlay with it, look on forums, change it.\n\nIt's easy: take a ...
{ "accepted": true, "body": "<p>You can customise window switching using <a href=\"http://wiki.compiz.org/CCSM\" rel=\"nofollow noreferrer\">CompizConfig Settings Manager (CCSM)</a> <a href=\"http://apt.ubuntu.com/p/compizconfig-settings-manager\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/0wAin.png\" alt=\"install compizconfig-settings-manager\"></a>.</p>\n\n<p>If you launch CCSM, you will find the relevant options (highlighted) in the 'Window Management' section. The 'Switcher' options are all a variation on the traditional <kbd>Alt</kbd>+<kbd>Tab</kbd> behaviour but they are much more customisable and you can use any keyboard shortcut you want.</p>\n\n<p><img src=\"https://i.stack.imgur.com/sgqWN.png\" alt=\"ccsm main window\"></p>\n\n<p>You can enable them by ticking the checkbox next to the option. Click on the option to configure it. To get <kbd>Alt</kbd>+<kbd>Tab</kbd> behaviour you need to set the keyboard shortcut for the 'Next Window' action to <kbd>Alt</kbd>+<kbd>Tab</kbd>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/hogSS.png\" alt=\"Options for shift switcher\"></p>\n\n<p>To set the keyboard shortcut, click the button to the right of 'Next Window' and follow the dialog to grab the key combination that can be <kbd>Alt</kbd>+<kbd>Tab</kbd>, <kbd>Super</kbd>+<kbd>Tab</kbd> or any other combination you prefer.</p>\n\n<p><img src=\"https://i.stack.imgur.com/Cfo8h.png\" alt=\"Edit Next Window Dialog\"></p>\n\n<p>You may use any number of these window switchers but you must use different keyboard shortcuts so that they don't conflict.</p>\n\n<p>As for:</p>\n\n<blockquote>\n <p>make it behave more like it is in Windows 7</p>\n</blockquote>\n\n<p>I have never used this operating system so I don't know how it behaves. I assume it is a window switcher with eye candy - this is what these Compiz Plugins provide.</p>\n\n<p><strong>Note:</strong> you need to run Compiz (desktop effects) for this solution to work. This requires the appropriate drivers and a sufficient graphics card to work.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-03-25T15:32:43.273", "id": "32000", "lastActivityDate": "2011-12-02T12:49:10.067", "lastEditDate": "2011-12-02T12:49:10.067", "lastEditorDisplayName": null, "lastEditorUserId": "15811", "ownerDisplayName": null, "ownerUserId": "667", "parentId": "22401", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>With Compiz (the the well known window manager with composition), you may use any key/mouse combination (not only alt-tab> to switch between windows (there are many plugins included with Compiz that may change the behavior).</p>\n\n<p>To install Compiz (supposing that your vi...
null
null
null
null
null
22402
1
null
2011-01-20T11:39:55.033
5
20281
<p>It has an old SiS based graphics chip with 64mb memory, there were never 3D drivers for them. Ubuntu 10.10 doesn't even boot on it and my laptop, a Lenovo N200 with intel 9something graphics 128mb so I'm really worried. Broadband prices don;t come cheap in South Africa so the download has to be worth it. I can wait for the shipment but I've since orderd 10.10 and it hasn't come, so I don't know if I'm barred from using that service since I've been sent a disc every release. </p>
null
null
null
2015-02-12T17:09:32.870
Will Ubuntu 11.04 work on my old pc?
[ "graphics", "intel-graphics" ]
7
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T13:39:24.120", "id": "24198", "postId": "22402", "score": "0", "text": "What operating systems are currently running on the two computers? Also, if the Ubuntu Live USB disk or CD doesn't boot on the Lenovo laptop, ask a question about it here and include lots of det...
null
[ { "accepted": null, "body": "<p>You should mention your system configuration in little more detail. Anyways the minimum system requirements for running Ubuntu (from <a href=\"https://help.ubuntu.com/community/Installation/SystemRequirements\" rel=\"nofollow\">https://help.ubuntu.com/community/Installation/S...
null
null
2015-02-23T11:12:49.697
null
M4tic
22403
1
22412
2011-01-20T11:41:05.947
1
3119
<p>I've put a <code>.bash_login</code> file in my <code>$HOME</code>-directory but it doesn't execute. I've also tried <code>.bash_profile</code> but also doesn't work. There are also</p> <ul> <li>.profile</li> <li>.bash_history</li> <li>.bash_logout</li> </ul> <p>Any idea? I'm using Crunchbang 10 Statler.</p>
6710
6713
2011-01-20T13:31:11.910
2011-01-20T13:31:11.910
.bash_login not executing
[ "configuration", "bash" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Bash only looks for .bash_login or .profile files if it is executed as interactive login shell. When it is executed as interactive non-login shell it reads .bashrc. Commonly it is the second case i.e when you run <strong>gnome-terminal</strong> bash is run as non-login shell. Applications->Accessories->Terminal is a menu entry for gnome-terminal.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-21T08:28:16.740", "id": "24376", "postId": "22412", "score": "0", "text": "Just to add a bit to this; http://mywiki.wooledge.org/DotFiles explains this more in detail, along with the history of why it is like this. In short, put environment variables (`export MYVAR=value`) in `~/.profile`, and functions and aliases in `~/.bashrc`.", "userDisplayName": null, "userId": "9016" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T13:19:21.703", "id": "22412", "lastActivityDate": "2011-01-20T13:19:21.703", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6713", "parentId": "22403", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Bash only looks for .bash_login or .profile files if it is executed as interactive login shell. When it is executed as interactive non-login shell it reads .bashrc. Commonly it is the second case i.e when you run <strong>gnome-terminal</strong> bash is run as non-login shell....
null
null
null
null
null
22408
1
22425
2011-01-20T12:07:21.000
3
4780
<p>I have defined </p> <pre><code>export MAKEOPTS="-j4" </code></pre> <p>in my ~/.profile file.</p> <p>But when I do a compilation with make, this option is ignored.<br> I've consulted the GNU Make manual but it says nothing about this variable. Is it standard or only it works in certain distros? </p>
4870
null
null
2017-03-07T20:47:27.793
"$MAKEOPTS" ignored, why?
[ "environment-variables", "makefile", ".profile" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T12:30:40.803", "id": "24192", "postId": "22408", "score": "0", "text": "Where have you seen this being used?", "userDisplayName": null, "userId": "449" } ]
{ "accepted": true, "body": "<pre><code>export MAKE=\"make -j4\"\n</code></pre>\n\n<p>This will help invoking child <code>make</code> processes, but I'm afraid this wouldn't help with direct invocations, like just <code>make all</code>. Though a shell alias may help with the direct ones, so:</p>\n\n<pre><code>MAKEFLAGS=\"-j4\"\nexport MAKE=\"make $MAKEFLAGS\"\nalias make=\"make $MAKEFLAGS\"\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-20T15:13:05.987", "id": "24221", "postId": "22425", "score": "1", "text": "Thanks. \"MAKEFLAGS\" do de job. \n\nBut if I set 'export MAKE=\"make $MAKEFLAGS\"' when I do a make, it shows this warnings: \"warning: -jN forced in submake: disabling jobserver mode.\"", "userDisplayName": null, "userId": "4870" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T14:48:10.600", "id": "22425", "lastActivityDate": "2011-01-20T14:48:10.600", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9061", "parentId": "22408", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>I'll be honest, before today I'd never seen <code>MAKEOPTS</code>.</p>\n\n<p><code>MAKEFLAGS</code> I know of but after some research, <code>MAKEOPTS</code> appears to be Gentoo- (and its children) specific.</p>\n\n<p>And if it's not in the manual, it can hardly be considered...
null
null
null
null
null
22411
1
null
2011-01-20T13:10:45.800
2
1176
<p>I'm using ubuntu 10.10 netbook edition. I have some data on a thumb drive that I want to put on my computer but when I plug in the thumb drive, nothing happens. I search for the file and it's not there. /media is empty. How do I mount this thumbrive and make it mount automatically?</p> <p>output of dmesg. The Total output was too large, so I put in what I thought would be relevant:</p> <pre><code>[ 2043.086937] wlan0: associated [ 2523.345076] usb 1-3: new high speed USB device using ehci_hcd and address 3 [ 2523.647942] Initializing USB Mass Storage driver... [ 2523.648585] scsi4 : usb-storage 1-3:1.0 [ 2523.649787] usbcore: registered new interface driver usb-storage [ 2523.649796] USB Mass Storage support registered. [ 2524.660116] scsi 4:0:0:0: Direct-Access TOSHIBA TransMemory 5.00 PQ: 0 ANSI: 0 CCS [ 2524.665393] sd 4:0:0:0: Attached scsi generic sg1 type 0 [ 2525.902179] sd 4:0:0:0: [sdb] 4028416 512-byte logical blocks: (2.06 GB/1.92 GiB) [ 2525.902776] sd 4:0:0:0: [sdb] Write Protect is off [ 2525.902787] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 2525.902795] sd 4:0:0:0: [sdb] Assuming drive cache: write through [ 2525.906549] sd 4:0:0:0: [sdb] Assuming drive cache: write through [ 2525.906570] sdb: sdb1 [ 2525.910640] sd 4:0:0:0: [sdb] Assuming drive cache: write through [ 2525.910656] sd 4:0:0:0: [sdb] Attached SCSI removable disk [ 2638.233056] usb 1-3: USB disconnect, address 3 [ 2643.460114] usb 1-3: new high speed USB device using ehci_hcd and address 4 [ 2643.598968] scsi5 : usb-storage 1-3:1.0 [ 2644.596900] scsi 5:0:0:0: Direct-Access TOSHIBA TransMemory 5.00 PQ: 0 ANSI: 0 CCS [ 2644.599789] sd 5:0:0:0: Attached scsi generic sg1 type 0 [ 2644.819235] sd 5:0:0:0: [sdb] 4028416 512-byte logical blocks: (2.06 GB/1.92 GiB) [ 2644.819872] sd 5:0:0:0: [sdb] Write Protect is off [ 2644.819884] sd 5:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 2644.819892] sd 5:0:0:0: [sdb] Assuming drive cache: write through [ 2644.825499] sd 5:0:0:0: [sdb] Assuming drive cache: write through [ 2644.825533] sdb: sdb1 [ 2644.834616] sd 5:0:0:0: [sdb] Assuming drive cache: write through [ 2644.834632] sd 5:0:0:0: [sdb] Attached SCSI removable disk [ 2925.444581] usb 1-3: USB disconnect, address 4 [ 3090.808101] usb 1-3: new high speed USB device using ehci_hcd and address 5 [ 3090.945921] scsi6 : usb-storage 1-3:1.0 [ 3091.944884] scsi 6:0:0:0: Direct-Access TOSHIBA TransMemory 5.00 PQ: 0 ANSI: 0 CCS [ 3091.946451] sd 6:0:0:0: Attached scsi generic sg1 type 0 [ 3093.224574] sd 6:0:0:0: [sdb] 4028416 512-byte logical blocks: (2.06 GB/1.92 GiB) [ 3093.225499] sd 6:0:0:0: [sdb] Write Protect is off [ 3093.225517] sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 3093.225527] sd 6:0:0:0: [sdb] Assuming drive cache: write through [ 3093.229707] sd 6:0:0:0: [sdb] Assuming drive cache: write through [ 3093.229762] sdb: sdb1 [ 3093.232970] sd 6:0:0:0: [sdb] Assuming drive cache: write through [ 3093.232993] sd 6:0:0:0: [sdb] Attached SCSI removable disk [ 3134.507536] usb 1-3: USB disconnect, address 5 [ 3139.169115] usb 1-1: new high speed USB device using ehci_hcd and address 6 [ 3139.308938] scsi7 : usb-storage 1-1:1.0 [ 3140.308945] scsi 7:0:0:0: Direct-Access TOSHIBA TransMemory 5.00 PQ: 0 ANSI: 0 CCS [ 3140.310423] sd 7:0:0:0: Attached scsi generic sg1 type 0 [ 3140.550352] sd 7:0:0:0: [sdb] 4028416 512-byte logical blocks: (2.06 GB/1.92 GiB) [ 3140.551040] sd 7:0:0:0: [sdb] Write Protect is off [ 3140.551059] sd 7:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 3140.551072] sd 7:0:0:0: [sdb] Assuming drive cache: write through [ 3140.557789] sd 7:0:0:0: [sdb] Assuming drive cache: write through [ 3140.557821] sdb: sdb1 [ 3140.564267] sd 7:0:0:0: [sdb] Assuming drive cache: write through [ 3140.564279] sd 7:0:0:0: [sdb] Attached SCSI removable disk [ 4639.380928] usb 1-1: USB disconnect, address 6 [ 4749.180094] usb 1-3: new high speed USB device using ehci_hcd and address 7 [ 4749.319077] scsi8 : usb-storage 1-3:1.0 [ 4750.316850] scsi 8:0:0:0: Direct-Access TOSHIBA TransMemory 5.00 PQ: 0 ANSI: 0 CCS [ 4750.319861] sd 8:0:0:0: Attached scsi generic sg1 type 0 [ 4752.278001] sd 8:0:0:0: [sdb] 4028416 512-byte logical blocks: (2.06 GB/1.92 GiB) [ 4752.278603] sd 8:0:0:0: [sdb] Write Protect is off [ 4752.278616] sd 8:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 4752.278626] sd 8:0:0:0: [sdb] Assuming drive cache: write through [ 4752.283289] sd 8:0:0:0: [sdb] Assuming drive cache: write through [ 4752.283320] sdb: sdb1 [ 4752.289263] sd 8:0:0:0: [sdb] Assuming drive cache: write through [ 4752.289286] sd 8:0:0:0: [sdb] Attached SCSI removable disk </code></pre>
5267
1067
2011-01-20T19:37:30.983
2011-01-20T19:37:30.983
Mounting thumb drive
[ "ubuntu-netbook", "usb-drive" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T13:38:06.677", "id": "24197", "postId": "22411", "score": "0", "text": "See the output of dmesg after inserting the drive.", "userDisplayName": null, "userId": "2647" } ]
null
[ { "accepted": null, "body": "<p>The thumbdrive should mount automatically. If not, it is quite possible the filesystem is corrupted.\nIndeed, see the output of <code>dmesg</code> (find the <code>Log File Viewer</code> in <code>System»Administration</code>) and observe any messages that appear as soon as you...
null
null
null
null
null
22413
1
22417
2011-01-20T13:20:39.173
231
290096
<p>I have several instances of terminals running in my working environment, what I would like is to set a specific title for each one, in order to have a clear idea what purpose the specific terminal serves i.e. Apache, editing_ini, postgres etc...</p> <p>Of course from the command line.</p>
1177
546798
2016-06-24T18:09:20.480
2023-06-15T15:31:39.597
How to change Gnome-Terminal title?
[ "command-line", "gnome-terminal", "titlebar" ]
17
6
CC BY-SA 2.5
[ { "creationDate": "2011-09-02T11:38:55.947", "id": "69138", "postId": "22413", "score": "0", "text": "Further to Ward's comment: Don't forget to \"unset PROMPT_COMMAND\" *before* you send the title-change escape sequence, otherwise any change you make will be lost as soon as the next shell promp...
{ "accepted": true, "body": "<p>Alternatives:</p>\n\n<ul>\n<li><p>There are other ways however, you can also issue</p>\n\n<pre><code>gnome-terminal --title=\"SOME TITLE HERE\"\n</code></pre>\n\n<p>This might not give the desired effect since there is a big chance that your <code>.bashrc</code> overwrites that behaviour.</p></li>\n<li><p>Bringing us to the last method, which I shamelessly ripped out of my <code>.bashrc</code>.</p>\n\n<pre><code>PROMPT_COMMAND='echo -ne \"\\033]0;SOME TITLE HERE\\007\"'\n</code></pre></li>\n</ul>\n\n<p>As an extra reference, this is the particular line in my <code>.bashrc</code></p>\n\n<pre><code>PROMPT_COMMAND='echo -ne \"\\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\\007\"'\n</code></pre>\n\n<p>You may also need to comment this code out in your <code>~/.bashrc</code></p>\n\n<pre class=\"lang-bash prettyprint-override\"><code>case \"$TERM\" in\nxterm*|rxvt*)\n # JEFFYEE REMOVED because it makes commands to title() not work\n #PS1=\"\\[\\e]0;${debian_chroot:+($debian_chroot)}\\u@\\h: \\w\\a\\]$PS1\"\n ;;\n*)\n ;;\nesac\n</code></pre>\n", "commentCount": "16", "comments": [ { "creationDate": "2011-01-20T15:49:39.933", "id": "24232", "postId": "22417", "score": "2", "text": "Need to comment out or remove as you mentioned in order to take effect!", "userDisplayName": null, "userId": "1177" }, { "creationDate": "2011-01-24T10:32:08.613", "id": "24834", "postId": "22417", "score": "0", "text": "@DoR the code PROMPT_COMMAND=... I commented it out. If not removed from the .bashrc then the title remains the same since its getting override by the .bashrc settings.", "userDisplayName": null, "userId": "1177" }, { "creationDate": "2011-01-26T22:24:05.087", "id": "25352", "postId": "22417", "score": "0", "text": "@DoR That seems odd given `PS1` is the variable for the actual prompt. Hmm, that makes me wonder why the one for the title gets called `PROMPT_COMMAND`. Anyone know anything about that?", "userDisplayName": null, "userId": "506" }, { "creationDate": "2011-03-31T22:25:22.540", "id": "36882", "postId": "22417", "score": "1", "text": "@Ward: `PROMPT_COMMAND` is a *program* to run. `PS1` and `PS1` are *textual strings* that are displayed. In the example above the command that is run is `echo`, which then simply prints out a string. See `man bash` or http://manpages.ubuntu.com/bash for more details.", "userDisplayName": null, "userId": "7702" }, { "creationDate": "2012-05-30T10:49:56.283", "id": "173107", "postId": "22417", "score": "0", "text": "I wonder why this `--title` option is not documented in `gnome-terminal --help`!", "userDisplayName": null, "userId": "17226" }, { "creationDate": "2013-01-15T20:26:51.443", "id": "301690", "postId": "22417", "score": "0", "text": "@umpirsky it is in `--help-all`", "userDisplayName": null, "userId": "3475" }, { "creationDate": "2015-07-21T18:09:02.357", "id": "935003", "postId": "22417", "score": "0", "text": "note, if you do not see the menu bar in the terminal, you may activate it by right-clicking in the terminal and checking `Show Menubar`", "userDisplayName": null, "userId": "430981" }, { "creationDate": "2015-11-18T21:23:32.097", "id": "1025580", "postId": "22417", "score": "38", "text": "GNOME Terminal 3.16.2 says `Option \"--title\" is no longer supported in this version of gnome-terminal.`", "userDisplayName": null, "userId": "259367" }, { "creationDate": "2016-05-06T12:13:04.613", "id": "1147796", "postId": "22417", "score": "1", "text": "I had to escape the `~` in `${PWD/$HOME/~}` to get the home directory replaced: `${PWD/$HOME/\\~}`.", "userDisplayName": null, "userId": "76351" }, { "creationDate": "2016-09-26T04:46:04.170", "id": "1263321", "postId": "22417", "score": "12", "text": "On Gnome 3.18.3, there is no \"Set title\" entry in the menus :/", "userDisplayName": null, "userId": "543234" }, { "creationDate": "2017-02-24T00:21:09.483", "id": "1384744", "postId": "22417", "score": "5", "text": "For anyone else confused by the gobbledegook in the strings above, they are ANSI escape characters - see e.g. http://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html", "userDisplayName": null, "userId": "455406" }, { "creationDate": "2017-02-24T00:23:16.517", "id": "1384745", "postId": "22417", "score": "1", "text": "http://askubuntu.com/a/774543/455406 sets the title programmatically; it is bash-specific.", "userDisplayName": null, "userId": "455406" }, { "creationDate": "2017-09-13T06:11:36.883", "id": "1523759", "postId": "22417", "score": "4", "text": "GNOME terminal 3.20 does not have \"set title...\" in the menu", "userDisplayName": null, "userId": "680732" }, { "creationDate": "2018-06-07T10:09:42.277", "id": "1702743", "postId": "22417", "score": "0", "text": "@WardMuylaert Any way to have it open a new tab instead of anew window?", "userDisplayName": null, "userId": "172549" }, { "creationDate": "2019-11-29T03:35:21.647", "id": "1995891", "postId": "22417", "score": "0", "text": "@WillC Thanks for that link, it's the only programmatic answer on this page that worked!", "userDisplayName": null, "userId": "435408" }, { "creationDate": "2021-06-03T10:55:32.443", "id": "2293560", "postId": "22417", "score": "0", "text": "In PROMPT_COMMAND I need to escape `~` : `${PWD/$HOME/\\~}` Gnome Terminal 3.28.", "userDisplayName": null, "userId": "20882" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-01-20T13:51:02.473", "id": "22417", "lastActivityDate": "2019-12-15T05:39:28.260", "lastEditDate": "2019-12-15T05:39:28.260", "lastEditorDisplayName": null, "lastEditorUserId": "349837", "ownerDisplayName": null, "ownerUserId": "506", "parentId": "22413", "postTypeId": "2", "score": "200" }
[ { "accepted": true, "body": "<p>Alternatives:</p>\n\n<ul>\n<li><p>There are other ways however, you can also issue</p>\n\n<pre><code>gnome-terminal --title=\"SOME TITLE HERE\"\n</code></pre>\n\n<p>This might not give the desired effect since there is a big chance that your <code>.bashrc</code> overwrites th...
null
null
null
null
null
22419
1
null
2011-01-20T13:58:07.370
15
40637
<p>I wonder whether there's a way to make urxvt render xft fonts:</p> <pre><code>URxvt.font: xft:Droid Sans Mono Slashed:pixelsize=9:Regular URxvt.boldFont: xft:Droid Sans Mono Slashed:pixelsize=9:Bold URxvt.talicFont: xft:Droid Sans Mono Slashed:pixelsize=9:Italic URxvt.bolditalicFont: xft:Droid Sans Mono Slashed:pixelsize=9:Bold:Italic </code></pre> <p>If I try this, I get something like: <img src="https://i.stack.imgur.com/lgPgJ.png" alt="alt text"></p> <p>So it scales pretty bad:</p> <pre><code> ! Fonts Xft.dpi: 132 Xft.antialias: true Xft.rgba: rgb Xft.hinting: true Xft.autohint: true Xft.hintstyle: hintfull </code></pre> <p>I'm not sure whether this is one of the reaons. However I want antialias and that Droid. Is there any trick here?</p>
3485
1067
2011-01-20T14:00:38.433
2015-03-20T12:27:26.883
How do I make urxvt render xft fonts?
[ "command-line", "font-rendering" ]
5
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I got it just working with command line option \"-letsp -1\", see also</p>\n\n<p><a href=\"http://www.saltycrane.com/blog/2009/11/how-make-urxvt-look-gnome-terminal/\" rel=\"nofollow\">http://www.saltycrane.com/blog/2009/11/how-make-urxvt-look-gnome-terminal/</a></p>\n", ...
null
null
null
null
null
22422
1
22570
2011-01-20T14:26:44.073
1
703
<p>I am running an ubuntu server with LAN ip on which I want to run openvpn server which will provide access to the LAN that ubuntu server is in. I will be opening a port on my router through which the ubuntu server will listen on. The network will be 192.168.0.0/255.255.0.0 The (eth0) ip of ubuntu server will be 192.168.9.10. The LAN gateway and dns server will be 192.168.0.1 (router). I have partially worked on it by <a href="https://help.ubuntu.com/10.04/serverguide/C/openvpn.html#openvpn-configuration" rel="nofollow">using this guide</a>. But the openvpn server fails to start, so something isn't right in my conf file. So what settings should I have in my openvpn conf file?</p>
2968
null
null
2011-01-21T09:05:11.120
Ubuntu machine behind a LAN as openvpn server
[ "server", "openvpn" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T14:35:53.297", "id": "24211", "postId": "22422", "score": "0", "text": "Have you took a look in your system log for error messages?", "userDisplayName": null, "userId": "9061" } ]
{ "accepted": true, "body": "<p>In order to help you debug your problem, you should do the following:</p>\n\n<pre><code>sudo /etc/init.d/openvpn stop\n# Or 'sudo stop openvpn' if you are on a very new Ubuntu system\nsudo openvpn --cd /etc/openvpn --config /etc/openvpn/server.conf\n</code></pre>\n\n<p>You should now get the openvpn output right on your terminal.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-21T10:51:27.130", "id": "24391", "postId": "22570", "score": "0", "text": "It seams the guide that I linked is somewhat outdated, I somehow got it working by following the official openvpn guide.", "userDisplayName": null, "userId": "2968" }, { "creationDate": "2011-01-21T12:01:46.117", "id": "24399", "postId": "22570", "score": "0", "text": "Ok, could you please close the question?", "userDisplayName": null, "userId": "9317" }, { "creationDate": "2011-01-22T22:59:53.807", "id": "24642", "postId": "22570", "score": "0", "text": "What was the problem/solution?", "userDisplayName": null, "userId": "1776" }, { "creationDate": "2012-03-05T13:44:11.703", "id": "129858", "postId": "22570", "score": "0", "text": "Can anyone link to the _Official OpenVPN Guide_?", "userDisplayName": null, "userId": "49294" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T09:05:11.120", "id": "22570", "lastActivityDate": "2011-01-21T09:05:11.120", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9317", "parentId": "22422", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>In order to help you debug your problem, you should do the following:</p>\n\n<pre><code>sudo /etc/init.d/openvpn stop\n# Or 'sudo stop openvpn' if you are on a very new Ubuntu system\nsudo openvpn --cd /etc/openvpn --config /etc/openvpn/server.conf\n</code></pre>\n\n<p>You sh...
null
null
null
null
null
22429
1
22491
2011-01-20T12:27:48.530
2
933
<p>In a few hours I will get my new Thinkpad X201t and the first thing that I will do is install Ubuntu on it. In the last two months I switched machines quite a lot because I needed to work despite my previous machine which crashed (a Macbook Pro 4,1). I even did set up a work environment on a cloud-hosted VM to be able to connect to it from everywhere.</p> <p>Now - trying to remove the manual set up of each box - I am looking for ways to configure a system in a scripted way which allows me to change the configuration and replicate it on another box when I need to. This includes tasks such as installing and configuring packages.</p> <ul> <li>I already worked a little bit with chef but it's just too complex for <strong>single</strong> machines.</li> <li>My dot files already live in a git repository</li> </ul> <p>Hope there are some of you who already have a solution :)</p>
9475
235
2011-01-20T21:20:19.960
2011-01-20T21:20:19.960
A simple way to manage configuration of dot files and packages?
[ "package-management", "configuration-management" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T12:29:23.143", "id": "24226", "postId": "22429", "score": "1", "text": "Not programming...", "userDisplayName": "leppie", "userId": null } ]
{ "accepted": true, "body": "<p>I haven't used cfengine in a very long time, but you could take a quick look at cfengine3. I would say that the original cfengine is almost certainly too complex for your task, but the latest version claims it is simplified.\nAnother possibility, again likely more than you need, is <a href=\"http://www.puppetlabs.com/\" rel=\"nofollow\">puppet</a>.</p>\n\n<p>For etc configuration files, for a start you could take a look at etckeeper. </p>\n\n<p>You'll also need to keep any packages and ppa's in sync -- I know there are some options for this, but I'll leave it to other users to help with that one. </p>\n\n<p>etckeeper , cfengine3 , and puppet are in the repos. </p>\n\n<p>Of course*, you'll probably want to tie in some cloud storage to keep copies sync'd and tidy. Ubuntu One, Dropbox, Spideroak come to mind as free (for limited storage) solutions.</p>\n\n<p>*(or perhaps not)</p>\n\n<p>By the way, what are you using to manage your dot-files?</p>\n\n<p>Update:\nI'd forgotten that <a href=\"https://launchpad.net/stipple\" rel=\"nofollow\">stipple</a> and/or <a href=\"https://wiki.ubuntu.com/OneConf/\" rel=\"nofollow\">OneConf</a> would be the ideal way to do (much of) this. When they are complete. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-23T22:58:05.807", "id": "24789", "postId": "22491", "score": "0", "text": "Oh man, thanks for the hint to stipple and OneConf. Nice to see that some people are working on this. I would have thought that I have to go the puppet/chef/cfengine way. It's a plus that Stipple uses CouchDB as I am working more and more with that. My dotfiles are currently checked into a git repository which is fine. There is a setup script which links some files to the home directory (.bash_profile, .vimrc, ...) to get everything started.", "userDisplayName": null, "userId": "9475" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T20:36:04.883", "id": "22491", "lastActivityDate": "2011-01-20T20:56:13.633", "lastEditDate": "2011-01-20T20:56:13.633", "lastEditorDisplayName": null, "lastEditorUserId": "8844", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "22429", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>I haven't used cfengine in a very long time, but you could take a quick look at cfengine3. I would say that the original cfengine is almost certainly too complex for your task, but the latest version claims it is simplified.\nAnother possibility, again likely more than you n...
null
null
null
null
balu
22435
1
null
2011-01-20T15:52:58.330
11
200
<p>I'm interested in finding out which PPAs have daily builds associated with them so I can be sure I'm always running the latest software available by these teams. Does such a feature exist?</p>
41
null
null
2012-10-11T20:56:35.027
Where can I find a list of daily builds?
[ "ppa", "launchpad" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You may want to check out <a href=\"https://launchpad.net/~webupd8team/+archive/y-ppa-manager\" rel=\"nofollow\">PPA Manager</a> by <a href=\"http://www.webupd8.org/\" rel=\"nofollow\">Webupd8</a>. This is a graphical tool which lets you search, manage and browse through the ...
null
null
null
null
null
22437
1
null
2011-01-20T15:55:39.227
2
387
<p>I am using Xubuntu and I am looking for a way to bind the backspace key with navigating to the parent directory of the current directory.</p> <p>I read in the <a href="http://thunar.xfce.org/documentation/C/faq.html" rel="nofollow">Thunar documentation FAQ</a> (at the bottom) that Thunar shortcuts are standard GTK+ keyboard shortcuts, meaning that there are two ways of setting a keyboard shortcut for "open parent":</p> <ol> <li>Hovering over the open parent menu option with the mouse pointer and pressing the keyboard shortcut (after enabling the Editable menu accelerators option in settings)</li> <li>Editing $XDG_CONFIG_DIRS/Thunar/accels.scm</li> </ol> <p>The first method didn't work because pressing backspace removes any keyboard shortcut assigned to the option instead of assigning backspace to the option.</p> <p>The second also didn't work but I don't know why. Perhaps the backspace key should be written differently. This is how I tried it:</p> <pre><code>(gtk_accel_path "&lt;Actions&gt;/ThunarWindow/open-parent" "&lt;Backspace&gt;") </code></pre>
815
235
2011-01-21T17:56:29.677
2011-01-21T17:56:29.677
Backspace keyboard shortcut for GTK+
[ "configuration", "shortcut-keys", "gtk", "thunar" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2013-05-04T18:52:12.033
null
null
22439
1
null
2011-01-20T16:14:20.133
2
2075
<p>I am trying to setup an Ubuntu hosting server, currently just for development, and the server has two NICs, each sitting on a different network. eth0 is on 192.168.200.* and eth1 is on 192.168.101.* and each one has a static IP. eth0 is the public facing NIC card and eth1 is strictly for internal access to the server. I initially only setup eth0 and added the eth1 card when I needed it. eth0 was working find until I added eth1, now, can't get any connectivity on eth0 unless I pull eth1 out of the box. The configuration on each system is as follows:</p> <pre><code>auto eth0 iface eth0 inet static address 192.168.200.94 netmask 255.255.255.0 network 192.168.200.0 broadcast 192.168.200.255 gateway 192.168.200.253 auto eth1 iface eth1 inet static address 192.168.101.64 netmask 255.255.255.0 network 192.168.101.0 broadcast 192.168.101.255 gateway 192.168.101.254 </code></pre> <p>Again eth0 worked fine until I added eth1. I have seen this happen with Windows servers if you have a Default Gateway setup for both NICs, but I am not sure if this works the same on Ubuntu. My resolv.conf file looks like so:</p> <pre><code>nameserver 192.168.101.59 nameserver 192.168.101.58 domain domain.local search domain.local </code></pre> <p>Per request here is the Routing table</p> <pre><code>192.168.101.0 * 255.255.255.0 U 0 0 0 eth1 192.168.200.0 * 255.255.255.0 U 0 0 0 eth0 default 192.168.101.254 0.0.0.0 UG 100 0 0 eth1 default 192.168.200.253 0.0.0.0 UG 100 0 0 eth0 </code></pre>
9270
721
2011-03-17T06:51:24.983
2011-03-17T06:51:24.983
Lost connectivity after configuring multiple network adapters on separate networks
[ "server", "networking" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T16:19:15.993", "id": "24235", "postId": "22439", "score": "0", "text": "I could be a route issue. Please add the output of the route command.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2011-01-20T23:39:00.263", "id": "24337"...
null
[ { "accepted": null, "body": "<p>You have two default routes. It's possible that your \"192.168.101.254\" box is not configured to route your traffic out, since you said that that network it's strictly for internal access.</p>\n\n<p>Remove the \"gateway\" entry from the eth1 network and it should work.</p>\n...
null
null
null
null
null
22440
1
null
2011-01-20T16:24:16.643
2
2476
<p>I'm running a Lucid Netbook Remix on my Dell Inspiron 600m and I was not able to connect to the wireless network at the Hacker Dojo in Mountain View yesterday. There were plenty of other people on the network - MS, Mac, and Linux boxes - but my laptop would never get an ip address. I can connect to my home network, which is open, and I've never had a problem connecting at the coffee shop, which uses WPA. The Hacker Dojo is running WPA and we checked the password a number of times but got no love. Any ideas would be greatly appreciated.</p> <p><strong>Additional Info:</strong></p> <pre><code>$iwlist eth1 scan eth1 Scan completed : Cell 01 - Address: EC:C8:82:FA:63:92 ESSID:"HackerDojo-gwifi" Protocol:IEEE 802.11g Mode:Master Frequency:2.412 GHz (Channel 1) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:62 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 280ms ago Cell 02 - Address: 00:18:4D:24:08:61 ESSID:"Green Zone" Protocol:IEEE 802.11bg Mode:Master Frequency:2.417 GHz (Channel 2) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:23 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 11516ms ago Cell 03 - Address: 08:17:35:32:6E:13 ESSID:"\x00" Protocol:IEEE 802.11g Mode:Master Frequency:2.437 GHz (Channel 6) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:71 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 2760ms ago Cell 04 - Address: EC:C8:82:FA:63:90 ESSID:"HackerDojo" Protocol:IEEE 802.11g Mode:Master Frequency:2.412 GHz (Channel 1) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:61 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 772ms ago Cell 05 - Address: 08:17:35:32:6E:11 ESSID:"HackerDojo-Presenter" Protocol:IEEE 802.11g Mode:Master Frequency:2.437 GHz (Channel 6) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:65 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 3308ms ago Cell 06 - Address: 08:17:35:32:7E:31 ESSID:"HackerDojo-Presenter" Protocol:IEEE 802.11g Mode:Master Frequency:2.462 GHz (Channel 11) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:88 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 1668ms ago Cell 07 - Address: 38:E7:D8:01:46:1E ESSID:"JWS_Incredible" Protocol:IEEE 802.11bg Mode:Master Frequency:2.412 GHz (Channel 1) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 500 kb/s; 54 Mb/s Quality:31 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK Extra: Last beacon: 2848ms ago Cell 08 - Address: 08:17:35:32:6E:10 ESSID:"HackerDojo" Protocol:IEEE 802.11g Mode:Master Frequency:2.437 GHz (Channel 6) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:67 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 7848ms ago Cell 09 - Address: 08:17:35:32:7E:30 ESSID:"HackerDojo" Protocol:IEEE 802.11g Mode:Master Frequency:2.462 GHz (Channel 11) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:85 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 8300ms ago Cell 10 - Address: 08:17:35:32:6E:12 ESSID:"HackerDojo-gwifi" Protocol:IEEE 802.11g Mode:Master Frequency:2.437 GHz (Channel 6) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:68 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 232ms ago Cell 11 - Address: 08:17:35:32:7E:32 ESSID:"HackerDojo-gwifi" Protocol:IEEE 802.11g Mode:Master Frequency:2.462 GHz (Channel 11) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:86 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 168ms ago Cell 12 - Address: EC:C8:82:FA:63:91 ESSID:"HackerDojo-Presenter" Protocol:IEEE 802.11g Mode:Master Frequency:2.412 GHz (Channel 1) Encryption key:on Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s 48 Mb/s; 54 Mb/s Quality:62 Signal level:0 Noise level:0 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : CCMP Authentication Suites (1) : PSK Extra: Last beacon: 7408ms ago $iwconfig eth1 eth1 unassociated ESSID:"HackerDojo-gwifi" Nickname:"ipw2100" Mode:Managed Channel=0 Access Point: Not-Associated Bit Rate:0 kb/s Tx-Power:16 dBm Retry short limit:7 RTS thr:off Fragment thr:off Encryption key:off Power Management:off Link Quality:0 Signal level:0 Noise level:0 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0 </code></pre>
4359
null
null
2012-10-30T14:55:55.470
Why can't I connect to a Cisco wireless access point?
[ "10.04", "wireless", "ubuntu-netbook", "cisco" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-07-19T18:34:12.040", "id": "60237", "postId": "22440", "score": "3", "text": "Because Cisco laid off 6,500 people yesterday, most being the miniature elfs that live in your routers to make sure they work correctly and to do maintenance and up keep on them.", "userDisp...
null
[ { "accepted": null, "body": "<p>enable \"guest mode\" for the ssid on the cisco ap and you will recive ;)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-06-02T20:38:19.300", "id": "46643", "lastActi...
null
null
null
null
null
22443
1
22606
2011-01-20T16:55:23.000
2
299
<p>My Launchpad karma has neither increased nor decreased in many days now, despite my being active on the site in that time. I've checked the Launchpad blog and there's no mention of any ongoing maintenance that would affect the functionality of the site.</p> <p>Does anyone know why this might be the case?</p>
null
null
null
2011-01-21T15:13:05.877
Why hasn't my Launchpad karma changed in nearly a week?
[ "launchpad" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It updated itself earlier today with a weeks worth of karma. I don't know what the issue was but it appears to have resolved itself.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T15:13:05.877", "id": "22606", "lastActivityDate": "2011-01-21T15:13:05.877", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "user2405", "ownerUserId": null, "parentId": "22443", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Looking at your Launchpad <a href=\"https://launchpad.net/~notgary/+karma\" rel=\"nofollow\">actions history</a>, all your actions this week happened less that 24 hours ago, perhaps Launchpad has not yet done its <a href=\"https://help.launchpad.net/YourAccount/Karma\" rel=\"...
null
null
null
null
user2405
22448
1
22487
2011-01-20T17:20:17.977
6
15522
<p>I wanted to use Monaco.ttf with IntelliJ. Unfortunately it doesn't show up.</p> <p>I also noticed that the Monaco font doesn't appear in the list of fonts got from awt:</p> <pre><code>java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames() </code></pre> <p>I installed Monaco.ttf in /usr/share/fonts/truetype/osx</p> <p>I also tried to copy it in <code>/usr/lib/jvm/java-6-sun/jre/lib/fonts</code> and even tried to manually update the <code>/usr/lib/jvm/java-6-sun/jre/lib/fonts/fonts.dir</code> file</p> <p>I restarted the jvm at each try, but the fonts is not visible from the sun jdk.</p> <p>All other applications see that font (even eclipse, which is in java but uses the SWT library)</p> <p>Does anybody know how to make jdk see additional fonts?</p>
1943
1067
2011-01-20T19:36:54.230
2011-01-26T14:03:37.697
Not all TTF fonts visible from the (Sun) JDK
[ "fonts", "java", "jdk" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The problem is with the Monaco font itself, it doesn't seem to have appropriate metadata and is a hacky port, so Java doesn't recognize it. Probably you can find some other version of this TTF file which will work better or try to fix it yourself using FontForge.</p>\n\n<p><a href=\"http://youtrack.jetbrains.net/issue/IDEA-57233#comment=27-181428\" rel=\"nofollow\">See also my comment</a> in the IntelliJ IDEA issue tracker.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T20:12:42.440", "id": "22487", "lastActivityDate": "2011-01-20T20:12:42.440", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9280", "parentId": "22448", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Have you tried calling:</p>\n\n<pre><code>java.awt.GraphicsEnvironment.getAllFonts()\n</code></pre>\n\n<p>It seems that the Java font system is kinda messed up:</p>\n\n<p><a href=\"http://www.sabi.co.uk/Notes/linuxFonts.html#fontSwJava\" rel=\"nofollow\">http://www.sabi.co.uk...
null
null
null
null
null
22452
1
22453
2011-01-20T17:37:21.527
0
177
<p>I have a 50 gb partition that needs to be manually paritioned, how should I do this?</p> <p>I need to know what partitions to make, and what size they should be.</p>
3889
3889
2011-01-20T17:53:29.483
2011-01-20T18:08:11.140
I need to manually parition a HD to install
[ "11.04", "partitioning", "installation" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T17:42:35.997", "id": "24252", "postId": "22452", "score": "4", "text": "Why does it need to be manually partitioned? What are you trying to achieve?", "userDisplayName": null, "userId": "449" }, { "creationDate": "2011-01-20T17:51:36.693", "id": ...
{ "accepted": true, "body": "<p>Delete The partition and Make a Partition form the Unpartitioned Space!</p>\n\n<p><strong>On Maverick Meerkat:</strong></p>\n\n<p>On the partitioning screen <strong>Click Specify Partitions Manually(advanced)</strong> Just delete the partition and then Select the Unallocated Space and click 'New' Now just enter the size and the other thing you would enter at the install menus.</p>\n\n<p>'/' should be 8GB at least, that is what I recommend.</p>\n\n<p>Hope I was a good help :)</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-01-20T17:53:05.257", "id": "24254", "postId": "22453", "score": "0", "text": "Sorry I will fix my questions to be more specific, I guess what I was looking for was recommendations on what size to make the various partitions for Ubuntu, and what all is required.. such as root/home or whatever", "userDisplayName": null, "userId": "3889" }, { "creationDate": "2011-01-20T18:00:47.213", "id": "24255", "postId": "22453", "score": "0", "text": "You would need To have at a max a '/' partition of 8GB. Then Make the rest '/home' With using a separate partition on home you can keep all your settings and don't worry about loosing things when You upgrade :).", "userDisplayName": null, "userId": "456" }, { "creationDate": "2011-01-20T18:02:44.997", "id": "24257", "postId": "22453", "score": "0", "text": "so if 8 is the max, what is the min?", "userDisplayName": null, "userId": "3889" }, { "creationDate": "2011-01-20T18:05:13.850", "id": "24259", "postId": "22453", "score": "0", "text": "Oh sorry, I think 6 is the Min, but you are pushing it. I recommend 8 GB. I will fix the post :)", "userDisplayName": null, "userId": "456" }, { "creationDate": "2011-01-20T18:13:59.030", "id": "24265", "postId": "22453", "score": "0", "text": "It just seems that 8gb is a lot of space to have for the root drive... but I guess that is where the OS and all the apps go, so maybe it isn't", "userDisplayName": null, "userId": "3889" }, { "creationDate": "2011-01-20T18:19:07.430", "id": "24267", "postId": "22453", "score": "0", "text": "Yup, All the apps go in /opt and /etc and '/' is under that zone. So It makes sense!", "userDisplayName": null, "userId": "456" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T17:43:36.257", "id": "22453", "lastActivityDate": "2011-01-20T18:07:46.780", "lastEditDate": "2011-01-20T18:07:46.780", "lastEditorDisplayName": null, "lastEditorUserId": "456", "ownerDisplayName": null, "ownerUserId": "456", "parentId": "22452", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Delete The partition and Make a Partition form the Unpartitioned Space!</p>\n\n<p><strong>On Maverick Meerkat:</strong></p>\n\n<p>On the partitioning screen <strong>Click Specify Partitions Manually(advanced)</strong> Just delete the partition and then Select the Unallocated ...
null
0
null
null
null
22454
1
23140
2011-01-20T17:43:46.230
2
188
<p>Where to check the updated packages or new packages list in launchpad</p>
5874
570
2011-01-25T02:08:05.677
2011-01-25T02:08:05.677
Where to check the updated packages or new packages list in Launchpad?
[ "launchpad" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T18:29:03.210", "id": "24273", "postId": "22454", "score": "0", "text": "Just run Update Manager and click \"check\".", "userDisplayName": null, "userId": "9061" } ]
{ "accepted": true, "body": "<p>Each upload to the Ubuntu archive is announced via a mailing list. They are also available via RSS.</p>\n\n<ul>\n<li><a href=\"https://lists.ubuntu.com/archives/natty-changes/\" rel=\"nofollow\">Ubuntu Natty</a> (<a href=\"http://feeds.ubuntu-nl.org/NattyChanges\" rel=\"nofollow\">RSS</a>)</li>\n<li><a href=\"https://lists.ubuntu.com/archives/maverick-changes/\" rel=\"nofollow\">Maverick</a> (<a href=\"http://feeds.ubuntu-nl.org/MaverickChanges\" rel=\"nofollow\">RSS</a>)</li>\n</ul>\n\n<p>These are of course very high volume. Even after the release, all uploads to the proposed and security archives are announced.</p>\n\n<p><a href=\"http://www.ubuntuupdates.org/\" rel=\"nofollow\">UbuntuUpdates.org</a> is a third-party service that also tracks this sort of information, including for specific PPAs:</p>\n\n<ul>\n<li><a href=\"http://www.ubuntuupdates.org/packages/latest_logs?utf8=%E2%9C%93&amp;dist=all+releases&amp;commit=Go&amp;noppa=0\" rel=\"nofollow\">Updates for all releases, including PPAs</a></li>\n<li><a href=\"http://www.ubuntuupdates.org/ppas\" rel=\"nofollow\">List of PPAs tracked by UbuntuUpdates.org</a></li>\n</ul>\n\n<p>Also interesting is <a href=\"https://launchpad.net/builders\" rel=\"nofollow\">Launchpad's build farm</a>. Here you can see what packages are currently building in both PPAs and the official archives.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-25T02:00:59.170", "id": "23140", "lastActivityDate": "2011-01-25T02:06:38.690", "lastEditDate": "2011-01-25T02:06:38.690", "lastEditorDisplayName": null, "lastEditorUserId": "570", "ownerDisplayName": null, "ownerUserId": "570", "parentId": "22454", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>If you have a PPA (Personal Package Archive) on your Software Sources then you need to run \n<code>sudo apt-get update</code></p>\n\n<p>Which update all of your packages. You should then be able to update via Synaptic or Software Center.</p>\n", "commentCount": "1", "...
null
null
null
null
null
22456
1
22465
2011-01-20T17:52:12.823
4
11221
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/16642/what-is-the-best-way-to-partition-and-what-is-the-best-file-system-for-a-new-har">What is the best way to partition, and what is the best file-system for a new Hard Disk?</a> </p> </blockquote> <p>I've got a 2TB external HD on which I save valuable data. so far I'm using NTFS as my file system, but I find it quite slow because I've got lots of files there. (700GB of videos, 20GB of music, etc.)</p> <p>I want to encrypt some of the files (personal) and not the whole partition, and I would like the partition to run smoothly and not as laggy as now. </p> <p>I read about JFS and EXT4 and EXT3 but each of them has got pros and cons. Can someone explain to me which one is the best for my needs?</p>
9274
-1
2017-04-13T12:23:07.557
2014-01-28T16:58:37.877
JFS vs. EXT4 vs. EXT3
[ "partitioning", "ext4", "ntfs", "ext3", "jfs" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T19:07:07.857", "id": "24284", "postId": "22456", "score": "0", "text": "Ext4 can now be read by ext2read (http://sourceforge.net/projects/ext2read/) though ;)", "userDisplayName": null, "userId": "9032" } ]
{ "accepted": true, "body": "<p>Before ext4 came out, I switched my mythtv backend to JFS for all of it's drives simply because JFS offered the best speed vs. CPU usage when dealing with files that were 1G of larger. This was especially true when comparing delete speed with ext3.</p>\n\n<p>The one area I have seen some question is dealing with lots and lots of files being open at the same time. Supposedly JFS does not do as well in this scenario as some of the other options, but for my application (storing lots of video files, with very little concurrent access) this isn't an issue.</p>\n\n<p>I have not compared things with ext4, since I don't really feel like rebuilding the machine at this point, so YMMV.</p>\n\n<p>Of course, the disclaimers of \"if it isn't NTFS, Windows won't read it\" apply.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T18:34:44.480", "id": "22465", "lastActivityDate": "2011-01-20T18:34:44.480", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4435", "parentId": "22456", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>If you need to be able to access the disk from Windows, then you need to stick with NTFS, otherwise go with ext4.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-01-20T18:01:54.453", "id": "24256", "postId": "22457", ...
null
null
2011-06-05T20:37:59.670
null
null
22462
1
null
2011-01-20T18:08:13.173
2
1212
<p>I'm having issues with my broadcom BCM4313 wireless adapter. Everything works just fine when connected (with additional drivers &amp; Connman), but it takes about 5 minutes to connect to my network when i just started my computer! When resuming from hibernation it goes very quick though, so just when I boot my pc it's taking forever...</p> <p>This is what I found in the dmesg output: </p> <pre><code>[ 16.778057] eth1: Broadcom BCM4727 802.11 Hybrid Wireless Controller 5.60.48.36 [ 16.808768] type=1400 audit(1295859939.727:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=833 comm="apparmor_parser" [ 16.808815] type=1400 audit(1295859939.727:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=799 comm="apparmor_parser" [ 16.808825] type=1400 audit(1295859939.727:4): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=826 comm="apparmor_parser" [ 16.809367] type=1400 audit(1295859939.727:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=833 comm="apparmor_parser" [ 16.809415] type=1400 audit(1295859939.727:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=799 comm="apparmor_parser" [ 16.809435] type=1400 audit(1295859939.727:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=826 comm="apparmor_parser" [ 16.809705] type=1400 audit(1295859939.727:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=833 comm="apparmor_parser" [ 16.809755] type=1400 audit(1295859939.727:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=799 comm="apparmor_parser" [ 16.809769] type=1400 audit(1295859939.727:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=826 comm="apparmor_parser" [ 16.844083] alloc irq_desc for 22 on node -1 [ 16.844087] alloc kstat_irqs on node -1 </code></pre> <p>Any ideas how come? Thanks in advance! </p>
9032
169736
2014-01-10T00:08:31.167
2014-01-10T00:27:26.180
Broadcom BCM4313 takes ages to connect
[ "wireless", "broadcom" ]
1
6
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T19:20:45.593", "id": "24288", "postId": "22462", "score": "0", "text": "How did you get the driver working? Is the STA driver, or the B43 firmware from firmware-b43-installer? Also, is it the low power version? If you attach the output of `lspci`, the exact model...
null
[ { "accepted": null, "body": "<p>Start a terminal and run</p>\n\n<pre><code>tail -f /var/log/kern.log\n</code></pre>\n\n<p>Then try connecting to your wifi access point. You should see the attempts appearing in the terminal window as it tries to connect.</p>\n", "commentCount": "3", "comments": [ ...
null
0
2014-01-10T00:27:32.900
null
null
22466
1
23032
2011-01-20T18:38:15.490
6
1556
<p>I've written a patch for Ubiquity and I'd like to test it before I submit it, but I'm not sure how to go about this given the nature of Ubiquity (only used during installation). Is there a way I can build and run it on my own system, or would I have to pull the entire Ubuntu source code and integrate my patch into that, then run a test installation?</p>
null
null
null
2011-11-02T20:31:37.077
How to build and test Ubiquity
[ "development", "ubiquity", "patch" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There are a couple ways to do this.</p>\n\n<ol>\n<li><p>You can install ubiquity and edit the code on your machine (in <code>/usr/lib/ubiquity/*</code>). Then just run it and play around. It will adjust some global machine settings, so be prepared for your language or keyboard to change as you select values. And remember you probably don't want to repartition your hard drive as you're using it (it actually won't let you). But you can partition a thumb drive easily enough.</p></li>\n<li><p>You can burn a Live CD/thumb drive easily enough and run it. During installation, you can do the same trick and edit ubiquity's files in <code>/usr/lib/ubiquity</code> (<kbd>Alt</kbd>+<kbd>Ctrl</kbd>+<kbd>T</kbd> to bring up a Terminal). You may need to kill any existing instances of ubiquity and restart it:</p>\n\n<pre><code>sudo pkill ubiq\n\nubiquity --automatic # automatic because that's what the Live CD uses\n</code></pre></li>\n</ol>\n\n<p>You could also use a virtual machine to test, but that has always been more work than it's worth for me. I usually just use method #1.</p>\n\n<p>Those are the easiest ways. You could also grab the Ubuntu source, edit it, build a new package, install it, and then play with it. But you indicated you wanted to avoid that.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-24T15:01:20.240", "id": "24866", "postId": "23032", "score": "0", "text": "Thanks a lot for the detailed answer. Unfortunately a grep of `/usr/lib/ubiquity/*` didn't turn up the file I'm looking for (it's `debian/ubiquity.templates` in the source). I've has a go at compiling from source, but I'm having problems there as well (see http://askubuntu.com/questions/22500/problem-running-ubiquity-when-compiled-from-source). Perhaps you'd be able to help me with that if it's not too much trouble?", "userDisplayName": "user2405", "userId": null }, { "creationDate": "2011-01-24T16:12:00.753", "id": "24890", "postId": "23032", "score": "0", "text": "It sounds like you may be interested in using \"preseeding\" rather than modifying the template. See https://help.ubuntu.com/10.10/installation-guide/i386/appendix-preseed.html", "userDisplayName": null, "userId": "12" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-24T13:26:37.370", "id": "23032", "lastActivityDate": "2011-11-02T20:31:37.077", "lastEditDate": "2011-11-02T20:31:37.077", "lastEditorDisplayName": null, "lastEditorUserId": "17739", "ownerDisplayName": null, "ownerUserId": "12", "parentId": "22466", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Just install the package, Insert the patch and In a Terminal run:</p>\n\n<pre><code>ubiquity\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-20T19:01:00.017", "id": "24280", "postId": "22467", "sco...
null
null
null
null
user2405
22469
1
null
2011-01-20T18:58:31.207
1
972
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/18751/how-to-encrypt-external-hard-drive-to-be-readable-on-any-os">How to encrypt external hard drive to be readable on any OS?</a> </p> </blockquote> <p>Anyone know any program that works in Ubuntu to encrypt files/disk? I'm looking for something that will ask you for a password to open files when you plug in the pendrive/portable hard disk. If possible, is there any program that can run in both Ubuntu and Windows 7? </p>
9274
-1
2017-04-13T12:24:13.310
2011-01-20T19:36:51.300
Cross platform file/disk encryption
[ "software-recommendation", "encryption" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2015-01-23T23:01:23.047", "id": "796888", "postId": "22469", "score": "0", "text": "Another possible duplicate: http://askubuntu.com/questions/137828/how-to-encrypt-files-using-a-cross-platform-solution", "userDisplayName": null, "userId": "227922" } ]
null
[ { "accepted": null, "body": "<p>You can encrypt a file using GPG: <a href=\"http://www.linuxdynasty.org/how-to-encrypt-file-using-gpg.html\" rel=\"nofollow\">http://www.linuxdynasty.org/how-to-encrypt-file-using-gpg.html</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null...
null
null
2011-06-05T20:36:47.487
null
null
22480
1
22481
2011-01-20T19:37:02.250
3
2729
<p>I have added a patch to the Ubiquity source and am attempting to build and install the package to test it, however I get the following error when I execute <code>./configure</code>,</p> <pre><code>checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for PANEL... yes checking for CHEESE... no configure: error: Package requirements (glib-2.0 gtk+-2.0 &gt;= 2.10.0 gobject-2.0 pygobject-2.0 cheese-gtk) were not met: No package 'cheese-gtk' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables CHEESE_CFLAGS and CHEESE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. </code></pre> <p>This is a truncated version - there's far more that came before this, but this is where the error occurred.</p> <p>I have no idea where to start with this. I tried checking <code>man pkg-config</code>, but that didn't really help, except I now have a vague understanding of what pkg-config is supposed to do. None of the packages listed as being missing can be found by <code>apt-get</code>. I got <code>cheese</code> (different from <code>cheese-gtk</code> apparently) installed, but that hasn't helped. I would really appreciate some help troubleshooting this.</p>
null
null
2011-01-20T21:12:49.980
2011-01-20T21:48:54.350
Error when running ./configure on Ubiquity source
[ "install-from-source", "pkg-config" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T19:42:13.493", "id": "24296", "postId": "22480", "score": "4", "text": "Try installing libcheese-gtk-dev", "userDisplayName": null, "userId": "235" } ]
{ "accepted": true, "body": "<p>Install <code>libcheese-gtk-dev</code>, and it'll work. Also, when building from source, it's a good idea to run <code>apt-get build-dep &lt;package-name&gt;</code> before building from source a package that is also available in the repositories (including any third-party repositories you have activated). This will pull in all the packages upon which the building of the package is dependent. Thanks to Jorge Castro's comment and <a href=\"https://askubuntu.com/questions/22480/error-when-running-configure-on-ubiquity-source/22501#22501\">andrewsomething's answer</a> for this.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T19:45:05.907", "id": "22481", "lastActivityDate": "2011-01-20T21:48:54.350", "lastEditDate": "2017-04-13T12:24:48.743", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": "user2405", "ownerUserId": null, "parentId": "22480", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Install <code>libcheese-gtk-dev</code>, and it'll work. Also, when building from source, it's a good idea to run <code>apt-get build-dep &lt;package-name&gt;</code> before building from source a package that is also available in the repositories (including any third-party rep...
null
null
null
user2405
user2405
22486
1
23633
2011-01-20T20:03:10.413
17
4268
<p>Why does Unity hide the menubars by default, instead of showing them in the free space across the panel?</p>
8724
667
2011-01-20T22:30:42.893
2013-02-20T10:16:07.083
Why does Unity hide the menubar?
[ "unity", "11.04" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T21:52:26.700", "id": "24314", "postId": "22486", "score": "0", "text": "I think that the netbook version of Unity does show the menu bar in the panel. If you're referring to the desktop version of Unity, being developed for Natty, then this question might be a dupl...
{ "accepted": true, "body": "<p>One of the design goals of Unity is to reduce the clutter of the desktop, another is to use space more efficiently.</p>\n\n<p>We hide the menu by default in Unity because the menu provides no useful information to which you can refer just by looking at it, but it puts a lot of detail on the screen which is visual clutter. So, we've taken the view that the menu is there if you need it (by moving the mouse to it or pressing Alt) but otherwise isn't in your view.</p>\n\n<p>Many modern applications are doing without a menu altogether, so in our view, this is a step towards the future, and it will encourage application developers to think about their interfaces and make them more usable by design rather than depending on the crutch of a menu.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-03-28T23:22:46.633", "id": "36438", "postId": "23633", "score": "13", "text": "\"We hide the menu by default in Unity because the menu provides no useful information to which you can refer just by looking at it\"\n\nThat's not true. It tells me where I have to move the mouse pointer to activate a specific menu. Now I have to move the mouse pointer vertically to the menubar first, and then I have to move it horizontally to reach the specific menu. If the menubar were always visible, I could move it to the right position directly.", "userDisplayName": null, "userId": "13191" }, { "creationDate": "2011-08-09T08:54:55.197", "id": "63837", "postId": "23633", "score": "6", "text": "I think it's pretty stupid to split the menu bar from the application. It breaks even the most basic usability guidelines. Removing a menu from its context breaks the principle of least surprise and least effort. It's moronic even if apple has always doe it like this. \n\n(Regardless of whether menu bars are good or bad in term of useability.)\n\nNow, to click on the menu of an inactive window, I need more actions than I used to: [click on window to activate, move to top of screen for menubar, click] instead of just click. It's bad no matter how you justify it", "userDisplayName": null, "userId": "21493" }, { "creationDate": "2014-07-14T00:14:00.893", "id": "666221", "postId": "23633", "score": "0", "text": "\"It will encourage application developers to think about their interfaces and make them more usable by design rather than depending on the crutch of a menu\": while I agree that menu bars are not the best interface design (circular popup menus should be preferred), a lot of apps today still rely on them, and will continue to do so in the foreseeable future (users are used to them and GUI frameworks provide them out of the box). Hiding the menu bar makes me *very* unproductive using graphics software (e.g, Gimp and Inkscape), thus despite a few weeks of Unity trial, I switch back to KDE.", "userDisplayName": null, "userId": "74213" }, { "creationDate": "2014-07-14T00:20:56.780", "id": "666225", "postId": "23633", "score": "0", "text": "@Rörd \"It tells me where I have to move the mouse pointer to activate a specific menu\": agreed, and I will also add that it tells me *what* menus are available. In complex applications that I do not use everyday, I do not always remember in which menu a specific action is available, and having the menu bar displayed at all time saves a lot of time in finding the appropriate menu to aim at, and helps a lot in the learning process.", "userDisplayName": null, "userId": "74213" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-28T02:55:35.353", "id": "23633", "lastActivityDate": "2011-01-28T02:55:35.353", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5287", "parentId": "22486", "postTypeId": "2", "score": "28" }
[ { "accepted": true, "body": "<p>One of the design goals of Unity is to reduce the clutter of the desktop, another is to use space more efficiently.</p>\n\n<p>We hide the menu by default in Unity because the menu provides no useful information to which you can refer just by looking at it, but it puts a lot o...
null
null
null
null
null
22490
1
null
2011-01-20T20:32:40.313
1
1575
<p>I have live Ubuntu (tried also Mint and Kubuntu, same effect) on a USB stick with persistence enabled. My laptop is however very noisy (VGA still on max?). I solved this problem before back with Mint 7 Gloria like:</p> <pre><code>sudo nvidia-xconfig </code></pre> <p><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Backspace</kbd> (restart xserver). VGA then behaved reasonably.</p> <p>I can not reproduce these steps anymore with latest Ubuntu/Kubuntu/Mint.</p> <p>Can the problem be that I'm on a LiveUSB? Is it normal, then when selecting "Additional Drivers" for nVidia they always fail to install (those proprietary)?</p>
9281
18612
2012-03-05T12:59:31.293
2012-03-05T12:59:31.293
Persistent LiveUSB fails to install Nvidia drivers
[ "drivers", "nvidia", "live-usb" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-01-20T21:31:23.653", "id": "24306", "postId": "22490", "score": "1", "text": "Yes, you can not install system packages from live usb installation.", "userDisplayName": null, "userId": "742" }, { "creationDate": "2011-01-20T21:33:38.013", "id": "24307",...
null
[ { "accepted": null, "body": "<p>Yes, you can not install system packages from live usb installation. – João Pinto Jan 20 '11 at 21:31</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2012-03-04T19:53:49.737", "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-03-0...
null
null
null
null
null
22492
1
22523
2011-01-20T20:41:43.240
4
1685
<p>I just built a new machine and installing Acrobat was last step in process. Am running Thinkpad X210 with 10.10 64-bit. I've always been able to reliably open PDFs inline from the web; however, when I launch a PDF, the main Firefox panel goes either white, completely black, or white with black diaganol streaks.</p> <p>Perhaps this is video related... Here's what I have chipset wise</p> <p>VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02)</p> <p>I'm certainly not wed to Acrobat, but I do want to have Firefox with inline PDFs from web.</p>
2692
866
2011-01-20T20:43:42.487
2017-02-23T10:00:16.247
Troubles with Acrobat Reader within Firefox?
[ "10.10", "firefox", "64-bit" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T22:40:16.443", "id": "24323", "postId": "22492", "score": "0", "text": "screenshot please.", "userDisplayName": null, "userId": "1992" } ]
{ "accepted": true, "body": "<p>You could try to embed Evince, the default PDF reader, into Firefox. To do this install the <a href=\"http://packages.ubuntu.com/mozplugger\" rel=\"nofollow noreferrer\">mozplugger</a> package. </p>\n\n<pre><code>sudo apt-get instal mozplugger\n</code></pre>\n\n<p>You can then create a file in the '.mozilla' folder in your home folder called 'mozpluggerrc' and edit the contents to add the following:</p>\n\n<pre><code>application/pdf: pdf: PDF file\napplication/x-pdf: pdf: PDF file\ntext/pdf: pdf: PDF file\ntext/x-pdf: pdf: PDF file\napplication/x-postscript: ps: PostScript file\napplication/postscript: ps: PostScript file\napplication/x-dvi: dvi: DVI file\n : evince $file\n</code></pre>\n\n<p><a href=\"http://mozplugger.mozdev.org/documentation.html\" rel=\"nofollow noreferrer\">Mozplugger Documentation</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-21T22:43:19.367", "id": "24496", "postId": "22523", "score": "0", "text": "This was a good clue to making this work, but I found that I needed to instead modify /etc/mozpluggerrc instead...http://ubuntuguide.net/how-to-view-pdf-files-online-in-firefox-on-ubuntu-9-10karmic", "userDisplayName": null, "userId": "2692" }, { "creationDate": "2011-01-21T23:24:41.887", "id": "24503", "postId": "22523", "score": "0", "text": "That's if you want this to be system wide.", "userDisplayName": null, "userId": "667" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-20T23:12:28.463", "id": "22523", "lastActivityDate": "2017-02-23T10:00:16.247", "lastEditDate": "2017-02-23T10:00:16.247", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "667", "parentId": "22492", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You could try to embed Evince, the default PDF reader, into Firefox. To do this install the <a href=\"http://packages.ubuntu.com/mozplugger\" rel=\"nofollow noreferrer\">mozplugger</a> package. </p>\n\n<pre><code>sudo apt-get instal mozplugger\n</code></pre>\n\n<p>You can the...
null
null
null
null
null
22494
1
null
2011-01-20T20:45:08.613
3
656
<p>I am able to enjoy all of the compiz desktop effects with screen resolution set lower than native, which is 1920X1080. As soon as I switch to this resolution, when I go to change a wallpaper, the screen turns to colored lines or freezes. All other effects work fine. It is only the changing of wallpaper that causes this. I have read that the ATI Xpress 200 GFX card is no longer supported by Linux, but there must be a way to rectify this one problem. Thanks in advance. </p>
null
null
null
2011-03-17T17:27:58.937
How to change wallpaper on 1920X1080 with compiz effects enabled?
[ "compiz" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Are you using the fglrx driver? Using the open source radeon driver might solve your problem.<br>\nCan you log out and log in again after you changed the wallpaper and the coloured lines appeared? Does this solve your problem?</p>\n", "commentCount": "0", "comments": ...
null
null
null
null
Terrance
22498
1
null
2011-01-20T21:03:55.013
2
7482
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/16371/how-to-disable-x-at-boot-time">How to disable X at boot time?</a> </p> </blockquote> <p>How to configure my Ubuntu 10.10 Desktop (Maverick) to start in a Terminal like mode? I don't want any graphics.</p> <p>I can't get rid of GDM. How should I disable only graphical interface of my Ubuntu? I want it to start only in text mode, but I want that everything else would start-up.</p> <p>I can't use recovery mode, because I want that it would run in text mode all the time even after restarts.</p>
9036
-1
2017-04-13T12:24:48.743
2011-01-20T21:44:02.030
How to auto-boot into text mode?
[ "10.10", "boot", "command-line", "gdm" ]
0
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T21:22:47.237", "id": "24303", "postId": "22498", "score": "0", "text": "I don't understand, do you want to run a server?", "userDisplayName": null, "userId": "132" }, { "creationDate": "2011-01-20T21:29:24.767", "id": "24305", "postId": "2249...
null
[]
null
null
2011-01-20T21:50:13.567
null
null
22500
1
23063
2011-01-20T21:12:06.283
1
1302
<p>I've written a patch for Ubiquity that I'm try to test. I've modified the Ubiquity source and successfully run <code>./configure</code>, <code>make</code> and <code>sudo make install</code>, however I'm having problems running it. When I enter <code>ubiquity</code> into the terminal, I am prompted to install it from the repositories. I have searched the <code>/etc/ubiquity</code> directory, but all there is there is a log file generated during the installation.</p> <p>How should I get Ubiquity running? The output of <code>sudo make install</code> is attached below.</p> <pre><code>Making install in desktop make[1]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/desktop' make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/desktop' make[2]: Nothing to be done for `install-exec-am'. test -z "/usr/local/share/applications" || /bin/mkdir -p "/usr/local/share/applications" /usr/bin/install -c -m 644 oem-config-prepare-gtk.desktop oem-config-prepare-kde.desktop ubiquity-gtkui.desktop ubiquity-kdeui.desktop '/usr/local/share/applications' make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/desktop' make[1]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/desktop' Making install in pixmaps make[1]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/pixmaps' make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/pixmaps' make[2]: Nothing to be done for `install-exec-am'. test -z "/usr/local/share/ubiquity/pixmaps" || /bin/mkdir -p "/usr/local/share/ubiquity/pixmaps" /usr/bin/install -c -m 644 world_map-960.png zoom-in.png '/usr/local/share/ubiquity/pixmaps' make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/pixmaps' make[1]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/pixmaps' Making install in po make[1]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/po' linguas="af am an ar ast az be bg bn br bs ca cs csb da de el eo es et eu fa fi fr fy ga gl gu he hi hr hu hy id is it ja ka kk ko ku lb lt lv mk ms nb ne nl nn no oc pl pt pt_BR ro ru sd sk sl sq sr sv ta tg th tl tr uk vi zh_CN zh_HK zh_TW "; \ for lang in $linguas; do \ dir=/usr/local/share/locale/$lang/LC_MESSAGES; \ /bin/bash /home/notgary/Projects/bzr-branches/ubiquity/build/install-sh -d $dir; \ if test -r $lang.gmo; then \ /usr/bin/install -c -m 644 $lang.gmo $dir/ubiquity.mo; \ echo "installing $lang.gmo as $dir/ubiquity.mo"; \ else \ /usr/bin/install -c -m 644 ./$lang.gmo $dir/ubiquity.mo; \ echo "installing ./$lang.gmo as" \ "$dir/ubiquity.mo"; \ fi; \ if test -r $lang.gmo.m; then \ /usr/bin/install -c -m 644 $lang.gmo.m $dir/ubiquity.mo.m; \ echo "installing $lang.gmo.m as $dir/ubiquity.mo.m"; \ else \ if test -r ./$lang.gmo.m ; then \ /usr/bin/install -c -m 644 ./$lang.gmo.m \ $dir/ubiquity.mo.m; \ echo "installing ./$lang.gmo.m as" \ "$dir/ubiquity.mo.m"; \ else \ true; \ fi; \ fi; \ done installing af.gmo as /usr/local/share/locale/af/LC_MESSAGES/ubiquity.mo installing am.gmo as /usr/local/share/locale/am/LC_MESSAGES/ubiquity.mo installing an.gmo as /usr/local/share/locale/an/LC_MESSAGES/ubiquity.mo installing ar.gmo as /usr/local/share/locale/ar/LC_MESSAGES/ubiquity.mo installing ast.gmo as /usr/local/share/locale/ast/LC_MESSAGES/ubiquity.mo installing az.gmo as /usr/local/share/locale/az/LC_MESSAGES/ubiquity.mo installing be.gmo as /usr/local/share/locale/be/LC_MESSAGES/ubiquity.mo installing bg.gmo as /usr/local/share/locale/bg/LC_MESSAGES/ubiquity.mo installing bn.gmo as /usr/local/share/locale/bn/LC_MESSAGES/ubiquity.mo installing br.gmo as /usr/local/share/locale/br/LC_MESSAGES/ubiquity.mo installing bs.gmo as /usr/local/share/locale/bs/LC_MESSAGES/ubiquity.mo installing ca.gmo as /usr/local/share/locale/ca/LC_MESSAGES/ubiquity.mo installing cs.gmo as /usr/local/share/locale/cs/LC_MESSAGES/ubiquity.mo installing csb.gmo as /usr/local/share/locale/csb/LC_MESSAGES/ubiquity.mo installing da.gmo as /usr/local/share/locale/da/LC_MESSAGES/ubiquity.mo installing de.gmo as /usr/local/share/locale/de/LC_MESSAGES/ubiquity.mo installing el.gmo as /usr/local/share/locale/el/LC_MESSAGES/ubiquity.mo installing eo.gmo as /usr/local/share/locale/eo/LC_MESSAGES/ubiquity.mo installing es.gmo as /usr/local/share/locale/es/LC_MESSAGES/ubiquity.mo installing et.gmo as /usr/local/share/locale/et/LC_MESSAGES/ubiquity.mo installing eu.gmo as /usr/local/share/locale/eu/LC_MESSAGES/ubiquity.mo installing fa.gmo as /usr/local/share/locale/fa/LC_MESSAGES/ubiquity.mo installing fi.gmo as /usr/local/share/locale/fi/LC_MESSAGES/ubiquity.mo installing fr.gmo as /usr/local/share/locale/fr/LC_MESSAGES/ubiquity.mo installing fy.gmo as /usr/local/share/locale/fy/LC_MESSAGES/ubiquity.mo installing ga.gmo as /usr/local/share/locale/ga/LC_MESSAGES/ubiquity.mo installing gl.gmo as /usr/local/share/locale/gl/LC_MESSAGES/ubiquity.mo installing gu.gmo as /usr/local/share/locale/gu/LC_MESSAGES/ubiquity.mo installing he.gmo as /usr/local/share/locale/he/LC_MESSAGES/ubiquity.mo installing hi.gmo as /usr/local/share/locale/hi/LC_MESSAGES/ubiquity.mo installing hr.gmo as /usr/local/share/locale/hr/LC_MESSAGES/ubiquity.mo installing hu.gmo as /usr/local/share/locale/hu/LC_MESSAGES/ubiquity.mo installing hy.gmo as /usr/local/share/locale/hy/LC_MESSAGES/ubiquity.mo installing id.gmo as /usr/local/share/locale/id/LC_MESSAGES/ubiquity.mo installing is.gmo as /usr/local/share/locale/is/LC_MESSAGES/ubiquity.mo installing it.gmo as /usr/local/share/locale/it/LC_MESSAGES/ubiquity.mo installing ja.gmo as /usr/local/share/locale/ja/LC_MESSAGES/ubiquity.mo installing ka.gmo as /usr/local/share/locale/ka/LC_MESSAGES/ubiquity.mo installing kk.gmo as /usr/local/share/locale/kk/LC_MESSAGES/ubiquity.mo installing ko.gmo as /usr/local/share/locale/ko/LC_MESSAGES/ubiquity.mo installing ku.gmo as /usr/local/share/locale/ku/LC_MESSAGES/ubiquity.mo installing lb.gmo as /usr/local/share/locale/lb/LC_MESSAGES/ubiquity.mo installing lt.gmo as /usr/local/share/locale/lt/LC_MESSAGES/ubiquity.mo installing lv.gmo as /usr/local/share/locale/lv/LC_MESSAGES/ubiquity.mo installing mk.gmo as /usr/local/share/locale/mk/LC_MESSAGES/ubiquity.mo installing ms.gmo as /usr/local/share/locale/ms/LC_MESSAGES/ubiquity.mo installing nb.gmo as /usr/local/share/locale/nb/LC_MESSAGES/ubiquity.mo installing ne.gmo as /usr/local/share/locale/ne/LC_MESSAGES/ubiquity.mo installing nl.gmo as /usr/local/share/locale/nl/LC_MESSAGES/ubiquity.mo installing nn.gmo as /usr/local/share/locale/nn/LC_MESSAGES/ubiquity.mo installing no.gmo as /usr/local/share/locale/no/LC_MESSAGES/ubiquity.mo installing oc.gmo as /usr/local/share/locale/oc/LC_MESSAGES/ubiquity.mo installing pl.gmo as /usr/local/share/locale/pl/LC_MESSAGES/ubiquity.mo installing pt.gmo as /usr/local/share/locale/pt/LC_MESSAGES/ubiquity.mo installing pt_BR.gmo as /usr/local/share/locale/pt_BR/LC_MESSAGES/ubiquity.mo installing ro.gmo as /usr/local/share/locale/ro/LC_MESSAGES/ubiquity.mo installing ru.gmo as /usr/local/share/locale/ru/LC_MESSAGES/ubiquity.mo installing sd.gmo as /usr/local/share/locale/sd/LC_MESSAGES/ubiquity.mo installing sk.gmo as /usr/local/share/locale/sk/LC_MESSAGES/ubiquity.mo installing sl.gmo as /usr/local/share/locale/sl/LC_MESSAGES/ubiquity.mo installing sq.gmo as /usr/local/share/locale/sq/LC_MESSAGES/ubiquity.mo installing sr.gmo as /usr/local/share/locale/sr/LC_MESSAGES/ubiquity.mo installing sv.gmo as /usr/local/share/locale/sv/LC_MESSAGES/ubiquity.mo installing ta.gmo as /usr/local/share/locale/ta/LC_MESSAGES/ubiquity.mo installing tg.gmo as /usr/local/share/locale/tg/LC_MESSAGES/ubiquity.mo installing th.gmo as /usr/local/share/locale/th/LC_MESSAGES/ubiquity.mo installing tl.gmo as /usr/local/share/locale/tl/LC_MESSAGES/ubiquity.mo installing tr.gmo as /usr/local/share/locale/tr/LC_MESSAGES/ubiquity.mo installing uk.gmo as /usr/local/share/locale/uk/LC_MESSAGES/ubiquity.mo installing vi.gmo as /usr/local/share/locale/vi/LC_MESSAGES/ubiquity.mo installing zh_CN.gmo as /usr/local/share/locale/zh_CN/LC_MESSAGES/ubiquity.mo installing zh_HK.gmo as /usr/local/share/locale/zh_HK/LC_MESSAGES/ubiquity.mo installing zh_TW.gmo as /usr/local/share/locale/zh_TW/LC_MESSAGES/ubiquity.mo make[1]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/po' Making install in ubiquity make[1]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/ubiquity' make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/ubiquity' test -z "/usr/local/lib/python2.6/dist-packages/ubiquity" || /bin/mkdir -p "/usr/local/lib/python2.6/dist-packages/ubiquity" /bin/bash ../libtool --mode=install /usr/bin/install -c _osextras.la '/usr/local/lib/python2.6/dist-packages/ubiquity' libtool: install: /usr/bin/install -c .libs/_osextras.so /usr/local/lib/python2.6/dist-packages/ubiquity/_osextras.so libtool: install: /usr/bin/install -c .libs/_osextras.lai /usr/local/lib/python2.6/dist-packages/ubiquity/_osextras.la libtool: install: /usr/bin/install -c .libs/_osextras.a /usr/local/lib/python2.6/dist-packages/ubiquity/_osextras.a libtool: install: chmod 644 /usr/local/lib/python2.6/dist-packages/ubiquity/_osextras.a libtool: install: ranlib /usr/local/lib/python2.6/dist-packages/ubiquity/_osextras.a libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/python2.6/dist-packages/ubiquity ---------------------------------------------------------------------- Libraries have been installed in: /usr/local/lib/python2.6/dist-packages/ubiquity If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/ubiquity' make[1]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/ubiquity' Making install in src make[1]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src' Making install in panel make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src/panel' make[3]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src/panel' test -z "/usr/local/lib/ubiquity" || /bin/mkdir -p "/usr/local/lib/ubiquity" /bin/bash ../../libtool --mode=install /usr/bin/install -c panel '/usr/local/lib/ubiquity' libtool: install: /usr/bin/install -c panel /usr/local/lib/ubiquity/panel make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src/panel' make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src/panel' Making install in cheese make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src/cheese' make[3]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src/cheese' test -z "/usr/local/lib/python2.6/dist-packages/ubiquity" || /bin/mkdir -p "/usr/local/lib/python2.6/dist-packages/ubiquity" /bin/bash ../../libtool --mode=install /usr/bin/install -c cheese.la '/usr/local/lib/python2.6/dist-packages/ubiquity' libtool: install: /usr/bin/install -c .libs/cheese.so /usr/local/lib/python2.6/dist-packages/ubiquity/cheese.so libtool: install: /usr/bin/install -c .libs/cheese.lai /usr/local/lib/python2.6/dist-packages/ubiquity/cheese.la libtool: install: /usr/bin/install -c .libs/cheese.a /usr/local/lib/python2.6/dist-packages/ubiquity/cheese.a libtool: install: chmod 644 /usr/local/lib/python2.6/dist-packages/ubiquity/cheese.a libtool: install: ranlib /usr/local/lib/python2.6/dist-packages/ubiquity/cheese.a libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/sbin" ldconfig -n /usr/local/lib/python2.6/dist-packages/ubiquity ---------------------------------------------------------------------- Libraries have been installed in: /usr/local/lib/python2.6/dist-packages/ubiquity If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- test -z "/usr/local/share/pygobject/2.0/defs" || /bin/mkdir -p "/usr/local/share/pygobject/2.0/defs" /usr/bin/install -c -m 644 cheese.defs '/usr/local/share/pygobject/2.0/defs' make[3]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src/cheese' make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src/cheese' make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src' make[3]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity/src' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src' make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src' make[1]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity/src' make[1]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity' make[2]: Entering directory `/home/notgary/Projects/bzr-branches/ubiquity' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity' make[1]: Leaving directory `/home/notgary/Projects/bzr-branches/ubiquity' </code></pre>
null
null
2011-01-20T21:52:18.853
2011-01-24T16:17:20.873
Problem running Ubiquity when compiled from source
[ "ubiquity", "install-from-source" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-20T21:27:34.393", "id": "24304", "postId": "22500", "score": "0", "text": "Did you check from the \"make install\" output that the binary was install into /usr/bin an not into other location ?", "userDisplayName": null, "userId": "742" }, { "creationDat...
{ "accepted": true, "body": "<p>In general, I would not recommend installing an Ubuntu package using make/make install.</p>\n\n<p>The general advice would be to do the following:</p>\n\n<pre><code>apt-get source ubiquity\ncd ubiquity-*\ndebuild # this will take a long time\nsudo dpkg -i ../ubiquity*.deb ../ubiquity-ubuntu-artwork*.deb ../ubiquity-frontend-gtk*.deb\n</code></pre>\n\n<p>See the wiki for more (too much) information about building packages: <a href=\"https://wiki.ubuntu.com/PackagingGuide/Complete#Building%20the%20Package%20Locally%20%28Binary%20Only%29\" rel=\"nofollow\">https://wiki.ubuntu.com/PackagingGuide/Complete#Building%20the%20Package%20Locally%20%28Binary%20Only%29</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-24T16:17:20.873", "id": "23063", "lastActivityDate": "2011-01-24T16:17:20.873", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "12", "parentId": "22500", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>You are installing ubiquity into the wrong place, it is expected to be installed into /usr, many source configure scripts use /usr/local to prevent you from installing over an existing packaged version.\nYou should be able to run ubiquity with: </p>\n\n<pre><code>/usr/local/b...
null
null
null
user2405
user2405
22504
1
null
2011-01-20T21:46:42.387
1
1312
<p>I installed Ubuntu 10.10 on my shiny new ASRock Vison 3D with no apparent problems. Still I need some Windows-only software from time to time and went on installing Win7 afterwards. Now Win7 happily boots but apparently has not bothered with creating a boot menu...</p> <p>I assume that using a Ubuntu 10.10 Live-CD there should be a way to create a </p>
9284
235
2011-01-21T00:33:29.940
2011-01-21T00:33:29.940
Boot menu doesn't show up after installing Windows 7
[ "10.10", "dual-boot", "windows-7", "grub2" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Always install Ubuntu <strong>after</strong> installing windows as Windows tends to overwrite the Bootloader thus preventing you from booting into ubuntu. However you can solve this by following the instructions given <a href=\"https://help.ubuntu.com/community/RecoveringUbun...
null
null
null
null
null
22505
1
null
2011-01-20T21:58:11.590
1
272
<p>I normally do all my installs via PXE server, but I'm building a custom CD for kvm installs that are not on the same vlan as my PXE server. I would prefer this CD was as small as possible and it fetched packages from the network like netinstall mini.iso CD does, but netinstall doesn't mount /cdrom like the server install CD does. I need the cdrom for preseed.</p> <p>I've got my custom server install CD working, but it is still ~700MB. Trying to modify "dists/lucid/main/binary-amd64/Packages.gz" gives me no love as it complains that I've got a corrupt Packages.gz no matter what I do. I'd rather the preseeded mirror was used rather than CD once it gets the cdrom setup. Any ideas?</p>
7443
186134
2015-10-26T23:30:19.713
2015-10-26T23:30:19.713
How do I reduce package content on a custom install CD?
[ "system-installation" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You need to also regenerate the Releases.gpg file. See <a href=\"https://help.ubuntu.com/community/InstallCDCustomization\" rel=\"nofollow\">https://help.ubuntu.com/community/InstallCDCustomization</a></p>\n", "commentCount": "1", "comments": [ { "creati...
null
null
null
null
null
22507
1
22519
2011-01-20T22:18:33.000
2
502
<p>Does anyone know why I'm unable to change notification settings using pynotify?</p> <p>I can create a notification, modify it (for example so it should show up in the middle of my display), and tell it to display, but it still shows up in the upper-right corner.</p> <p>And if this is configurable, anyone know how to do so?</p> <p>I'm running Ubuntu 10.10, using fluxbox.</p> <p>Here is the function that displays the notification:</p> <pre><code>def displayNotification(msg): """Display the given notification.""" if not pynotify.init("hey"): displayError("Unable to initialize notification library...") n = pynotify.Notification("Hey!", msg) n.set_hint("x",400) n.set_hint("y",400) n.set_timeout(2 * 3600 * 1000) if not n.show(): displayError("Unable to show notification...") </code></pre> <p>This worked exactly as expected under Arch Linux, before I switched to Ubuntu.</p>
8467
null
null
2011-01-20T22:39:25.150
Does Ubuntu prevent customization of pynotify notifications?
[ "customization", "notify-osd", "libnotify" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Notify-OSD does not allow for customization by default (extremely frustrating I know) - but it is so by design. You would need to use another notification method to get the same positioning and other options.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-01-20T22:54:08.357", "id": "24328", "postId": "22519", "score": "1", "text": "So pynotify falls under notify-osd?", "userDisplayName": null, "userId": "8467" }, { "creationDate": "2011-01-20T23:05:07.407", "id": "24330", "postId": "22519", "score": "0", "text": "from what you describe, yes.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2012-02-18T16:22:23.677", "id": "122070", "postId": "22519", "score": "0", "text": "pynotify is used for communicating with the desktop notification system. If you are running notify-osd (default in ubuntu) then it will use that. If you stop notify-osd and start another notification system (e.g. notification-daemon (the old one) or xfce4-notifyd) then pynotify will use that.", "userDisplayName": null, "userId": "139" }, { "creationDate": "2012-02-18T17:04:44.970", "id": "122094", "postId": "22519", "score": "1", "text": "@RoryMcCann: Lol, I'm aware of that, I was answering his question based on what he asked.", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2012-02-18T18:25:15.177", "id": "122120", "postId": "22519", "score": "1", "text": "@RolandTaylor Oh yes, but in case other people are reading this and think the problem is with pynotify per se", "userDisplayName": null, "userId": "139" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T22:39:25.150", "id": "22519", "lastActivityDate": "2011-01-20T22:39:25.150", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "22507", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Notify-OSD does not allow for customization by default (extremely frustrating I know) - but it is so by design. You would need to use another notification method to get the same positioning and other options.</p>\n", "commentCount": "5", "comments": [ { ...
null
null
null
null
null
22509
1
null
2011-01-20T22:21:44.773
3
1440
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/79302/how-do-i-know-if-my-serial-adapter-card-is-working">How do I know if my serial adapter card is working?</a> </p> </blockquote> <p>I should connect to a Cisco Router by serial port, someone suggested me to use an usb-adapter, I did it. Of following, I show you the screen of the commands lsusb and dmesg</p> <p>lsusb:</p> <pre><code>Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 002: ID 03f0:171d Hewlett-Packard Wireless (Bluetooth + WLAN) Interface [Integrated Module] Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub ***Bus 003 Device 003: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC*** Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 007: ID 12d1:1001 Huawei Technologies Co., Ltd. E620 USB Modem Bus 001 Device 003: ID 05ca:1810 Ricoh Co., Ltd Pavilion Webcam [R5U870] Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub </code></pre> <p>dmesg | grep usb</p> <pre><code>[10305.290155] usb 3-1: USB disconnect, address 2 [10309.642637] usb 3-1: new full speed USB device using uhci_hcd and address 3 [10309.851294] usb 3-1: Detected FT232RL [10309.851299] usb 3-1: Number of endpoints 2 [10309.851304] usb 3-1: Endpoint 1 MaxPacketSize 64 [10309.851308] usb 3-1: Endpoint 2 MaxPacketSize 64 [10309.851312] usb 3-1: Setting MaxPacketSize 64 [10309.852239] usb 3-1: FTDI USB Serial Device converter now attached to ttyUSB0 </code></pre> <p>I've installed minicom and configured it inserting /dev/ttyUSB0 as port and set the Bps/Par/Bits with the value 9600 8N1 </p> <p>I've tried to connect to it but minicom doesn't work.</p> <p>someone can help me????I don't want to use windows with putty!!!! thank you in advance.</p>
9285
-1
2017-04-13T12:25:03.423
2011-01-21T00:41:27.887
How to access to cisco's serial port using an usb-adapter?
[ "usb", "cisco", "serial-port" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
null
2012-08-25T13:01:31.267
null
null
22510
1
null
2011-01-20T22:25:29.810
13
1423
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/87111/if-i-build-a-package-from-source-how-can-i-uninstall-or-remove-completely">If I build a package from source how can I uninstall or remove completely?</a> </p> </blockquote> <p>I know that Ubuntu has come a long way in helping new users to get used to their linux system..and making things as easy as possible. One most important aspect is installing and uninstalling applications in ubuntu. Thanks to Ubuntu Software Center it is a breeze!</p> <p>However I noticed that when I compiled and installed a game from its source (battleship), it does not appear under the history tab in the Ubuntu Software Center. And also you cannot uninstall it through the software center but have to resort to the command line to do this. I do not mind doing it however I am sure some other users might not be comfortable with this.</p> <p>Is this a bug? </p>
5855
-1
2017-04-13T12:25:03.423
2011-02-14T05:54:45.440
Uninstalling application built from source
[ "software-center", "uninstall", "install-from-source" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-11-03T09:49:52.343
null
null
22512
1
22522
2011-01-20T22:32:54.287
25
11655
<p>When I log into my user account on Ubuntu 10.10, there is a unsatisfying delay before my system becomes usable. Even launching a terminal, I have to wait a few seconds before the bash prompt appears. During this start-up period, the top process seems to be dropbox. I'm not sure what it's doing exactly (functionality is still fine as far as I can see), but I do know it really doesn't need to be doing it while I'm waiting for desktop to appear. (This is the standard Ubuntu with Gnome desktop, by the way.)</p> <p>What I would like to do is to be able to have a static or even dependency-based delay for dropbox to start. It would be nice if it waited for, e.g., 10 minutes, or for my browser tabs to load and a typing pause. Then it could churn away on file status or cache-chewing, and I would be happy. </p> <p>Is there a way to do this? Thanks!</p>
8844
null
null
2013-09-09T21:39:59.740
How can I delay dropbox from starting, but not disable it?
[ "startup", "login", "dropbox" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>First, disable Dropbox from starting on login.<br>\nOpen up the DropBox preferences and uncheck <em>Start Dropbox on system startup</em>: </p>\n\n<p><img src=\"https://i.stack.imgur.com/Pl69r.png\" alt=\"enter image description here\"></p>\n\n<p>Now we will manually add Dropbox to the list of applications that run on login.<br>\n Open up <em>System ➜ Preferences ➜ Startup Applications</em> and click on <em>Add</em> to add a new entry. </p>\n\n<p>Use <code>Dropbox</code> for the name and <code>bash -c \"sleep 10m &amp;&amp; dropbox start -i\"</code> for the command, and then click <em>Add</em> to save it.</p>\n\n<p><img src=\"https://i.stack.imgur.com/Ufm85.png\" alt=\"enter image description here\"></p>\n\n<p>That's it, now Dropbox won't start until 10 minutes after you have logged in.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-26T21:57:17.370", "id": "25346", "postId": "22522", "score": "2", "text": "It doesn't work for me. For some reason, the command reverts to the default after a reboot.", "userDisplayName": "user9671", "userId": null }, { "creationDate": "2011-01-26T22:05:47.363", "id": "25348", "postId": "22522", "score": "1", "text": "@Alex, see my updated answer. It turns out dropbox overwrites the `.desktop` autostart file every time it is run.", "userDisplayName": null, "userId": "114" }, { "creationDate": "2012-08-08T09:36:34.393", "id": "213670", "postId": "22522", "score": "2", "text": "Very useful, but remove the _- i_ option in order to avoid dropbox reinstalling itself at startup", "userDisplayName": null, "userId": "40071" }, { "creationDate": "2014-06-28T08:13:20.690", "id": "653643", "postId": "22522", "score": "0", "text": "Worked for transmission, but dropbox just didn't start. Bit unusual.", "userDisplayName": null, "userId": "151821" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T23:09:37.393", "id": "22522", "lastActivityDate": "2011-01-26T22:29:18.370", "lastEditDate": "2011-01-26T22:29:18.370", "lastEditorDisplayName": null, "lastEditorUserId": "114", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "22512", "postTypeId": "2", "score": "28" }
[ { "accepted": true, "body": "<p>First, disable Dropbox from starting on login.<br>\nOpen up the DropBox preferences and uncheck <em>Start Dropbox on system startup</em>: </p>\n\n<p><img src=\"https://i.stack.imgur.com/Pl69r.png\" alt=\"enter image description here\"></p>\n\n<p>Now we will manually add Dropb...
null
null
null
null
null
22520
1
null
2011-01-20T22:40:06.250
1
249
<p>This is on Ubuntu 10.10 Desktop Edition 64-bit.</p> <p>Yesterday I installed kubuntu-desktop to give it a a try. I liked it, but decided to uninstall it. I followed these instructions: <a href="http://www.psychocats.net/ubuntu/puregnome" rel="nofollow">http://www.psychocats.net/ubuntu/puregnome</a></p> <p>It all went smoothly until I restarted. Now, after the splash screen (which changed back to the default one instead of the one I had before, which was caused by installing ATI drivers), the screen goes black and nothing happens. I tried a verbose boot but the text output stops at this point. The strange thing is, though, that LiveUSBs do not work either. I tried two, one that just remains on the splash screen and another that gets a black screen after boot. These LiveUSBs do work, I have tried them on different machines and on this computer in the past. Recovery mode works, as does booting my Windows 7 partition.</p> <p>Any help would be greatly appreciated!</p>
null
null
null
2011-05-23T19:53:00.073
Strange booting problems
[ "boot", "live-usb" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The Live USBs work now, I don't know what was wrong before. I am just going to install Mint instead.</p>\n\n<p>Thanks anyway!</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-21T08:41:38.327", "id": "24379", "postId":...
null
null
null
null
Anonymous
22521
1
22527
2011-01-20T22:55:16.340
10
1007
<p>Today Linus Torvalds announced the 2.6.38 RC1 Linux Kernel. I know that maybe this kernel will be ready near the date for Natty release and in that case it's inclusion could affect Ubuntu's stability and performance, but looking at <a href="http://kernel.ubuntu.com/~kernel-ppa/mainline/" rel="nofollow">this repo</a> I found that there is a repo for Natty..</p> <p>According to the announcement, the improvement for this kernel are really important, in some cases 30% better performance, so my question is if Natty will include this Linux Kernel's version or not? Just I don't know and I wanted to ask.</p> <p>Regards my friends!</p>
4946
570
2011-01-21T04:34:56.700
2011-02-03T18:11:52.490
Will Natty Narwhall include Linux 2.6.38?
[ "kernel", "11.04" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Natty is now using to 2.6.38.</p>\n\n<p>According to the kernel team's <a href=\"https://wiki.ubuntu.com/KernelTeam/Specs/KernelNattyVersionAndFlavours\" rel=\"nofollow\">wiki</a>:</p>\n\n<blockquote>\n <p>As\n Natty is not an LTS we do not require\n a specific version for alignment\n upstream. Therefore we will be using\n the latest version released at kernel\n freeze.</p>\n</blockquote>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-20T23:37:01.483", "id": "24335", "postId": "22527", "score": "0", "text": "2.6.38 is due by the beginning of April so this should be fine.", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T23:33:04.983", "id": "22527", "lastActivityDate": "2011-02-03T18:11:52.490", "lastEditDate": "2011-02-03T18:11:52.490", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "8036", "parentId": "22521", "postTypeId": "2", "score": "16" }
[ { "accepted": true, "body": "<p>Natty is now using to 2.6.38.</p>\n\n<p>According to the kernel team's <a href=\"https://wiki.ubuntu.com/KernelTeam/Specs/KernelNattyVersionAndFlavours\" rel=\"nofollow\">wiki</a>:</p>\n\n<blockquote>\n <p>As\n Natty is not an LTS we do not require\n a specific version for...
null
null
null
null
null
22525
1
22526
2011-01-20T23:26:31.823
0
163
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/19639/why-does-documentation-tell-me-i-am-running-11-04-when-it-is-10-10">Why does documentation tell me I am running 11.04 when it is 10.10?</a> </p> </blockquote> <p>Hi,</p> <p>I recently reinstalled my computer from a freshly downloaded CD. I did not select at any time to get an experimental version or beta. But right after the installation (and updating) <code>System -&gt; About Ubuntu</code> tells me that:</p> <blockquote> <p>You are using Ubuntu 11.04 - the Natty Narwhal - released in April 2011 and supported until October 2012.</p> </blockquote> <p>Why is that so?</p> <p>When I check <code>Software Sources</code> there are no pre-released updated enabled or other channels.</p> <p>Is this jut a Bug in <code>About Ubuntu</code> or am I really running 10.04.</p> <p>I got some sound, graphics and application issues, so I'm wondering if this could be the reason.</p>
8642
-1
2017-04-13T12:24:29.360
2011-01-20T23:28:32.977
About Ubuntu shows wrong release
[ "10.10", "11.04", "versions" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>What you are searching is this: <a href=\"https://askubuntu.com/questions/19639/why-does-documentation-tell-me-i-am-running-11-04-when-it-is-10-10\">Why documentation says release is 11.04 instead of 10.10</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-20T23:41:13.897", "id": "24338", "postId": "22526", "score": "0", "text": "When items are duplicates please flag or vote to close as duplicate instead of posting an answer.", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-20T23:28:32.977", "id": "22526", "lastActivityDate": "2011-01-20T23:28:32.977", "lastEditDate": "2017-04-13T12:24:48.743", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "22525", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>What you are searching is this: <a href=\"https://askubuntu.com/questions/19639/why-does-documentation-tell-me-i-am-running-11-04-when-it-is-10-10\">Why documentation says release is 11.04 instead of 10.10</a></p>\n", "commentCount": "1", "comments": [ { ...
null
null
2011-01-20T23:41:21.137
null
null
22528
1
22647
2011-01-20T23:49:44.627
14
8776
<p>Running the <code>lastlog</code> command correctly lists all users on my system (same as <code>/etc/passwd</code> entries). However all are marked as <code>**Never logged in**</code>, including the account I'm currently logged in to. I noticed that my <code>/var/log/lastlog</code> file is also empty.</p> <p><strong>Edit</strong>: <code>/var/log/lastlog</code> is <em>not</em> empty, it is a binary file and I was trying to <code>cat</code> it, causing nothing to display. <code>less</code> displays a binary file.</p> <p>Does anyone have any insight as to why this would happen? I've never manually edited <code>/var/log/lastlog</code>.</p> <p><strong>Edit</strong>: Output of <code>ls -al /var/log/lastlog</code>:</p> <blockquote> <p>-rw-rw-r-- 1 root utmp 292584 2010-05-12 18:14 /var/log/lastlog</p> </blockquote>
8036
8036
2011-01-21T02:18:35.620
2022-08-09T17:04:27.477
Why does lastlog show every user as never having logged in?
[ "10.04" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T00:08:50.013", "id": "24339", "postId": "22528", "score": "0", "text": "Did you check that you have free space on your /var containing filesystem ? Also please add the output from: ls -la /var/log/lastlog", "userDisplayName": null, "userId": "742" }, { ...
{ "accepted": true, "body": "<p>Login via gdm is not logged in lastlog. In this respect <code>ck-history --last</code> might give you more information.</p>\n\n<p>To test this, go to a console (Ctrl+Alt+F1), log in, then come back to Gnome (Alt+F7) and check the output of <code>lastlog</code>. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-21T23:19:44.577", "id": "24502", "postId": "22647", "score": "0", "text": "You're right - it was my misunderstanding of what `lastlog` does. Thanks.", "userDisplayName": null, "userId": "8036" }, { "creationDate": "2011-01-22T13:34:49.413", "id": "24570", "postId": "22647", "score": "0", "text": "The man page isn't very clear about why lastlog won't work on a gdm system, but arrange's use of `ck-history --last` works well, especially if you pipe that to `grep tty7`. Thanks!", "userDisplayName": null, "userId": "861" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T19:06:48.763", "id": "22647", "lastActivityDate": "2011-01-22T03:10:06.080", "lastEditDate": "2011-01-22T03:10:06.080", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "9340", "parentId": "22528", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>Login via gdm is not logged in lastlog. In this respect <code>ck-history --last</code> might give you more information.</p>\n\n<p>To test this, go to a console (Ctrl+Alt+F1), log in, then come back to Gnome (Alt+F7) and check the output of <code>lastlog</code>. </p>\n", "...
null
null
null
null
null
22532
1
22533
2011-01-21T00:43:38.200
3
257
<p>When taking a screenshot with a delay, <a href="http://shutter-project.org/" rel="nofollow noreferrer">Shutter</a> shows the countdown to when the screenshot will be taken, using its own custom notifications <em>(see screenshot)</em>. Is there anyway to make Shutter use the standard notifications?</p> <p><img src="https://i.stack.imgur.com/YGCiB.png" alt="alt text"></p>
114
null
null
2011-01-21T00:44:06.873
Can I make Shutter use standard notifications?
[ "notification", "notify-osd", "shutter" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Open up the Preferences window (Edit -> Preferences or <kbd>Alt</kbd>+<kbd>P</kbd> ) and click on the <em>Behavior</em> tab, change the <em>Notification agent</em> combobox from <em>Built-in</em> to <em>Desktop Notifications</em>. </p>\n\n<p><img src=\"https://i.stack.imgur.com/OYLmu.png\" alt=\"alt text\"></p>\n\n<p>Shutter will now use the standard <em>(In this case Notify OSD)</em> notifications: </p>\n\n<p><img src=\"https://i.stack.imgur.com/Zb7mA.png\" alt=\"alt text\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T00:44:06.873", "id": "22533", "lastActivityDate": "2011-01-21T00:44:06.873", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "114", "parentId": "22532", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Open up the Preferences window (Edit -> Preferences or <kbd>Alt</kbd>+<kbd>P</kbd> ) and click on the <em>Behavior</em> tab, change the <em>Notification agent</em> combobox from <em>Built-in</em> to <em>Desktop Notifications</em>. </p>\n\n<p><img src=\"https://i.stack.imgur....
null
null
null
null
null
22535
1
22566
2011-01-21T01:37:07.793
5
3578
<p>I get little squares for Japanese characters, even after installing a few Japanese packages like <code>openoffice.org-l10n-ja</code>, <code>language-support-fonts-ja</code>, etc.</p> <p>Already tried logging off and restarting OpenOffice, any ideas?</p>
2706
814
2011-02-20T10:20:11.517
2011-02-20T10:20:11.517
How do I get Japanese characters showing correctly in OpenOffice?
[ "10.10", "openoffice.org", "libreoffice" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Do installing full Japanese support help?</p>\n\n<p>Look at the\n<em>System / Administration / Language Support / Install-Remove Languages</em>:</p>\n\n<p><img src=\"https://i.stack.imgur.com/Gsl57.png\" alt=\"installing Japanese language support\"></p>\n\n<p>Don't forget to re-login — or else changes may not get applied.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T07:37:34.297", "id": "22566", "lastActivityDate": "2011-01-21T07:37:34.297", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9061", "parentId": "22535", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Do installing full Japanese support help?</p>\n\n<p>Look at the\n<em>System / Administration / Language Support / Install-Remove Languages</em>:</p>\n\n<p><img src=\"https://i.stack.imgur.com/Gsl57.png\" alt=\"installing Japanese language support\"></p>\n\n<p>Don't forget to ...
null
null
null
null
null
22536
1
22537
2011-01-21T01:46:41.650
7
163
<p><a href="https://bugs.launchpad.net/hundredpapercuts/+bug/638654" rel="nofollow">This bug</a> has had a solution proposed in <a href="https://bugs.launchpad.net/hundredpapercuts/+bug/638654/comments/4" rel="nofollow">comment 4</a> which involves the addition of a new package to the system. How would I bring this to the attention of the developers?</p>
null
9061
2011-01-21T07:41:22.120
2011-01-21T07:41:22.120
How can you suggest the addition of a new package?
[ "package-management", "motu" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2012-04-10T11:56:29.663", "id": "143566", "postId": "22536", "score": "0", "text": "you could try AU chat...there are some people there starting PPAs >.>", "userDisplayName": null, "userId": "5768" }, { "creationDate": "2012-04-10T13:21:24.143", "id": "1435...
{ "accepted": true, "body": "<p><a href=\"https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages\">This page</a> has information on how to request a new package.</p>\n\n<blockquote>\n <p>To get a package into Ubuntu, please <a href=\"https://bugs.launchpad.net/ubuntu/+filebug?no-redirect&amp;field.tag=needs-packaging\">file a bug</a> in Launchpad and make sure it has the tag needs-packaging. Please mention where to get the source for it and which license it is under. An example request is <a href=\"https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages/ExamplePackageRequest\">here</a>. Make sure you check which packages have <a href=\"https://launchpad.net/ubuntu/+bugs?field.tag=needs-packaging\">already been requested</a>.</p>\n</blockquote>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-06-10T10:33:23.607", "id": "179939", "postId": "22537", "score": "0", "text": "Sorry for revisiting such an old question, but is that the same process for requesting the inclusion of new packages on the CD, or is that something different?", "userDisplayName": "user2405", "userId": null }, { "creationDate": "2012-06-11T00:33:08.377", "id": "180306", "postId": "22537", "score": "0", "text": "I think it's different for that, might be worth asking that as a a separate question.", "userDisplayName": null, "userId": "235" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T01:49:15.023", "id": "22537", "lastActivityDate": "2011-01-21T01:49:15.023", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "22536", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p><a href=\"https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages\">This page</a> has information on how to request a new package.</p>\n\n<blockquote>\n <p>To get a package into Ubuntu, please <a href=\"https://bugs.launchpad.net/ubuntu/+filebug?no-redirect&amp;field.tag=needs...
null
null
null
null
user2405
22539
1
23632
2011-01-21T03:31:53.467
1
699
<p>So far when I want to run an application, I click the Ubuntu button (or whatever it's called in the upper left), then Games, then All Applications, then I can either select or search for an application. Is that really the best way? The "Games" part really throws me :)</p>
3906
235
2011-01-28T03:59:23.803
2011-01-28T03:59:23.803
How to search for applications in Unity?
[ "10.10", "unity" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T04:11:01.513", "id": "24355", "postId": "22539", "score": "0", "text": "what is the question?", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-01-21T04:19:41.383", "id": "24356", "postId": "22539", "score": "1", ...
{ "accepted": true, "body": "<p>In Unity, you should be able to:</p>\n\n<ul>\n<li>click on the Apps Place (an icon on the launcher which says \"Applications\")</li>\n<li>enter the name of the app in the search field</li>\n</ul>\n\n<p>... and you should see your app listed there, either as installed or available.</p>\n\n<p>You can also use the Ubuntu button, but then you are searching both applications AND files.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-28T02:51:47.777", "id": "23632", "lastActivityDate": "2011-01-28T02:51:47.777", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5287", "parentId": "22539", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Hi your asking about searching for applications in unity.But in your question say that click ubuntu and etc etc. Are sure about unity ?. As far as i know Unity is available only in ubuntu Net book edition and ubuntu Natty desktop and its variants.Because if use unity you will...
null
null
null
null
null
22540
1
null
2011-01-21T03:51:07.133
2
4455
<p>I'm using the terminal server client in Ubuntu to connect to a Windows machine in another location but I don't get it to work. I wonder what should be the port forwarding setting so I can connect.</p> <p>So far I've managed to connect to a Windows machine on the same house, but what about in another locations?</p>
null
3037
2011-01-23T12:22:12.787
2011-01-23T12:22:12.787
How to set port forwarding to use terminal server client?
[ "command-line", "remote-control" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T07:14:28.407", "id": "24372", "postId": "22540", "score": "0", "text": "What protocol do you use? RDP or VNC?", "userDisplayName": null, "userId": "9061" } ]
null
[ { "accepted": null, "body": "<p>Most likely you use RDP (<a href=\"http://en.wikipedia.org/wiki/Remote_Desktop_Protocol\" rel=\"nofollow\">Remote Desktop Protocol</a>), as it works out of the box in Windows.</p>\n\n<p>RDP uses TCP port 3389 by default; so port forwarding needs to be set up like this:</p>\n\...
null
null
null
null
peter
22542
1
null
2011-01-21T04:24:22.143
1
1363
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/20280/ubuntu-one-sync-for-multiple-folders-not-just-the-ubuntu-one-folder">Ubuntu One Sync for multiple folders, not just the Ubuntu One folder.</a> </p> </blockquote> <p>I'm a total newbie to ubuntu, had a smart computer guy make it so that I'm dual booting ubuntu and vista on one laptop so I can play around with ubuntu and probably eventually switch my whole hard drive over to it. It's great so far. </p> <p>I'm using ubuntu one on, well, ubuntu, and I'm running the beta on windows. On ubuntu I totally understand how to manage it. On windows...not so much. So....how do I sync other folders besides my ubuntuone folder (on windows vista)? </p>
9301
-1
2017-04-13T12:24:13.310
2011-01-21T06:02:12.160
How to sync other files than the ubuntu one folder in Windows?
[ "ubuntu-one", "windows" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>From the UbuntuOne for Windows <a href=\"https://wiki.ubuntu.com/UbuntuOne/Windows#What%20folders%20on%20my%20computer%20can%20I%20sync%20with%20my%20personal%20cloud?\" rel=\"nofollow noreferrer\">FAQ</a>:</p>\n<blockquote>\n<p><b>What folders on my computer can I sync with ...
null
null
2011-01-21T14:39:28.173
null
null
22545
1
null
2011-01-21T04:35:01.067
3
3076
<p>I have a Reliance broadband + mobile broadband connection. It connects fine, but the only problem is it takes more than 2 -3 mins to get the connection started. If I plug in the USB datacard, the network manager applet dothes not show up the mobile broadband connection immediately. It takes a good 2-3 mins to detect the connection before I can select Reliance connection from the dropdown list. Is there any way of getting a shortcut of that connection on the desktop or on the panel?</p> <p>Thanks, Sayantan</p>
9302
null
null
2012-08-26T20:02:29.003
mobile broadband quick connect..how to?
[ "network-manager", "connection", "broadband" ]
6
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T07:11:14.683", "id": "24371", "postId": "22545", "score": "0", "text": "Does the Network Manager search for networks so long or detects and configures the hardware?", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-01-22T21:10:32...
null
[ { "accepted": null, "body": "<p>You can create \"connections\" in Network Manager (right click on its icon, Edit Connections) which would allow quick access to some connections you will likely be repeatedly using.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-01-22...
null
null
null
null
null
22548
1
22569
2011-01-21T04:55:59.353
17
42945
<p>This is a just upgraded Ubuntu 10.04.1 LTS machine.</p> <p>The <code>/dev/mapper/isw_dghbbcaabe_RAID_Volume11</code> is "new" to the upgrade but I don't know what physical drives/partitions are included in the "device".</p> <p>I have tried:</p> <pre><code>root@barabasi:~# blkid /dev/sda1: UUID="8258e116-265a-4797-59d1-fae72a643620" TYPE="swap" /dev/sdb: TYPE="isw_raid_member" /dev/mapper/isw_dghbbcaabe_RAID_Volume11: UUID="1d4721b1-5649-4772-8a03-5c3db81eba1b" TYPE="ext3" /dev/mapper/isw_dghbbcaabe_RAID_Volume15: UUID="b9a639af-dee8-4e0c-90f6-15432efac4f2" TYPE="swap" </code></pre> <p>and</p> <pre><code>root@barabasi:~# ls -alh /dev/disk/by-uuid/ total 0 drwxr-xr-x 2 root root 100 2011-01-14 12:49 . drwxr-xr-x 5 root root 100 2011-01-14 12:49 .. lrwxrwxrwx 1 root root 41 2011-01-14 12:49 1d4721b1-5649-4772-8a03-5c3db81eba1b -&gt; ../../mapper/isw_dghbbcaabe_RAID_Volume11 lrwxrwxrwx 1 root root 10 2011-01-14 12:49 8258e116-265a-4797-59d1-fae72a643620 -&gt; ../../sda1 lrwxrwxrwx 1 root root 41 2011-01-14 12:49 b9a639af-dee8-4e0c-90f6-15432efac4f2 -&gt; ../../mapper/isw_dghbbcaabe_RAID_Volume15 </code></pre> <p>But I still don't know what physical drives are involved.</p>
878
176250
2016-07-14T19:04:40.007
2022-12-20T09:43:16.850
How do I know what physical drives/partitions are behind my /dev/mapper/isw_dghbbcaabe_RAID_Volume11?
[ "10.04", "partitioning", "mount", "raid", "lvm" ]
6
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can use <strong>dmsetup</strong>. Invoke:</p>\n\n<pre><code>$ sudo dmsetup -v table /dev/mapper/isw_dghbbcaabe_RAID_Volume11\n</code></pre>\n\n<p>That will give you a list of sectors which are mapped to another device. In my case (encrypted root partition), I get the following output:</p>\n\n<pre><code>$ sudo dmsetup table /dev/mapper/hacki-mobile \n0 567028121 crypt aes-cbc-essiv:sha256 0000000000000000000000000000000000000000000000000000000000000000 0 8:6 2056\n</code></pre>\n\n<p>That means that sectors 0-567028121 are mapped to a device with major/minor number 8/6. That is the 6th partition on my sda drive, as you can see with:</p>\n\n<pre><code>$ ls -Al /dev/sda6\nbrw-rw---- 1 root disk 8, 6 2010-12-21 14:38 /dev/sda6\n</code></pre>\n\n<p>Your output from dmsetup maybe a bit different, as I'm on Ubuntu 10.04</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T08:57:21.470", "id": "22569", "lastActivityDate": "2011-01-21T08:57:21.470", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9317", "parentId": "22548", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You can use <strong>dmsetup</strong>. Invoke:</p>\n\n<pre><code>$ sudo dmsetup -v table /dev/mapper/isw_dghbbcaabe_RAID_Volume11\n</code></pre>\n\n<p>That will give you a list of sectors which are mapped to another device. In my case (encrypted root partition), I get the foll...
null
null
null
null
null
22555
1
22561
2011-01-21T06:19:40.263
24
6390
<p>I know how to take a screenshot, but I want to take many screenshots within a limited time (taking screenshots of a single execution of a program which I can not pause).</p> <p>Is there a program that takes the "PrtScr" keyboard key in charge and just stores every screenshot without asking? The standard Ubuntu tool pops up a dialog to ask where I want to save the file, I would like a tool that doesn't ask and just saves on the Desktop or wherever as 00001.png 00002.png etc.</p>
4066
null
2017-01-19T12:30:30.247
2017-01-19T12:30:30.247
Many screenshots within a limited time saved directly, without asking for a filename
[ "screenshot" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p><a href=\"http://apt.ubuntu.com/p/shutter\" rel=\"nofollow noreferrer\">Shutter <img src=\"https://hostmar.co/software-small\" alt=\"Install shutter\"></a> has an option to automatically save screenshots, incrementing the filename each time.</p>\n\n<p><em>Edit ➜ Preferences ➜ Main ➜ Save</em> :</p>\n\n<p><img src=\"https://i.stack.imgur.com/7tsHg.png\" alt=\"enter image description here\"> </p>\n\n<p>To make Shutter take the screenshots when you hit <kbd>PrtScr</kbd>,<br>\ngo to <em>Edit ➜ Preferences ➜ Keyboard</em> and check the <em>Capture</em> checkbox: </p>\n\n<p><img src=\"https://i.stack.imgur.com/723L4.png\" alt=\"enter image description here\"></p>\n\n<p>If you don't want the Shutter window to pop up every time you take a screenshot, go to <em>Edit ➜ Preferences ➜ Behavior</em> and uncheck <em>Present main window after taking a screenshot</em> :</p>\n\n<p><img src=\"https://i.stack.imgur.com/SRxoC.png\" alt=\"enter image description here\"></p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-01-21T07:00:31.253", "id": "24369", "postId": "22561", "score": "1", "text": "Shutter is wonderful. Much recommended. There is also a ppa available.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-01-21T07:06:33.593", "id": "24370", "postId": "22561", "score": "3", "text": "Great! I would also add to unckeck \"Present main window after taking a screenshot\" in Preferences.", "userDisplayName": null, "userId": "4066" }, { "creationDate": "2015-12-22T11:26:16.820", "id": "1048903", "postId": "22561", "score": "2", "text": "I installed Shutter, but it does not have \"keyboard\" tap at all. Any idea what is going on/how to fix it?", "userDisplayName": null, "userId": "244841" }, { "creationDate": "2015-12-27T06:25:00.833", "id": "1051994", "postId": "22561", "score": "2", "text": "Now it's in System settings, under \"keyboard>shortcuts>custom shortcuts>+\" and run command \"shutter -f\" with the good key. Shutter might be very slow in ubuntu 14.04 x64 bits, I needed to edit every of its settings thereafter.", "userDisplayName": null, "userId": "486467" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-21T06:51:52.843", "id": "22561", "lastActivityDate": "2012-01-06T17:19:47.160", "lastEditDate": "2017-03-11T19:00:00.867", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "22555", "postTypeId": "2", "score": "27" }
[ { "accepted": true, "body": "<p><a href=\"http://apt.ubuntu.com/p/shutter\" rel=\"nofollow noreferrer\">Shutter <img src=\"https://hostmar.co/software-small\" alt=\"Install shutter\"></a> has an option to automatically save screenshots, incrementing the filename each time.</p>\n\n<p><em>Edit ➜ Preferences ➜...
null
null
null
user47206
null
22558
1
22941
2011-01-21T06:31:47.347
3
136
<p>The notification tray approach to the update manager has been discarded in favor of a pop-under window to increase awareness of updates. With a complete redesign in shell behavior upcoming are there any plans on changing the behavior still some more? Will the behavior remain largely unchanged - a minimized icon (possibly flashing?) in the launcher?</p>
null
null
null
2011-04-24T10:41:24.717
Are there any goals for the update manager behavior with Unity?
[ "update-manager", "ayatana" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I think there are, according to this blueprint: <a href=\"https://blueprints.launchpad.net/ubuntu/+spec/packageselection-foundations-n-update-notifier-refactor\" rel=\"nofollow\">https://blueprints.launchpad.net/ubuntu/+spec/packageselection-foundations-n-update-notifier-refactor</a>\nIt's details are however, at least for me, mysterious.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-01-23T20:16:07.820", "id": "24761", "postId": "22941", "score": "2", "text": "It looks to me like these were (mostly under-the-cover) changes planned for Maverick that never happened. Whilst they may still happen, that particular blueprint was written well before the suggestion of \"Unity by default\" so they don't really answer the question here.", "userDisplayName": null, "userId": "866" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-23T20:09:38.313", "id": "22941", "lastActivityDate": "2011-01-23T20:09:38.313", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "705", "parentId": "22558", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I think there are, according to this blueprint: <a href=\"https://blueprints.launchpad.net/ubuntu/+spec/packageselection-foundations-n-update-notifier-refactor\" rel=\"nofollow\">https://blueprints.launchpad.net/ubuntu/+spec/packageselection-foundations-n-update-notifier-refa...
null
null
null
null
user6658
22559
1
null
2011-01-21T06:34:19.593
2
5283
<p>I have the above functioning ok using the usb print server, however, I cannot get the drives to mount in the fstab. using 192.168.0.x net with dlink router. I can moount using the GUI in Gnome but I want the drive to mount automatically</p>
9309
null
null
2012-08-23T14:07:20.370
Fstab for GoFlex Home 2tb NAS
[ "fstab" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T16:55:53.320", "id": "24442", "postId": "22559", "score": "0", "text": "Please add what you've tried to mount the device as, and the output of dmesg so we can determine what the device shows up as", "userDisplayName": null, "userId": "235" } ]
null
[ { "accepted": null, "body": "<p>I have had a little NAS attached for music and film streaming for over a year with only the occasional problem generally because the NAS decided it needed a (sleep). The solution I found which has worked through 9.10 - 10.10 is detailed here.</p>\n\n<p><a href=\"http://www.th...
null
null
null
null
null
22562
1
25199
2011-01-21T06:55:44.900
5
8667
<p>I have a bridge/switch set up an a machine that has multiple ports. Occasionally, I have a vm running through virtualbox, and I'll have it use a virtual adapter and then I add the adapter to the bridge. I have heard that some switches can copy all the traffic they see to a specific port on the bridge, usually for network monitoring. I would like to be able to run some windows based network tools. I do not want to run Windows on the actual hardware, because it would be lots of work to duplicate my setup in windows, so I was thinking if I can copy all traffic to a port, I can send it to a VM with windows. How can I set this up? I think this might be ebtables area, but I don't know ebtables well enough to know for sure, and it always seems like (from my understanding of ebtables) ebtables does something with the traffic (drop, accept, etc), but never copies it.</p>
9308
8844
2011-03-14T23:38:37.277
2017-03-14T18:28:36.377
Copy all bridge traffic to a specific interface
[ "networking", "security", "network-monitoring", "network-bridge" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-05T22:42:11.637", "id": "27274", "postId": "22562", "score": "0", "text": "I'm not clear on what your switch is. Is this an external switch, or a bridge internal to your VM box? What's the vendor? This kind of traffic mirroring is what Cisco would call SPAN, though...
{ "accepted": true, "body": "<p>I think that <a href=\"http://packages.ubuntu.com/daemonlogger\" rel=\"nofollow noreferrer\">daemonlogger</a> <a href=\"http://apt.ubuntu.com/p/daemonlogger\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install daemonlogger\"></a>\n will do want you want. </p>\n\n<blockquote>\n <p>It is capable of operating in two\n modes: sniffing packets and logging\n them directly to disk (files are\n automatically rolled over after 1GB\n of data), or in a \"soft-tap\" mode\n where it mirrors packets on another\n interface.</p>\n</blockquote>\n\n<p>It is is the repository, so <code>sudo apt-get install daemonlogger</code> will get you started.</p>\n\n<p>Syntax would be similar to </p>\n\n<pre><code>sudo daemonlogger -i &lt;input_interface&gt; -o &lt;mirror_interface&gt;\n</code></pre>\n\n<p>where the arguments are explained as </p>\n\n<pre><code> -i &lt;interface&gt;\n Set interface to grab data from to &lt;interface&gt;.\n\n -o &lt;interface&gt;\n Disable logging, instead mirror traffic from -i &lt;interface&gt; to -o\n &lt;interface&gt;.\n</code></pre>\n\n<p>The biggest caveat is that you need to make sure that the destination port is capable of receiving the retransmitted traffic.</p>\n\n<p>If you need more specific configuration guidance, you'd need to give more details on your bridge and interface setup. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-08T05:53:06.527", "id": "27599", "postId": "25199", "score": "0", "text": "Thanks! This seems to simple in comparison to doing it with tc (which I can't seem to find much information on).", "userDisplayName": null, "userId": "9308" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-07T21:00:38.617", "id": "25199", "lastActivityDate": "2017-03-14T18:28:36.377", "lastEditDate": "2017-03-14T18:28:36.377", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "22562", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>I do not believe this is possible with a Linux-based software bridge (at least, not in its current version). If it were, it should be an option in the <a href=\"http://linux.die.net/man/8/brctl\" rel=\"nofollow\">brctl</a> utility.</p>\n\n<p>Yes, many physical Ethernet switch...
null
null
null
null
null
22568
1
22573
2011-01-21T07:58:23.200
3
2178
<p>Anyone know a library, preferably for ruby or python, that will let you access a list of open applications and let you manipulate them? All I really want to be able to do is change their geometry and minimize or close them. I've been messing around with ruby-gnome2 a bit but haven't found anything for manipulating windows other than the ones of your own process.</p> <p>I'm using 10.10.</p>
9313
667
2011-01-21T09:46:06.870
2017-02-23T11:09:02.887
How to programatically manipulate application windows?
[ "gnome", "window-manager", "development", "python", "ruby" ]
3
3
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T08:51:41.037", "id": "24380", "postId": "22568", "score": "0", "text": "Belongs to http://stackoverflow.com/, because it's about programming.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2011-01-21T09:44:00.120", "id": "24385...
{ "accepted": true, "body": "<p>The easiest way to do this would be using <a href=\"http://packages.ubuntu.com/wmctrl\" rel=\"nofollow noreferrer\">wmctrl</a>. You can read <a href=\"http://manpages.ubuntu.com/wmctrl\" rel=\"nofollow noreferrer\"><code>man wmctrl</code></a> to see how to use it.</p>\n\n<pre><code>sudo apt-get install wmctrl\n</code></pre>\n\n<p>You could basically bind the command line to a 'Window' class and add methods to it that use wmctrl commands in the background.</p>\n\n<pre><code>class Window\n @@windows = []\n def self.windows\n @@windows\n end\n def self.get_windows\n @@windows.clear\n `wmctrl -l`.split(\"\\n\").map do |str|\n @@windows &lt;&lt; self.class.new(str.split(' ')*)\n end\n end\n def initialize window_id, desktop_id, client_machine, window_title\n #set up object here\n end\n #add other methods here\nend\n</code></pre>\n\n<p>That should be a good starting point. It's not tested or anything but you should be able to work it out from here. You could now add instance methods, eg. <code>change_geometry</code>, which could utilise the <code>-r &lt;WIN&gt; -e &lt;MVARG&gt;</code> option.</p>\n\n<p>You should familiarise your self with <a href=\"http://www.ruby-doc.org/core/classes/IO.html#M000880\" rel=\"nofollow noreferrer\">pipes</a> and <a href=\"http://www.ruby-doc.org/core/classes/IO.html\" rel=\"nofollow noreferrer\">IO in general</a> before doing this.</p>\n\n<p>Perhaps when you have accomplished what you need to, you can distribute this as a ruby library and package it for Debian/Ubuntu.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-01-21T10:16:37.357", "id": "22573", "lastActivityDate": "2017-02-23T11:09:02.887", "lastEditDate": "2017-02-23T11:09:02.887", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "667", "parentId": "22568", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>The easiest way to do this would be using <a href=\"http://packages.ubuntu.com/wmctrl\" rel=\"nofollow noreferrer\">wmctrl</a>. You can read <a href=\"http://manpages.ubuntu.com/wmctrl\" rel=\"nofollow noreferrer\"><code>man wmctrl</code></a> to see how to use it.</p>\n\n<pre...
null
null
null
null
null
22572
1
null
2011-01-21T10:01:13.490
2
2632
<p>To unlock a my computer after waking it from standby or screen saver I sometimes have to enter my password many times before it's accepted. What's wrong with it?</p> <p>UPDATE: <li>NOT a wireless keyboard - a plain wired <a href="http://lh3.googleusercontent.com/public/PKSUsoXYVu5uljYfqxrOVMPnx-u1g5sVqTeptnwwK3NWGjQ3aiv7ElU6TRTDXFOyf_xeRjbp67_9SWfRdxLJdyAJyCI5xFHoNRmfRZOnMfeyQFW71jXCoI2LXQxc5Bc9VcADaAunsCV_vMlfc0-9xVf38GdaI1oIzVgYuOiy4xNQMViXzJxQX3Ysdsrr8urseVE97A" rel="nofollow">Dell RT7D50 USB keyboard</a> and the laptop's built-in keyboard, same behaviour.</li> <li>All the dots do appear.</li> <li>Sometimes switching language to a different and back to English seems to help.</li> <li>There are no problems with keyboards in any other case - only when entering the password in wakeup unlock dialogue. For example when I install applications or reconfigure something and the system asks to enter the password - it is always accepted immediately.</li></p>
2390
2390
2011-01-24T17:54:19.147
2011-01-24T19:56:49.973
Why doesn't desktop unlock screen accept my password?
[ "password", "unlock" ]
5
2
CC BY-SA 2.5
[ { "creationDate": "2011-01-21T11:01:17.020", "id": "24392", "postId": "22572", "score": "0", "text": "Is this a wireless keyboard?", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-01-21T17:05:52.100", "id": "24446", "postId": "22572", "score": "0...
null
[ { "accepted": null, "body": "<p>please check your keyboard's settings.May be changing a different setting for keyboard might solve your problem.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-01-21T10:20:28...
null
null
null
null
null
22577
1
null
2011-01-21T10:36:34.090
7
41116
<p>I have installed Ubuntu 10 last night and finished all upgrading stuff, in the time when updates are applied I downloaded a torrent file. As soon as download is finished I rebooted my system. As usual at start up it asked my login and I did the same. </p> <p>After a successful login It should show me the desktop, or show an error message in case anything has gone wrong. But what I had is only a cursor and a blank wall paper.</p> <p>Can anybody tell me what is the problem and how to resolve this?</p> <p>Thanks</p>
25373
7035
2011-06-04T22:05:53.843
2012-01-08T19:18:38.833
After login in the desktop remains blank
[ "startup" ]
4
6
CC BY-SA 3.0
[ { "creationDate": "2011-01-21T11:26:37.613", "id": "24396", "postId": "22577", "score": "1", "text": "It might help if you could possibly add the contents of `/var/log/messages` and `/var/log/Xorg.0.log` right after the event to http://pastebin.ubuntu.com/ and provide the links here to help us g...
null
[ { "accepted": null, "body": "<ol>\n<li><p>Press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd></p></li>\n<li><p>Login</p></li>\n<li><p>Type</p>\n\n<pre><code>sudo apt-get update\nsudo apt-get install --reinstall ubuntu-desktop\nsudo reboot\n</code></pre></li>\n</ol>\n", "commentCount": "0", "comments"...
null
null
2012-02-23T15:02:56.363
null
null
22585
1
null
2011-01-21T12:08:05.003
2
4368
<p>How can I implement a jabber chat server on ubuntu with clients on windows?</p> <p>Server part is almost installed as per jabber and Ubuntu guide how to create users account and authenticate them using mysql.</p> <p>How are clients enabled and configured to authenticate and join on the server. Does anything need to be done for the DNS part?</p>
null
10698
2014-01-08T23:18:49.353
2018-03-05T21:53:21.923
How to set up accounts LAN jabber chat server?
[ "server", "windows", "lan", "jabber" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2011-01-21T12:22:58.047", "id": "24402", "postId": "22585", "score": "0", "text": "Since your question is related to the windows clients install and setup on windows I am not sure there is much we can help you with here. That will depend on the client application being used an...
null
[ { "accepted": null, "body": "<p>Hey friend, I use Iptux for chatting on my home LAN. Setup is quite simple. Merely install the client on each desktop (no server software needed the clients detect each other.) Iptux also includes file sharing capabilities. </p>\n\n<p>On the ubuntu / debian based linux cl...
null
null
null
null
user9320