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
40450
1
40455
2011-05-05T18:34:07.040
3
2029
<p>I am installing <a href="https://github.com/gmate/gmate" rel="nofollow">gmate</a> on Ubuntu 11.04 (Gnome 3):</p> <pre><code>sudo apt-get install gedit-gmate </code></pre> <p>But gedit is untouched (there should appear new themes and plugins).</p>
16316
235
2011-05-05T18:47:40.567
2011-10-18T13:44:59.283
Installed gmate but themes and plugins now showing up in gedit
[ "11.04", "gedit" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Those plugins don't work with GNOME 3. In fact, most of the old Gedit plugins don't work with the latest Gedit 3.</p>\n\n<p>Update: here's a working plugins list for Gedit 3: <a href=\"http://live.gnome.org/Gedit/Plugins\" rel=\"nofollow\">http://live.gnome.org/Gedit/Plugins</a> . And the old Gedit 2 plugins: <a href=\"http://live.gnome.org/Gedit/PluginsOld\" rel=\"nofollow\">http://live.gnome.org/Gedit/PluginsOld</a></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-05T18:53:04.527", "id": "44350", "postId": "40455", "score": "0", "text": "Can I install Gedit 2.x? Or I should wait for gmate updating?", "userDisplayName": null, "userId": "16316" }, { "creationDate": "2011-05-05T19:42:53.757", "id": "44370", "postId": "40455", "score": "0", "text": "@fl00r I didn't try it but in theory you should be able to install Gedit 2.x as long as there aren't other Gnome3 applications that depend on it. As for the other part of your question: some plugins might never be updated or they can't work anymore, it depends on their original maintainers as the Gmate project isn't responsible for creating the extensions.", "userDisplayName": null, "userId": "662" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T18:49:03.407", "id": "40455", "lastActivityDate": "2011-05-05T19:52:41.393", "lastEditDate": "2011-05-05T19:52:41.393", "lastEditorDisplayName": null, "lastEditorUserId": "662", "ownerDisplayName": null, "ownerUserId": "662", "parentId": "40450", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Those plugins don't work with GNOME 3. In fact, most of the old Gedit plugins don't work with the latest Gedit 3.</p>\n\n<p>Update: here's a working plugins list for Gedit 3: <a href=\"http://live.gnome.org/Gedit/Plugins\" rel=\"nofollow\">http://live.gnome.org/Gedit/Plugins<...
null
null
null
null
null
40453
1
40470
2011-05-05T18:47:15.470
2
296
<p>A quick question - would appreciate a quick answer - is there a way to install packages to a system on HDD from a USB/CD/DVD live environment?</p> <p><strong>EDIT</strong></p> <p>Though I would love a quick answer, it doesn't necessarily have to be simple, if the only workable solution is possibly a little difficult/complicated. I'm thinking of somehow changing the target directory of <code>dpkg</code> to the hard disk instead of the live environment or something. Of course, I <em>don't know</em> how to do that or even if it's possible, hence the question. Hope my input helps me get help.</p>
814
814
2011-05-05T19:04:53.173
2011-05-11T13:57:09.260
Package management of installed system from live environment
[ "installation", "package-management", "live-environment" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You'll have to chroot into the system. Assume sda1 is your HDD:</p>\n\n<pre><code>sudo su\nmount /dev/sda1 /mnt\nfor f in proc sys dev ; do mount --rbind /$f /mnt/$f ; done\nchroot /mnt/\n</code></pre>\n\n<p>From then on you are using the root of your HDD as root and you can <code>apt-get update</code> or <code>yum update</code> or whatever the HDD-system demands.</p>\n\n<p>Exit with STRG + D or by typing <code>exit</code>.</p>\n\n<p>EDIT: sometimes you seem to have to copy <code>/etc/resolv.conf</code> to your chroot as pointed out by enzotib in the comments.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-05-05T19:27:52.417", "id": "44365", "postId": "40470", "score": "0", "text": "Just after I executed an `apt-get` install command, the message `sudo: unable to resolve host ubuntu` appeared. I hope it won't cause any problem.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-05-05T19:29:43.837", "id": "44366", "postId": "40470", "score": "0", "text": "Oh wait, I'm running as root, so that message appeared because I typed in `sudo` even though I didn't need to?", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-05-05T19:50:41.303", "id": "44373", "postId": "40470", "score": "1", "text": "@Oxwivi: Start another terminal windows and `sudo cp /etc/resolv.conf /mnt/etc`.", "userDisplayName": null, "userId": "2647" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T19:19:04.960", "id": "40470", "lastActivityDate": "2011-05-11T13:57:09.260", "lastEditDate": "2011-05-11T13:57:09.260", "lastEditorDisplayName": null, "lastEditorUserId": "4670", "ownerDisplayName": null, "ownerUserId": "4670", "parentId": "40453", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You'll have to chroot into the system. Assume sda1 is your HDD:</p>\n\n<pre><code>sudo su\nmount /dev/sda1 /mnt\nfor f in proc sys dev ; do mount --rbind /$f /mnt/$f ; done\nchroot /mnt/\n</code></pre>\n\n<p>From then on you are using the root of your HDD as root and you can ...
null
null
null
null
null
40457
1
42062
2011-05-05T18:51:36.260
2
1522
<p>When I boot my notebook, the touch-pad and the keyboard don't respond. The last thing I did before shutting down was killing the terminal that was running a sudo apt-get install because I had to go.</p> <p>I tried to follow the <a href="https://askubuntu.com/questions/34295/keyboard-and-touchpad-do-not-work-after-upgrade">Start Ubuntu in recovery mode</a></p> <p>but the second screen (Select the root shell option ) does not appear in my computer, it runs some process and then it freezes</p> <p>I have the ubuntu liveCD and I can mount my hard drive from there but I'm not sure what commands to run from there. </p> <p>Thanks in advance for any help.</p>
16646
-1
2017-04-13T12:23:28.253
2014-10-14T22:36:13.827
Keyboard and touch-pad stopped working after shutting down the computer while it was installing updates
[ "10.10", "package-management", "keyboard", "touchpad" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can try to <em>chroot</em> into your system from the live CD and continue the upgrade.</p>\n\n<ol>\n<li>Run the live CD and start a <code>gnome-terminal</code> (<kbd>Alt</kbd> + <kbd>F2</kbd> → <code>gnome-terminal</code>).</li>\n<li><p>Issue the following command to mount your system (change <strong>sda1</strong> to whatever your system partition name is - the output of the command <code>fdisk -l</code> should give you an idea):</p>\n\n<pre><code>sudo mkdir /mnt/ubuntu\nsudo mount /dev/sda1 /mnt/ubuntu\n</code></pre></li>\n<li><p>You need to bind a couple of local directories to the chroot environment:</p>\n\n<pre><code>for i in proc sys dev; do sudo mount --bind /$i /mnt/ubuntu/$i; done\n</code></pre></li>\n<li><p>Enable DNS resolving in the chroot environment (should give you internet access):</p>\n\n<pre><code>sudo cp /etc/resolv.conf /mnt/ubuntu/etc/resolv.conf\n</code></pre></li>\n<li><p>Now it's time to get into your broken system (note, that you will be the almighty root user in the system, so be careful what you do):</p>\n\n<pre><code>sudo chroot /mnt/ubuntu\n</code></pre></li>\n<li><p>Try to continue the update:</p>\n\n<pre><code>apt-get update\napt-get upgrade\n</code></pre>\n\n<p>You'll maybe told to also try</p>\n\n<pre><code>apt-get -f install\n</code></pre>\n\n<p>If that fails you can also try to continue the configuration of unpacked packages:</p>\n\n<pre><code>dpkg --configure -a\n</code></pre></li>\n<li><p>After you've tampered with the system, you type <code>exit</code> to leave your system and then do the above steps in reverse order:</p>\n\n<pre><code>sudo rm /mnt/ubuntu/etc/resolv.conf\nsudo umount /mnt/ubuntu/dev\nsudo umount /mnt/ubuntu/sys\nsudo umount /mnt/ubuntu/proc\nsudo umount /mnt/ubuntu\n</code></pre></li>\n<li><p>Reboot without the CD and hope for the best.</p></li>\n</ol>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-11T17:38:41.707", "id": "45979", "postId": "42062", "score": "1", "text": "Running `apt-get update` and `apt-get upgrade` will likely fail since the previous upgrade process is incomplete. Running `dpkg --configure -a` will complete upgrade.", "userDisplayName": null, "userId": "6791" }, { "creationDate": "2011-05-11T18:05:03.670", "id": "45984", "postId": "42062", "score": "0", "text": "Good point, added to the answer.", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-11T17:12:05.530", "id": "42062", "lastActivityDate": "2011-05-11T23:31:28.847", "lastEditDate": "2011-05-11T23:31:28.847", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "40457", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You can try to <em>chroot</em> into your system from the live CD and continue the upgrade.</p>\n\n<ol>\n<li>Run the live CD and start a <code>gnome-terminal</code> (<kbd>Alt</kbd> + <kbd>F2</kbd> → <code>gnome-terminal</code>).</li>\n<li><p>Issue the following command to moun...
null
null
null
null
null
40459
1
40472
2011-05-05T18:59:00.417
10
5725
<p>Is it possible and if yes how, to install Empathy 3.0.1 and above in Ubuntu 11.04?</p>
7035
235
2011-05-05T19:01:54.713
2018-06-26T11:03:32.250
How to install Empathy 3.x?
[ "11.04", "empathy" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The package isn't in official Ubuntu repositories. At the moment you have two choices:</p>\n\n<ol>\n<li>Using some non-official package (PPA): Open a terminal and type <code>sudo add-apt-repository ppa:telepathy/ppa</code>. If this succeeded, type <code>sudo apt-get update</code>. Now you are done and can install Empathy. The current PPA version is 3.0.0-1~ppa11.04+1.</li>\n<li>Go to the <a href=\"http://download.gnome.org/sources/empathy/\">Empathy tree</a>. There you'll find <a href=\"http://download.gnome.org/sources/empathy/3.0/empathy-3.0.1.tar.bz2\">version 3.0.1 (tar.gz)</a>. You can download and unpack it. Before you continue make sure that the following packages are installed: <code>gnome-common gettext libglib2.0-dev gtk-doc-tools libxml2-dev libtelepathy-glib-dev libmissioncontrol-client-dev libtelepathy-farsight-dev\nlibx11-dev libgtk2.0-dev\nlibcanberra-gtk-dev\nlibgstreamer-plugins-base0.10-dev\nlibebook1.2-dev\nlibnotify-dev\nlibunique-dev\nlibgnome-keyring-dev</code>\nChange into the directory where you unpacked the tar.bz2-file. First you should enter <code>./autogen.sh</code>. If this is successful, you can build the software with the command <code>make</code> and <code>make install</code> installs the software in your system. <a href=\"http://live.gnome.org/Empathy/Install\">Empathy's Install page</a> has some more information.</li>\n</ol>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-05T19:25:55.753", "id": "44364", "postId": "40472", "score": "0", "text": "Thank you qbi. Now my second question would be if the dependencies for it will not create a problem with the libraries in 11.04", "userDisplayName": null, "userId": "7035" }, { "creationDate": "2011-05-05T19:40:52.813", "id": "44369", "postId": "40472", "score": "0", "text": "As far as I see it Empathy doesn't require a special version of any library. So if you have luck you can use those which are contained in 11.04. However I have not tried myself to install Empathy 3. So it is only guesswork.", "userDisplayName": null, "userId": "236" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T19:22:31.633", "id": "40472", "lastActivityDate": "2011-05-05T19:22:31.633", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "236", "parentId": "40459", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>It looks like only empathy 2.34 is available for Ubuntu 11.04 right now.\n<a href=\"http://pkgs.org/package/empathy\" rel=\"nofollow\">http://pkgs.org/package/empathy</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-05T19:17:26.0...
null
null
null
null
null
40461
1
41126
2011-05-05T19:00:30.627
17
15154
<p>What is the Number of Desktops setting for in CompizConfigSettingsManager > General Options > Desktop Size?</p> <p>There are options for Horizontal/Vertical Virtual Size which change the size of your desktop, but Number of Desktops doesn't seem to do anything.</p> <p>Example: <img src="https://i.stack.imgur.com/n3wuB.png" alt="Number of desktops can be seen here"></p>
9411
25863
2012-11-21T21:57:45.617
2013-08-26T15:56:45.783
What is the Compiz option "Number of Desktops" for?
[ "compiz", "workspaces" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>It does nothing.</p>\n<p>This <a href=\"https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/153322\" rel=\"noreferrer\">bug report</a> has <a href=\"https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/153322/comments/10\" rel=\"noreferrer\">two</a> <a href=\"https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/153322/comments/12\" rel=\"noreferrer\">quotes</a> from Travis Watkins explaining what's going on.</p>\n<blockquote>\n<p>In compiz in hardy you cannot have multiple desktops anymore. Viewports are the only option.</p>\n<p>Desktops have less features and are really broken. Unfortunately no one cares to fix these bugs upstream and we have no reason to as we use viewports.</p>\n</blockquote>\n<p><sub>Kudos to Rinzwind for finding the bug report.</sub></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-08T02:34:56.350", "id": "45060", "postId": "41126", "score": "0", "text": "If that was the case, would it have been included in the rewrite of compiz? Hardy is Very old, the fact that it was not working back then doesn't mean anything.", "userDisplayName": null, "userId": "12692" }, { "creationDate": "2011-05-08T05:46:25.700", "id": "45087", "postId": "41126", "score": "0", "text": "I didn't know compiz was rewritten, but my guess is that compiz config settings manager wasn't rewritten since it just needs to change gconf.", "userDisplayName": null, "userId": "9411" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-08T01:38:19.817", "id": "41126", "lastActivityDate": "2011-05-08T01:38:19.817", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "9411", "parentId": "40461", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>The Compiz wiki has <a href=\"http://wiki.compiz.org/GeneralOptions#Desktop_Size\" rel=\"nofollow\">information</a> on this.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-05-05T19:12:36.623", "id": "44359", "postId": ...
null
null
null
null
null
40463
1
40507
2011-05-05T19:05:40.740
9
928
<p>It would be great if one could use it in the terminal for announcing that some time intensive job is done, e.g. "apt-get dist-upgrade; urg-anim".</p>
16643
null
null
2011-05-06T09:43:25.130
Is there any way to initiate "urgent animation" of an icon on the Unity launcher from command line?
[ "unity", "command-line", "notification" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can set the urgency hint using <code>wmctrl</code> (needs to be installed):</p>\n\n<pre><code>some_task ; wmctrl -i -r $WINDOWID -b add,demands_attention\n</code></pre>\n\n<p>Where <code>$WINDOWID</code> is a variable holding the terminal window's ID. Because that's rather long to type, you can set up an alias for it in your <code>~/.bashrc</code>:</p>\n\n<pre><code>alias set_urgent='wmctrl -i -r $WINDOWID -b add,demands_attention'\n</code></pre>\n\n<p>Then you'd simply run:</p>\n\n<pre><code>some_task ; set_urgent\n</code></pre>\n\n<p>Of course this will do nothing if the terminal is active at the time the <code>wmctrl</code> command is run.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-05-05T22:02:15.373", "id": "44421", "postId": "40507", "score": "1", "text": "If you want a stand-in for `some_task` (for testing), use `sleep 5`, which will pause for 5 seconds. Also, you'll want to replace the quoted text \"Terminal\" with (part of) the title of your terminal, since the word \"Terminal\" may not occur in your terminal's window title (this can be configured via Edit->Profile Preferences->Title and Command tab->When terminal commands set their own title drop-down.).", "userDisplayName": null, "userId": "16628" }, { "creationDate": "2011-05-05T22:21:42.207", "id": "44431", "postId": "40507", "score": "0", "text": "Yeah, doing this via title matching is ugly. I have searched for a way to return the window id of the terminal and use it with the -i switch of wmctrl, but no luck.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-05-06T00:24:34.917", "id": "44455", "postId": "40507", "score": "0", "text": "The compiz wiki has some [really helpful info](http://wiki.compiz.org/WindowMatching#identify) on this", "userDisplayName": null, "userId": "16628" }, { "creationDate": "2011-05-06T08:57:49.350", "id": "44537", "postId": "40507", "score": "0", "text": "The problem with this is, that it's interactive - you need to click on a window to get the information. What would be great: `alias urgent_blink='wmctrl -i -r $(get me the window id) -b add,demands_attention'`. On the other hand, it shouldn't matter which terminal instance causes the launcher to wiggle.", "userDisplayName": null, "userId": "3037" }, { "creationDate": "2011-05-06T09:23:32.473", "id": "44541", "postId": "40507", "score": "1", "text": "Thanks for your answers, my final solution is: `alias yoo-hoo='wmctrl -i -r $WINDOWID -b add,demands_attention`", "userDisplayName": null, "userId": "16643" }, { "creationDate": "2011-05-06T09:34:59.083", "id": "44547", "postId": "40507", "score": "0", "text": "Oh, that's awesome! Didn't know about that variable. :)", "userDisplayName": null, "userId": "3037" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T21:26:20.793", "id": "40507", "lastActivityDate": "2011-05-06T09:43:25.130", "lastEditDate": "2011-05-06T09:43:25.130", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "40463", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>You can set the urgency hint using <code>wmctrl</code> (needs to be installed):</p>\n\n<pre><code>some_task ; wmctrl -i -r $WINDOWID -b add,demands_attention\n</code></pre>\n\n<p>Where <code>$WINDOWID</code> is a variable holding the terminal window's ID. Because that's rathe...
null
null
null
null
null
40468
1
40489
2011-05-05T19:16:26.447
2
430
<p>Am trying to open some html, php, js and css files i copied to /var/www. If they have the Execute permission (Allow execute file as program) option set i can not open them with gedit which i did normally in Ubuntu 10.10 and tested yesterday installing 10.10 to make sure.</p> <p>If i remove the execute option it works and opens with gedit.</p> <p>I also set Nautilus to <strong>Run executable text files when they are opened</strong> in the Nautilus preferences (Behavior section).</p>
7035
7035
2011-05-05T21:10:44.400
2011-05-05T21:24:18.323
Nautilus does not open a file for view when it has the Execute permission
[ "11.04", "nautilus" ]
2
5
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T20:12:25.727", "id": "44381", "postId": "40468", "score": "0", "text": "\"option does not appear in here\" you mean on askubuntu? The `img` button should be between the code button (`<$>`) and the numbered list.", "userDisplayName": null, "userId": "9411" ...
{ "accepted": true, "body": "<p>I'm not certain I understand, but if you remove the execute permission from folders, then you won't be able to look inside them. (So if you removed the execute permission from <code>/var/www</code>, you wouldn't be able to see any of the files inside.)</p>\n\n<p>Try the following in Terminal. (It will modify permissions on everything under /var/www.)</p>\n\n<pre><code>chmod u+x -R /var/www\nfind /var/www -type f | xargs chmod u-x\n</code></pre>\n\n<p>Now the folders should be executable (so you can look inside of them), but the files are not.</p>\n\n<p>Does that help?</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T20:16:36.100", "id": "40489", "lastActivityDate": "2011-05-05T20:16:36.100", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9411", "parentId": "40468", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I'm not certain I understand, but if you remove the execute permission from folders, then you won't be able to look inside them. (So if you removed the execute permission from <code>/var/www</code>, you wouldn't be able to see any of the files inside.)</p>\n\n<p>Try the follo...
null
null
null
null
null
40471
1
40495
2011-05-05T19:19:08.973
16
128822
<p>I understand if I boot from a live cd I can see all the system logs under <strong>System > Administration > File Log Viewer</strong> </p> <p>I have a major error with a disk not mounting and I want to trace i tback to the last time it did work and what may have corrupted the ext4 filesystem on it.</p> <p>So within the <strong>File Log Viewer</strong> Where do I start examining?</p>
15909
47291
2012-07-02T00:12:06.340
2016-07-05T21:34:39.397
Where can I find the log files for mounting disks?
[ "mount", "hard-drive", "live-cd", "log" ]
2
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T20:40:30.227", "id": "44392", "postId": "40471", "score": "0", "text": "Are you only looking at the logs that were generated by the LiveCD starting up? Or are you looking at the logs on the host filesystem?", "userDisplayName": null, "userId": "9411" }, ...
{ "accepted": true, "body": "<p>I'd guess <code>/var/log/dmesg</code></p>\n\n<p>You can find all logs that mention mounting or ext4 like this:</p>\n\n<pre><code>grep -e mount -e ext4 -lR /var/log 2&gt; /dev/null\n</code></pre>\n\n<p>dmesg seemed to be the most relevant to me. And there are archived versions (dmesg.*).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T20:40:13.427", "id": "40495", "lastActivityDate": "2011-05-05T20:40:13.427", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9411", "parentId": "40471", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>I'd guess <code>/var/log/dmesg</code></p>\n\n<p>You can find all logs that mention mounting or ext4 like this:</p>\n\n<pre><code>grep -e mount -e ext4 -lR /var/log 2&gt; /dev/null\n</code></pre>\n\n<p>dmesg seemed to be the most relevant to me. And there are archived versions...
null
null
null
null
null
40474
1
40475
2011-05-05T19:26:28.473
1
453
<p>Or is there a resource on the web that lists the ones are Ubuntu compatible?</p> <p>I'm thinking of ordering this one from Polaroid</p> <p><a href="http://consumerelectronicsreviews.net/polaroid-cia-1237rc-digital-camera-review-b003e47fwu/" rel="nofollow">http://consumerelectronicsreviews.net/polaroid-cia-1237rc-digital-camera-review-b003e47fwu/</a></p>
8986
8986
2011-05-06T02:45:11.520
2011-05-06T02:45:11.520
What are some good budget Ubuntu-compatible digital cameras?
[ "camera" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T19:35:08.153", "id": "44367", "postId": "40474", "score": "4", "text": "I think, nowdays the cameras connects to the copmuters like a simple USB storage. What do you think?", "userDisplayName": null, "userId": "6341" }, { "creationDate": "2011-05-05T...
{ "accepted": true, "body": "<p>Most digital cameras are seen by Ubuntu as USB flash drives. While there are some that won't get along with Ubuntu, you're pretty safe in this area. Once you have your options narrowed down to 2-3 kinds you should search the forums for those models to see what others have experienced. </p>\n\n<p><a href=\"https://help.ubuntu.com/8.04/musicvideophotos/C/photos.html\" rel=\"nofollow\">Here's a pretty good page</a> on cameras/photos in Ubuntu to get you started. </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T19:35:32.703", "id": "40475", "lastActivityDate": "2011-05-05T20:20:21.390", "lastEditDate": "2011-05-05T20:20:21.390", "lastEditorDisplayName": null, "lastEditorUserId": "9411", "ownerDisplayName": null, "ownerUserId": "16486", "parentId": "40474", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Most digital cameras are seen by Ubuntu as USB flash drives. While there are some that won't get along with Ubuntu, you're pretty safe in this area. Once you have your options narrowed down to 2-3 kinds you should search the forums for those models to see what others have exp...
null
0
2011-05-06T08:05:53.477
null
null
40477
1
null
2011-05-05T19:37:42.107
5
1990
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/29553/how-can-i-configure-unity">How can I configure Unity?</a> </p> </blockquote> <p>I want to dig into the unity application launchers. Where do these setting reside?</p>
8017
-1
2017-04-13T12:24:00.547
2011-05-05T19:48:23.753
Where are unity settings stored?
[ "unity" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2014-07-25T23:52:52.647", "id": "675572", "postId": "40477", "score": "4", "text": "This is NOT a duplicate, and this question is NOT answered in the referenced question about configuring Unity. This question is asking where the configuration files for Unity can be found. Plea...
null
[ { "accepted": null, "body": "<p>The topic is discussed fairly thoroughly here\n<a href=\"https://askubuntu.com/questions/29553/how-can-i-configure-unity\">How can I configure Unity?</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0",...
null
null
2011-05-05T23:27:28.750
null
null
40478
1
null
2011-05-05T19:38:54.773
0
155
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/33971/problems-with-operas-launcher">Problems with Opera&#39;s launcher</a> </p> </blockquote> <p>I am wondering why does an Opera Widget Installer show up every-time I run opera?.</p> <p>I already purged it and re-installed to no avail. I tried looking everywhere within Opera to see if I could disable it and found none. Trying to activate the Icon also does not work.</p>
16655
-1
2017-04-13T12:24:13.887
2014-06-07T19:09:15.427
Opera widget installer starts every time
[ "software-installation", "opera", "widgets" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>This looks like a duplicate of <a href=\"https://askubuntu.com/questions/33971/problems-with-operas-launcher\">Problems with Opera&#39;s launcher</a></p>\n\n<p>However, that questions (and the launchpad link) mention Ubuntu 11.04 beta, and Opera 11.01, while I'm using a clean...
null
null
2011-12-03T22:29:46.987
null
null
40482
1
null
2011-05-05T19:49:38.463
12
1024
<p>Why do applications like synaptic (and other that need root privilege) have their menus in the window instead of top panel? Is it going to change or will it stay like that to indicate that user is on root privileges?</p>
16654
null
null
2011-05-05T20:18:21.540
Why don't applications opened as root use global menu?
[ "11.04", "unity", "synaptic", "appmenu", "globalmenu" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>For an application to use the global menu the environment variable $UBUNTU_MENUPROXY needs to be set to to the name of the menuproxy library to be used. For security reasons this variable is cleared when using sudo etc. to run a program as root.</p>\n\n<p>As a side effect thi...
null
null
null
null
null
40485
1
null
2011-05-05T19:57:00.203
2
691
<p>Today I install Ubuntu 10.04 and Nautilus-elementary. I mounted 5 folders in home folder from my home server with NFS. Please look at the picture:</p> <p><img src="https://i.stack.imgur.com/fXhFR.png" alt="enter image description here"></p> <p>I have 3 questions:</p> <p>1) How can I remove not all, but some mounted folders from left part of Nautilus-elementary? I marked it on picture.</p> <p>2) How can I remove hard drive icons from mounted folders? I marked this icons on picture too.</p> <p>3) How can I set it so that mounted folders don't appear on the desktop?</p> <p>Sorry for my English :)</p>
2964
235
2011-09-29T21:10:21.270
2014-06-12T23:12:24.593
How do I edit the shortcuts in the Nautilus Elementary side bar?
[ "nautilus", "mount", "nautilus-elementary" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>1) and 2): I think it's not possible.</p>\n\n<p>3) open <code>gconf-editor</code>, select <code>/apps/nautilus/desktop</code> and deselect <code>volumes_visible</code> from right pane.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "c...
null
null
null
null
null
40486
1
40497
2011-05-05T19:58:38.050
6
10787
<p>I often get HTML emails, I would like to just display them in plain text. How can I disable any HTML/Script rendering?</p>
12824
7035
2011-05-05T21:45:41.730
2020-05-08T17:03:16.030
Deactivate HTML display in incoming emails in Thunderbird
[ "email", "thunderbird", "html" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I do not believe you can stop the rendering itself.</p>\n\n<p>The 3 things I know of that you can use are...</p>\n\n<ol>\n<li><strong>View > Message Body As > Plain text</strong></li>\n<li>Not use preview (<kbd>f8</kbd> toggles on/off)</li>\n<li>You can also enable <strong>Tools > Options > Advanced > Privacy > Block loading of remote images</strong> to stop loading remote images (that also kills the ability to execute code from there).</li>\n</ol>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-05T21:01:17.650", "id": "44403", "postId": "40497", "score": "0", "text": "I have a German 3.1.10 and I cannot find that option.", "userDisplayName": null, "userId": "12824" }, { "creationDate": "2018-01-31T16:53:36.023", "id": "1620138", "postId": "40497", "score": "6", "text": "In 52.5.2 it's *View* -> *Message Body As* -> *Plain text*. (...aaand ... it does not work for me.)", "userDisplayName": null, "userId": "50770" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-05-05T20:42:58.600", "id": "40497", "lastActivityDate": "2020-05-08T17:03:16.030", "lastEditDate": "2020-05-08T17:03:16.030", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "15811", "parentId": "40486", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>I do not believe you can stop the rendering itself.</p>\n\n<p>The 3 things I know of that you can use are...</p>\n\n<ol>\n<li><strong>View > Message Body As > Plain text</strong></li>\n<li>Not use preview (<kbd>f8</kbd> toggles on/off)</li>\n<li>You can also enable <strong>To...
null
null
null
null
null
40488
1
null
2011-05-05T20:14:18.653
2
181
<p>I have seen screenshots with emblems and bug reports like <a href="https://bugs.launchpad.net/ubuntu/+source/libunity/+bug/735920" rel="nofollow">this</a> suggest that emblems were there at some point but they no longer work and there does not seem to be a way to set them in the libunity api. Is this an intentional decision or a temporary situation until they work correctly? Emblems would be useful in particular for dropbox and ubuntu one. Anyone have any info? </p>
16660
16660
2011-05-05T20:48:45.610
2011-05-08T16:21:38.593
Why are emblems disabled in the unity launcher?
[ "11.04", "unity", "launcher" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>According to the logs of this <a href=\"https://wiki.ubuntu.com/MeetingLogs/appdevweek1104/UnityQ%26A\" rel=\"nofollow\">Unity Q+A session</a>, emblems/badges were removed (likely a design decision), while counters and progress bars are still present.</p>\n", "commentCoun...
null
null
null
null
null
40493
1
40509
2011-05-05T20:38:37.797
4
2515
<p>Basically I want to know how to remove the window decoration in Firefox 4 using Compiz. I successfully removed window decoration in Opera, I just needed to add this line !(name=opera) in the <code>Window Decoration</code> option. However it didn't work as well for when I tried the same thing to remove window decoration from Firefox 4.</p> <p>So do anyone know how to do that?</p> <p><strong>UPDATE</strong></p> <p>I found this nice guide how to fix it nicely</p> <p><a href="http://www.webupd8.org/2011/03/firefox-4-get-tabs-in-title-bar-like.html" rel="nofollow">http://www.webupd8.org/2011/03/firefox-4-get-tabs-in-title-bar-like.html</a></p>
8498
8498
2011-06-03T22:11:32.083
2011-06-03T22:11:32.083
How to remove window decoration from Firefox 4?
[ "compiz" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>At the same place you did with Opera you can do this <code>!(class=Firefox)</code>, it worked for me just fine.</p>\n\n<p>If you want them both to work like that add <code>!(name=opera) &amp; !(class=Firefox)</code>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-05T22:02:05.353", "id": "44420", "postId": "40509", "score": "0", "text": "great it worked, any idea why it needed `class`, instead for `name` in this case?", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-05-05T23:22:11.603", "id": "44445", "postId": "40509", "score": "1", "text": "When using name the value would be \"Navigator\", but i do not know if it would affect another apps, so i thought class would work better.", "userDisplayName": null, "userId": "15413" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T21:35:34.620", "id": "40509", "lastActivityDate": "2011-05-05T21:35:34.620", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15413", "parentId": "40493", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>At the same place you did with Opera you can do this <code>!(class=Firefox)</code>, it worked for me just fine.</p>\n\n<p>If you want them both to work like that add <code>!(name=opera) &amp; !(class=Firefox)</code>.</p>\n", "commentCount": "2", "comments": [ { ...
null
null
null
null
null
40494
1
40498
2011-05-05T20:39:38.043
0
2586
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/38661/how-do-i-run-sh-files-in-terminal">How do I run .sh files in Terminal?</a> </p> </blockquote> <p>I've been trying to install the altitude.sh file I got from <a href="http://altitudegame.com/download.html" rel="nofollow noreferrer">altitudegame.com</a>. but I don't know how to install it. And it is not in the Software Center either. I found the game <a href="https://askubuntu.com/questions/6586/what-native-games-are-available/7765#7765">here.</a></p>
10698
-1
2017-04-13T12:23:45.630
2014-04-08T14:33:48.930
How do I install altitude? (.sh file, game)
[ "games", "software-installation" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>First you need to go through GUI, when you right click on the file and goto permissions tab then you get an option to make the file executable as in the picture.\n<img src=\"https://i.stack.imgur.com/hsO1u.gif\" alt=\"enter image description here\"></p>\n\n<p>and then you have two methods to install the game.</p>\n\n<p><strong>Method 1:</strong></p>\n\n<p>Open Terminal.\nGo to the directory you have the file.\nType <code>./filename.sh</code> and hit Enter.\nOr you can type <code>bash filename.sh</code>.</p>\n\n<p><strong>Method 2: (Easiest way)</strong></p>\n\n<p>Double-click on the file the way you open any other file.\nThat should install the application by running the script in .sh file.\nFollow the prompts (if any) while installation which should look the same as they look in Windows.\nThat’s it. You are all set.</p>\n\n<p>Hope this quick tip helped you install the application.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-05-05T20:58:02.340", "id": "44402", "postId": "40498", "score": "1", "text": "Method 1 works after making the file executable.", "userDisplayName": null, "userId": "15811" }, { "creationDate": "2011-05-05T21:04:11.320", "id": "44404", "postId": "40498", "score": "0", "text": "@Rinzwind Yes, and first I described how to make it executable.", "userDisplayName": null, "userId": "4937" }, { "creationDate": "2011-05-05T22:27:39.997", "id": "44434", "postId": "40498", "score": "0", "text": "This is good if you are not as familiar to a terminal. :)", "userDisplayName": null, "userId": "10698" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T20:50:42.570", "id": "40498", "lastActivityDate": "2011-05-05T22:30:44.723", "lastEditDate": "2011-05-05T22:30:44.723", "lastEditorDisplayName": null, "lastEditorUserId": "10698", "ownerDisplayName": null, "ownerUserId": "4937", "parentId": "40494", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>First you need to go through GUI, when you right click on the file and goto permissions tab then you get an option to make the file executable as in the picture.\n<img src=\"https://i.stack.imgur.com/hsO1u.gif\" alt=\"enter image description here\"></p>\n\n<p>and then you hav...
null
null
2012-10-07T11:44:49.157
null
null
40502
1
40511
2011-05-05T21:12:27.393
13
30286
<p>Go to tty1 with <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd>.</p> <p>Go back to desktop with <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F7</kbd></p> <p>Screens stays blank. Cursor changes from an arrow to a hand. </p> <p>When I then close and re-open the lid the screen comes back up but is seriously garbled. I need to minimize all applications to make them proper. The desktop does not refresh though and requires logging out and in.</p> <p>nvidia version 173 is active.</p> <p>What is the best way of triaging this?</p>
15811
367165
2015-06-10T11:58:37.163
2015-06-10T11:58:37.163
Switching to Ctrl+Alt+F1 and back to desktop (Ctrl+Alt+F7) : Blank Screen and garbled display
[ "11.04", "nvidia", "display" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2015-06-10T06:40:53.700", "id": "905035", "postId": "40502", "score": "0", "text": "To the person downvoting this yesterday: care to explain why?", "userDisplayName": null, "userId": "15811" } ]
{ "accepted": true, "body": "<p>OK - my thoughts on trying to triage this.</p>\n\n<ul>\n<li>Is this a compiz issue?\nTry logging in as ubuntu classic</li>\n</ul>\n\n<p>Switch off all visual effects. Does the garbled display occur? If not, likely to be a compiz issue. If it does, maybe a nvidia driver issue.</p>\n\n<p>Now switch on visual effects - Does the garbled display occur? If not, then likely to be a Unity type issue. If it does, more likely to be a compiz issue.</p>\n\n<ul>\n<li>Is this a driver issue?\nDeactivate the nvidia driver through the Additional Drivers window. Does the garbled display occur? If it doesnt then is likely to be a nvidia driver vs compiz issue.</li>\n</ul>\n\n<p>CCSM was deliberately left out of the default install, because it was found that users making changes could make the graphical display unstable. If you have been playing with various CCSM setting maybe this is your issue.</p>\n\n<p>Try resetting compiz to its defaults:</p>\n\n<pre><code>gconftool-2 --recursive-unset /apps/compiz\nsudo reboot --\n</code></pre>\n\n<p>Repeat the above to see if the issue was due to changes in compiz that you may have made.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T21:41:36.163", "id": "40511", "lastActivityDate": "2011-05-05T21:41:36.163", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "40502", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>OK - my thoughts on trying to triage this.</p>\n\n<ul>\n<li>Is this a compiz issue?\nTry logging in as ubuntu classic</li>\n</ul>\n\n<p>Switch off all visual effects. Does the garbled display occur? If not, likely to be a compiz issue. If it does, maybe a nvidia driver iss...
null
null
null
null
null
40503
1
40603
2011-05-05T21:19:55.573
7
5195
<p>Images can be resized using mogrify from the ImageMagick suite:</p> <pre><code>mogrify -resize 256x256 *.jpg </code></pre> <p>But this will resize images so that the largest dimension is 256px, including images that are smaller than 256px to begin with (like 100x100px avatars).</p> <p>How can I exclude the smaller images from being affected? i.e. I want the largest dimension to be <em>no more than</em> 256px</p> <p>(Preferably I will be able to do this with ImageMagick suite, or at least without installing anything additional).</p>
16665
527764
2020-08-09T09:28:11.450
2020-08-09T09:28:31.010
Resize large images with mogrify (ImageMagick) but leave small images unaffected
[ "resize", "image-processing", "imagemagick", "mogrify" ]
2
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Try</p>\n<pre><code>mogrify -resize '1280x1024&gt;' *.jpg\n</code></pre>\n<p>Do make sure to back up though.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-02-26T11:00:26.613", "id": "820016", "postId": "40603", "score": "2", "text": "While it works, it still opens and re-saves the images it doesn't resize (it can make a Windows Paint PNG smaller without affecting the image's pixels). While harmless quality-wise, it eats CPU and disk bandwidth needlessly...", "userDisplayName": null, "userId": "382723" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-05-06T06:25:52.963", "id": "40603", "lastActivityDate": "2020-08-09T09:28:31.010", "lastEditDate": "2020-08-09T09:28:31.010", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "16036", "parentId": "40503", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Try</p>\n<pre><code>mogrify -resize '1280x1024&gt;' *.jpg\n</code></pre>\n<p>Do make sure to back up though.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-02-26T11:00:26.613", "id": "820016", "postId": "40603", ...
null
null
null
null
null
40504
1
48852
2011-05-05T21:20:40.823
1
410
<p>After upgrading from Ubuntu 10.04 to 11.04, the font on the top panel have a very low contrast and is hard to read.</p>
1453
null
null
2011-06-15T09:50:39.477
Low contrast font color after upgrading 10.04 to 11.04
[ "11.04", "unity" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>In the ambiance theme the text colour is not black, but grey. You can change it by clicking Customize in the Appearance applet.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-06-15T09:50:39.477", "id": "48852", "lastActivityDate": "2011-06-15T09:50:39.477", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10837", "parentId": "40504", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>You probably have the \"New Wave\" theme. Click the top-left icon, then type \"appearance\" followed by Enter, and pick a different theme. The contrast should be fine now, and the text on top panel readable.</p>\n", "commentCount": "0", "comments": [], "communityO...
null
null
null
null
null
40512
1
null
2011-05-05T21:43:25.760
2
2398
<p>I just had the default ones. They are ALL gone. I can't install any software at all. I am using Kubuntu 11.04 x86.</p> <p>I have no idea why they disappeared. They just did. :/</p> <p>How do I get the default software sources back?</p> <p>(I know the sudo add-apt-repository command, but I need to names of the default repositories)</p>
16669
235
2011-05-05T22:29:42.820
2011-05-09T19:36:32.810
I need the default set of software sources to recover my installation
[ "11.04", "kubuntu", "software-sources" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>here is a copy of mine</p>\n\n<pre><code># deb cdrom:[Ubuntu 11.04 _Natty Narwhal_ - Release i386 (20110423)]/ natty main restricted\n\n# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to\n# newer versions of the distribution.\ndeb http://archive.ubuntu....
null
null
null
null
null
40513
1
null
2011-05-05T21:43:31.707
1
544
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/33050/how-do-you-change-the-font-color-in-the-unity-panel">How do you change the font color in the Unity panel?</a> </p> </blockquote> <p>I made a gtk theme and my panel black but the text color (globalmenu, clock) stays dark and I don't found out how to turn it readable. Where is the text color of the panel defined?</p> <p>Thanks.</p>
16667
-1
2017-04-13T12:23:45.630
2011-05-05T21:43:31.707
How can I change the text color of the unity top panel?
[ "unity", "panel", "text", "globalmenu", "colors" ]
0
0
CC BY-SA 3.0
[]
null
[]
null
null
2011-05-06T08:06:47.283
null
null
40517
1
40529
2011-05-05T21:51:14.707
0
339
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/9017/how-to-know-my-root-password">How to know my root password?</a> </p> </blockquote> <p>How to access root in Natty? usually, i use this methode for login as root <code>sudo password root</code> but in Natty this methode not work. there a solution?</p>
15045
-1
2017-04-13T12:24:49.720
2012-10-02T18:49:00.120
Root Access in Natty
[ "11.04", "root" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T21:53:31.150", "id": "44417", "postId": "40517", "score": "1", "text": "You have a typo, it's passwd, not password.", "userDisplayName": null, "userId": "235" } ]
{ "accepted": true, "body": "<p>If you want that you can install \"nautilus-gksu\" which will give you root access on the right click menu.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T22:16:32.580", "id": "40529", "lastActivityDate": "2011-05-05T22:16:32.580", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5499", "parentId": "40517", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>If you want to be root in a terminal it is <code>sudo su</code>.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-05-05T22:13:55.947", "id": "44426", "postId": "40520", "score": "0", "text": "no, I mean h...
null
null
2011-05-08T00:41:22.017
null
null
40518
1
40530
2011-05-05T21:57:17.790
2
3307
<p>The ubuntuone daemon is eating 100% of my CPU. I contacted the ubuntuone support but while they are looking for a solution, I'd like to kill it so it doesn't disturb my work.</p> <p>I can't kill -9 it, as it will respawn imidiatly under a new PID.</p> <p>I did removed it from my start up app settings, but it's still running at start up.</p>
308
null
null
2012-08-26T19:54:20.667
How to kill the ubuntuone daemon?
[ "ubuntu-one", "kill" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Try killing the daemon with the following:</p>\n\n<pre><code>sudo killall -9 ubuntuone-syncdaemon\n</code></pre>\n\n<p>To start it again try</p>\n\n<pre><code>python /usr/lib/ubuntuone-client/ubuntuone-syncdaemon &amp;\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-05T22:47:29.303", "id": "44443", "postId": "40530", "score": "0", "text": "Sweet, it works. But what does it does that kill -9 doesn't?", "userDisplayName": null, "userId": "308" }, { "creationDate": "2011-05-06T04:38:55.167", "id": "44485", "postId": "40530", "score": "0", "text": "'kill' stops one process. 'killall' stops all named processes - i.e. in this case, the daemon and any spawned child processes with the same name.", "userDisplayName": null, "userId": "14356" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T22:27:41.150", "id": "40530", "lastActivityDate": "2011-05-05T22:27:41.150", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "40518", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>If you don't need ubuntuone you can uninstall the <code>ubuntuone-syncdaemon</code> package.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-05T22:07:32.800", "id": "44424", "postId": "40522", "score": "0", ...
null
null
null
null
null
40519
1
40525
2011-05-05T21:58:34.763
1
238
<p>I've been unsuccessful with a Natty upgrade, in this sense: I'm unable to use anything but a Metacity theme ("Ubuntu Classic (No effects)"). So I lost all my Compiz effects, the most valuable of which, for me, was the grid layout tool. I think the problem is confused Radeon/ATI driver issues -- fglrx was dead on arrival with the update, and falling back to the generic ATI driver gets me Metacity but not Compiz.</p> <p>I'm now considering preserving my /home directory and doing a clean install of Natty on my system drive. Unity works decently well on a USB drive boot -- not that I'm especially fond of it, but I want to give it a fair shake. Presumably it will work with a clean install.</p> <p>But I'm frankly concerned about all the hidden gnome and X configuration files in my restored home directory. When I plop my old homedir onto a new 11.04 system install with all my old packages, what's going to happen?</p> <p>(amd64, RV710 Radeon HD 4550, dual monitors)</p>
16139
235
2012-07-25T15:36:03.990
2012-07-25T15:36:03.990
Pitfalls of using an old home directory with a new install?
[ "gnome", "64-bit" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>What will happen is that you will simply preserve your settings and find you lost nothing.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-24T16:20:21.400", "id": "49373", "postId": "40525", "score": "0", "text": "In fact it worked fine, with all the old config files in place.", "userDisplayName": null, "userId": "16139" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-05T22:07:51.923", "id": "40525", "lastActivityDate": "2011-05-05T22:07:51.923", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "40519", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>What will happen is that you will simply preserve your settings and find you lost nothing.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-24T16:20:21.400", "id": "49373", "postId": "40525", "score": "0", ...
null
null
null
null
null
40524
1
40556
2011-05-05T22:05:33.833
1
411
<p>I'd like to use a command line program (specifically <a href="http://remotesensing.org/geotiff/geotifcp.html" rel="nofollow">geotifcp</a>) which takes file_a.tif and file_a.tfw and outputs file_b.tif. Basically it combines two files of the same name with different file extensions and oututs the new file. I'd like to figure out how to batch out a few thousand of these things. I've created lists of all these files using basic <code>ls &gt; output</code> commands.<br> I'm not necessarily looking for an answer targeted at this program but more at scripting in general.<br> I'm also not looking for you to write this for me, just give me a shove in the general direction please.</p> <p>Thanks for any help!</p>
15795
null
null
2011-05-06T17:27:35.463
Using variables from a text file in Scripting
[ "scripts" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T23:38:03.080", "id": "44449", "postId": "40524", "score": "0", "text": "That's a bit broad. Better to start with specific questions that maybe target a variety of things you want to learn.", "userDisplayName": null, "userId": "10127" }, { "creationDa...
{ "accepted": true, "body": "<p>I tend to do stuff like this using sed or awk to build command lines, then pipe them to a shell. As a possible example, if you have a file of just the xxxxx_a.tif filenames,</p>\n\n<pre><code>sed -e 's/\\(.*\\)_.*/geotifcp \\1_a.tif \\1_a.tfw \\1_b.tif/' &lt; list-file.txt\n</code></pre>\n\n<p>to see if it's generating the commands you're after, then</p>\n\n<pre><code>sed -e 's/\\(.*\\)_.*/geotifcp \\1_a.tif \\1_a.tfw \\1_b.tif/' &lt; list-file.txt | sh\n</code></pre>\n\n<p>to run them all.</p>\n\n<p>An input line of <code>asdfasdfsadf_a.tif</code> results in <code>geotifcp asdfasdfsadf_a.tif asdfasdfsadf_a.tfw asdfasdfsadf_b.tif</code>, assuming that the input filenames are <code>[filename]_a.tif</code> and <code>[filename]_a.tiw</code> and the output name <code>[filename]_b.tif</code>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-06T00:34:07.097", "id": "44458", "postId": "40556", "score": "0", "text": "great minds ...", "userDisplayName": null, "userId": "11139" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T00:23:04.250", "id": "40556", "lastActivityDate": "2011-05-06T17:27:35.463", "lastEditDate": "2011-05-06T17:27:35.463", "lastEditorDisplayName": null, "lastEditorUserId": "6969", "ownerDisplayName": null, "ownerUserId": "16140", "parentId": "40524", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<h2>Command line arguments</h2>\n\n<p>You probably what to use command line arguments.</p>\n\n<p>Try this bash script:</p>\n\n<pre><code>#!/bin/bash\n\necho \"First argument is $1\"\necho \"Second argument is $2\"\n</code></pre>\n\n<p>If the script file name is <code>test1.sh</c...
null
null
null
null
null
40531
1
null
2011-05-05T22:28:51.823
3
5803
<p>I'm currently using Win7 64bit. I right clicked "wubi.exe" and chose "run as administrator", then nothing happened. I have "ubuntu-10.04.2-desktop-i386.iso" and "wubi.exe" in the same folder. Thanks. </p>
16671
null
null
2012-12-23T13:26:31.777
Wubi.exe won’t start
[ "64-bit", "wubi" ]
5
1
CC BY-SA 3.0
[ { "creationDate": "2011-09-12T18:05:25.583", "id": "69906", "postId": "40531", "score": "0", "text": "Please file such things as bugs. It's not a question. Launchpad.net is much better suited to handling these kinds of issues.", "userDisplayName": null, "userId": "19779" } ]
null
[ { "accepted": null, "body": "<p>The instructions to run Wubi are <a href=\"https://wiki.ubuntu.com/WubiGuide\" rel=\"nofollow\">here</a>.</p>\n\n<p><a href=\"https://wiki.ubuntu.com/WubiGuide#Can_I_force_Wubi_to_download_and_install_a_32_bit_version_of_Ubuntu.3F\" rel=\"nofollow\">Specifically relating to y...
null
null
null
null
null
40532
1
null
2011-05-05T22:29:42.520
0
223
<p><img src="https://i.stack.imgur.com/9o2hp.png" alt="virtual box error"></p> <p>hi, I have problem with Virtualbox as I installed from USC in Natty. but, I have installed <strong>virtualbox-ose-dkms</strong> what wrong? see picture.</p>
15045
7035
2011-06-07T15:31:22.743
2012-04-05T02:08:48.260
Virtualbox start problem
[ "11.04", "virtualbox" ]
1
3
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T22:44:32.040", "id": "44442", "postId": "40532", "score": "1", "text": "Does `lsmod | grep vboxdrv` show anything? If not, try running `sudo modprobe vboxdrv`.", "userDisplayName": null, "userId": "6053" }, { "creationDate": "2011-05-06T15:56:08.540"...
null
[ { "accepted": null, "body": "<p>run </p>\n\n<pre><code>sudo /etc/init.d/vboxdrv setup\n</code></pre>\n\n<p>The either reboot or run </p>\n\n<pre><code>sudo modprobe vboxdrv\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2012-02-25T01:17:14.073", "contentLicens...
null
null
null
null
null
40536
1
null
2011-05-05T22:37:18.960
3
313
<p>I created some launchers using the Main Menu application, and sorted them, for instance in "Games". They are well listed in the Unity Dash when I click on "All installed applications".</p> <p>However they are not listed in the Dash category called "Games". Is this a bug? How do I change it?</p> <p>I have version 0.2.46-0ubuntu3 of unity-place-applications.</p>
5592
null
null
2011-05-06T07:01:23.840
Why doesn't Dash respect the Main Menu categories?
[ "launcher", "unity-dash" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>In order to have applications listed in the appropriate category we may edit it's <a href=\"http://library.gnome.org/admin/system-admin-guide/stable/menustructure-desktopentry.html.en\" rel=\"nofollow\">.desktop file</a> (e.g. found in <code>~/.local/share/</code> or in <code...
null
null
null
null
null
40537
1
null
2011-05-05T22:38:44.153
1
1375
<p>I am using Ubuntu 10.10 64bit and I am trying to install cx_Oracle for python3. I managed to install Oracle XE itself from a deb, but it is 386 version. When I try to install cx_Oracle through easy_install3 I get:</p> <pre><code>/usr/bin/ld: cannot find -lclntsh </code></pre> <p>And before that:</p> <pre><code>/usr/bin/ld: skipping incompatible /usr/lib/oracle/xe/app/oracle/product/10.2.0/ </code></pre> <p>What I can do to have cx_Oracle installed?</p>
238
null
null
2012-03-07T06:48:10.930
cx_Oracle on 64bit architecture
[ "python", "oracle" ]
1
4
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T04:34:30.367", "id": "44484", "postId": "40537", "score": "0", "text": "Have you tried this? -> http://eddymulyono.livejournal.com/76874.html", "userDisplayName": null, "userId": "1182" }, { "creationDate": "2011-05-08T20:56:02.923", "id": "45279...
null
[ { "accepted": null, "body": "<p>The cx-oracle easy installer is obviously broken. The best thing to do is to go to the developers/packagers and get them to create a debian package for installation on Debian and Ubuntu distributions. This will allow the package to be installed with the known properties of th...
null
null
null
null
null
40538
1
45300
2011-05-05T22:39:50.983
0
1226
<p>This is not my original question where they were completely transparent and are just not there. I have reinstalled ccsm, but they are still not there. </p> <p>I have tried <code>unity --reset</code> which I thought would help but it says that unity is not there. I an ccsm in unity and I couldn't even turn on and off unity. Why is it doing this and how can I stop it? I know the shortcut keys for terminal and ccsm in ubuntu so I can adapt from there and in the GNOME classic side. I have had lots of trouble with Natty and kind of don't like it. I tried to uninstall ccsm for some more hard drive space not knowing that it was so closely attached to the OS. I reinstalled it I think I deleted some crucial part of unity that control the panels. I now need to install unity. I tried <code>install unity</code> which didn't work and I need some command.</p>
14748
14748
2011-05-05T22:56:00.977
2011-05-26T12:59:52.273
I uninstalled Compiz and now the Unity panels has disappeared
[ "11.04", "unity", "compiz", "panel", "ccsm" ]
1
8
CC BY-SA 3.0
[ { "creationDate": "2011-05-05T22:44:19.947", "id": "44441", "postId": "40538", "score": "0", "text": "We need more detail on what you're doing here and what you want to accomplish. Your description sounds like you were trying to turn unity off in which case it you appeared to have shut it off or...
{ "accepted": true, "body": "<p>Unity Panel depends on having Compiz. The following options for Unity are needed:</p>\n\n<ul>\n<li>OpenGL</li>\n<li>Composite</li>\n<li>Desktop Wall</li>\n</ul>\n\n<p>You could logout and login again but remember to have compiz and those options activated for Unity Panel.</p>\n\n<p>Since Unity Panel NEEDS Desktop Wall to do the hide/show effect, you can not activate the Cube, that is, the Rotating Cube Effect and the Desktop Cube since they disable the Desktop Wall, hence disabling Unity Panel, hence destroying the world (Of Unity) as we know it. Its horrible!</p>\n\n<p>To go to this options just open Dash with <kbd>SUPER</kbd> or <kbd>ALT</kbd>+<kbd>F2</kbd> and type <code>Compiz Settings</code>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-26T12:59:52.273", "id": "45300", "lastActivityDate": "2011-05-26T12:59:52.273", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "40538", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Unity Panel depends on having Compiz. The following options for Unity are needed:</p>\n\n<ul>\n<li>OpenGL</li>\n<li>Composite</li>\n<li>Desktop Wall</li>\n</ul>\n\n<p>You could logout and login again but remember to have compiz and those options activated for Unity Panel.</p>...
null
null
null
null
null
40540
1
40573
2011-05-05T22:50:12.857
0
737
<p>I'm using an external keyboard for my laptop. The keyboard (USB) does not have a suspend button. This means that I have to keep opening my laptop's lid (I don't want to do that very often as I'm also using an external monitor) in order to wake the laptop up from the suspended state.</p> <p>Can I map some key combination to wake the laptop up from the suspended state?</p> <p>Note that it may not be as trivial as it seems, as it has to work for waking the laptop up and likely Gnome shortcuts and similar things will not work. Likely it has to be some lower level thing, but what (if at all possible)?</p> <p>PS: I'm using Ubuntu 11.04 64 bit</p>
null
235
2012-03-11T17:27:51.930
2012-03-11T17:27:51.930
Can I map some key combination to the suspend function (it should also work for waking up the machine from the suspended state)?
[ "suspend" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>When the computer suspends, Ubuntu is no longer running until you resume, so there is no way for Ubuntu to set a keyboard shortcut that will work while the computer is suspended. </p>\n\n<p>Many PC's have an option in the BIOS to trigger a resume from suspend if <em>any</em> key is pressed. That may be your best bet, combined with setting a specific shortcut inside Ubuntu for suspending.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-06T04:14:36.377", "id": "44482", "postId": "40573", "score": "0", "text": "I understand. So I assume external keyboards that have a suspend button on them are sending a \"hardcoded\" signal that the hardware in a laptop can understand (so no involvment from the software/OS).", "userDisplayName": "user12681", "userId": null }, { "creationDate": "2011-05-06T06:30:27.177", "id": "44502", "postId": "40573", "score": "0", "text": "It doesn't matter whether the keyboard is external or not. I've never heard of any feature that maps *specific* keys while a computer is suspended. The only feature I've seen is what I've described above: wake-up on *any* key press.", "userDisplayName": null, "userId": "880" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T02:32:52.513", "id": "40573", "lastActivityDate": "2011-05-06T02:32:52.513", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "880", "parentId": "40540", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>When the computer suspends, Ubuntu is no longer running until you resume, so there is no way for Ubuntu to set a keyboard shortcut that will work while the computer is suspended. </p>\n\n<p>Many PC's have an option in the BIOS to trigger a resume from suspend if <em>any</em> ...
null
null
null
null
user12681
40541
1
41378
2011-05-05T22:52:12.813
4
6969
<p>There are at least two ways to configure GDM I know of:</p> <ol> <li>is the <code>/etc/gdm/custom.conf</code> file that can be either hand edited or edited throu GUI gdmsetup. Autologin and timed login are configured here.</li> <li>are the gconf schemas under /apps/gdm/ Those can be edite with gconf-editor running either as root or as a normal user. I guess editing it as a casual user does not have any impact since GDM runs as root. Sound among other things can be turned off here.</li> </ol> <p>Are there any other ways? GDM refuses to let me autologin (on a fresh Natty install) (it does not ask for password, it merely wants that I select myself as a user at the login screen even though I am the only user on this computer).</p> <p>Other interesting thing is that even if I purge GDM, its settings (including the custom.conf) do not change. Therefore there seems no way to reset GDM's settings.</p> <p>BTW: my custom.conf is as follows (drew is my user):</p> <pre><code>[daemon] TimedLoginEnable=false AutomaticLoginEnable=true TimedLogin=drew AutomaticLogin=drew TimedLoginDelay=1 DefaultSession=gnome </code></pre> <p>Edit: Ha, maybe it is not a configuration issue after all but a bug: <a href="https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/753707" rel="nofollow">https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/753707</a></p>
16234
16234
2011-05-07T18:23:47.677
2011-05-08T22:45:31.480
How does GDM configuration work?
[ "11.04", "configuration", "gdm" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I am not actually sure if there are other ways or not to configure GDM, but it seems my question was sparked with this bug: <a href=\"https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/753707\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/753707</a></p>\n\n<p>If so, gdmsetup configures what there is to configure about GDM, GDM only does not take autologing into account if ecryptfs is used.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-08T22:45:31.480", "id": "41378", "lastActivityDate": "2011-05-08T22:45:31.480", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "16234", "parentId": "40541", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I am not actually sure if there are other ways or not to configure GDM, but it seems my question was sparked with this bug: <a href=\"https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/753707\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/753707</a></p>...
null
0
null
null
null
40542
1
40583
2011-05-05T23:00:46.353
2
1425
<p>There used to be an option to activate the Compiz widget layer in ccsm, but in Ubuntu 11.04 i can't find it anymore, is it still available? I need it for screenlets.</p>
2055
7035
2011-06-07T17:04:09.797
2017-03-17T09:53:03.603
Is the Compiz widget layer still available?
[ "11.04", "compiz", "screenlets", "widgets" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Install <a href=\"http://packages.ubuntu.com/compiz-plugins-extra\" rel=\"nofollow noreferrer\">compiz-plugins-extra</a> <a href=\"http://apt.ubuntu.com/p/compiz-plugins-extra\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install compiz-plugins-extra\"></a>, I believe it should be included there.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-07T04:38:14.900", "id": "44794", "postId": "40583", "score": "0", "text": "Thank you, i would never have found the solution myself.", "userDisplayName": null, "userId": "2055" }, { "creationDate": "2011-05-07T04:58:36.640", "id": "44798", "postId": "40583", "score": "0", "text": "@K.Hendrik: You're welcome :)!", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T03:43:06.163", "id": "40583", "lastActivityDate": "2017-03-17T09:53:03.603", "lastEditDate": "2017-03-17T09:53:03.603", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "40542", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Install <a href=\"http://packages.ubuntu.com/compiz-plugins-extra\" rel=\"nofollow noreferrer\">compiz-plugins-extra</a> <a href=\"http://apt.ubuntu.com/p/compiz-plugins-extra\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install compiz-pl...
null
null
null
null
null
40543
1
null
2011-05-05T23:08:03.397
13
8883
<p>I can tag files with nautilus but haven't found a solution to find files by tags so far. Tracker-search-tool doesn't offer to search for tags, nor does Nautilus, nor any other application I'm aware of. Just upgraded to 11.04.</p>
16676
null
null
2012-10-25T09:53:45.783
How to search for files by tags?
[ "nautilus", "files", "tagging", "tracker" ]
3
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-12T11:40:36.790", "id": "46157", "postId": "40543", "score": "0", "text": "I was sure that there was a facility in tracker to search by tags but that may have been linked to nepomuk which I used to have with kubuntu", "userDisplayName": null, "userId": "16436" ...
null
[ { "accepted": null, "body": "<p>It's called tracker-tag:</p>\n\n<p><a href=\"http://manpages.ubuntu.com/manpages/natty/man1/tracker-tag.1.html\" rel=\"noreferrer\">http://manpages.ubuntu.com/manpages/natty/man1/tracker-tag.1.html</a></p>\n\n<p>It's provided by the tracker-utils package, which is the command...
null
null
null
null
null
40547
1
null
2011-05-05T23:34:19.220
4
2374
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/68763/how-to-change-icons-size-inside-unity-e-g-on-all-programs-panel">How to change icons size inside unity (e.g. on all programs panel)</a> </p> </blockquote> <p>Has anyone found a way to resize the icons in the dash in Natty or Oneiric? </p>
16678
-1
2017-04-13T12:23:28.253
2011-10-21T09:21:16.373
Can I change the icon size in dash?
[ "11.04", "unity", "11.10", "icons", "unity-dash" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The icon size is hardcoded in 11.04, so this is currently not possible.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T00:39:38.227", "id": "40557", "lastActivi...
null
null
2011-10-21T10:14:38.593
null
null
40549
1
null
2011-05-05T23:38:47.727
4
3944
<p>Maybe i don't understand the system. Upgraded to (reinstalled) Ubuntu 11.04.</p> <p>Is there any way the applications can use something that i set in nautilus, or it's just a wrong idea about the usage?</p> <p>In nautilus the file association works great, easy, handy and so on...</p> <p>My first problem was when installed chromium. Downloaded a file, a popup ask for assocation, set nautilus. And it only opens folder, for any file show an error: it is not a direcrory. Ok, so i thought Google chrome changed, because previously .pdf open acrobat,.torrent open vuze and so on. But now i have to open nautilus on download folder with it, than select and open the preferable application by manually and can't use any automatism i used to.</p> <p>Then in gnome commander , it not followed the default association i set in nautilus. Ok maybe it is commander fault. use it's own.</p> <p>Then in calibre, the "read" use again this default "can't open its not a directory" error</p> <p>So it's seems to me the applications not using well this file associations or i really don't understand the aim of file associations system (mime,.desktop files,...)</p> <p>If there is no solution i think i have to search some program (if any exist's) which can identify and launch application and set as default instead nautilus.</p>
16675
7035
2011-06-07T15:28:08.627
2018-05-08T08:03:14.347
How can I deal with file association in different application(not in Nautilus)?
[ "11.04", "file-association" ]
5
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You have to edit the <code>.desktop</code> file from that application and add the mime type</p>\n\n<p>e.g. (the examples below are from an application that i had to fix myself)</p>\n\n<pre><code>[Desktop Entry]\nEncoding=UTF-8\nName=Guitar Pro 6\nComment=Tablature Edition Sof...
null
null
null
null
null
40553
1
null
2011-05-06T00:07:21.043
4
4027
<p>I tried to use a zenity progress bar with cclive. I'm writting a script to download web videos files and I wanna see the progression of the download.</p> <p>But when I try something like</p> <pre><code>$cclive &lt;url&gt; 2&gt;&amp;1 | zenity --progress </code></pre> <p>But when I execute the command line but it not seems to work. Any idea of how I can do that ?</p> <p>BR,</p> <p>[Edit]</p> <p>cclive have this kind of output :</p> <pre><code>cclive http://www.youtube.com/watch?v=youtubevideo Checking ... .......... ..........done. youtubevideo.flv 2.5M 75.8K/s 00:09:29 5% </code></pre> <p>So I need to send the last part to sdout but I dont know how. Else and about pulsate, we can't see th progression with this option, and I really need it... So I will not using pulsate for this script.</p> <hr /> <p>think that the paste <code> | zenity --progress</code> after commands - will not work.</p> <p>You know that it's loaded only at the end of downloading.</p> <p>I try to use zenity with <code>--percentage</code> parameter, and i know the best way to check state of process.</p> <p>In my script I know size of file.</p> <pre><code>size_t=$theoretical_size_of file # I don't know where are from you take FULL size of your file. I know it in myself script. size_r=`du -b /tmp/$filename` perc=$[$size_t/$size_r*100] </code></pre> <p>Where should i write <code>zenity --progress --percentage=$perc</code></p> <p>AND i think that it should be a loop, cause <code>du -b</code> continiously changing...</p>
16247
-1
2020-06-12T14:37:07.210
2012-02-03T11:54:14.817
How to use a zenity progress bar with cclive
[ "command-line", "scripts", "zenity" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>I don't know how <code>cclive</code> works, but in order to make <code>zenity</code> display a progress bar, it needs to send percentages to stdout.</p>\n\n<p>Here's an example:</p>\n\n<pre><code># This works:\n(for i in $(seq 0 3 100); do echo \"$i\"; sleep 0.1; done) | zeni...
null
null
null
null
null
40559
1
null
2011-05-06T01:08:09.107
3
3359
<p>Is Dansguardian still up to date? The last release was in 2009 and there seems to be no active development on it. Are there any major bugs holding it back? MinD web filter <a href="http://code.google.com/p/mindwebfilter/" rel="nofollow">http://code.google.com/p/mindwebfilter/</a> seems promising, but a little on the unstable side. I am looking for a web filter that can handle at least 300 or so users in a school. They currently use squidGuard, which was also last released in 2009.</p>
4794
4794
2011-05-06T01:21:14.110
2015-05-21T16:58:34.383
Dansguardian Out of Date?
[ "server" ]
5
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The <a href=\"http://dansguardian.org/\" rel=\"nofollow\">website</a> of <a href=\"https://launchpad.net/ubuntu/natty/i386/dansguardian\" rel=\"nofollow\">dansguardian</a> latest newsitem is from march 2011 (last one before that was 2009 indeed and even worse so is the last u...
null
null
null
null
null
40560
1
null
2011-05-06T01:10:25.270
10
2689
<p>Now that unity has the bar on the left side of the screen, I find that it ends up obscuring desktop icons since desktop icons auto align top-bottom/left-right. To correct this I need to constantly keep dragging icons to the right so that they're not underneath the bar, but this isn't an elegant solution as new icons will be placed as far top-left as possible.</p> <p>Is there a way I can set the desktop icons in Ubuntu to auto-align on the right side of the screen? For example, top-bottom/right-left?</p>
16683
25863
2012-11-21T21:44:32.330
2012-11-21T21:44:32.330
How can I set desktop icons to auto-align to the right side of the screen?
[ "unity", "nautilus", "icons" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>this has been a nautilus bug since they first came out with nautilus:</p>\n\n<p><a href=\"http://bugzilla.gnome.org/show_bug.cgi?id=42479\" rel=\"nofollow\">http://bugzilla.gnome.org/show_bug.cgi?id=42479</a></p>\n\n<p>if you download the source you can look at it yourself: c...
null
null
null
null
null
40565
1
null
2011-05-06T01:40:15.267
2
580
<p>I was having serious Xorg freezing problems with my ATI Graphics card - but Unity was loading.</p> <p>So I removed it in favor of a new Nvidia card. During the initial boot-up before I could install the Nvidia drivers, I got a message that said "Your hardware can not support Unity, so you will be loaded into Classic Ubuntu".</p> <p>Since then I've installed the official Nvidia drivers and everything is running great, but I can't get Unity to restart.</p> <p>Every time I reboot or login / logout I still get Gnome, even when I'm picking "Ubuntu" from the login menu.</p> <p>Any suggestions?</p>
76060
1992
2011-05-06T03:41:33.510
2012-01-07T05:29:16.057
Switched graphics cards and lost Unity
[ "11.04", "unity", "gnome", "drivers", "nvidia" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T05:16:37.410", "id": "44493", "postId": "40565", "score": "0", "text": "So turns out it's a well documented problem with the new Nvidia driver and Unity 3d. Joy.", "userDisplayName": null, "userId": "76060" } ]
null
[ { "accepted": null, "body": "<p>There seem to be problems with many nVidia cards, so many are blacklisted from propietary drivers, and their users are recommended to use <a href=\"http://apt%3aunity-2d\" rel=\"nofollow\">Unity 2D</a> in the meantime. Please run in a terminal:</p>\n\n<pre><code>/usr/lib/nux/...
null
null
null
null
null
40567
1
40646
2011-05-06T01:53:06.543
4
946
<p>For example, to render:</p> <pre><code>while (head == tail) { head++; a[head] = 0 } </code></pre> <p>into</p> <pre><code>while (head == tail) { head++; a[head] = 0 } </code></pre>
16404
null
null
2017-03-17T15:43:51.933
How do I format code from the web using Vim?
[ "vim" ]
3
1
CC BY-SA 3.0
[ { "creationDate": "2017-03-17T15:45:48.363", "id": "1399358", "postId": "40567", "score": "0", "text": "check [clang format tool](https://clang.llvm.org/docs/ClangFormat.html). I think it is well suited for this job", "userDisplayName": null, "userId": "476708" } ]
{ "accepted": true, "body": "<p>(Firstly, you need a semicolon before the last <code>}</code> in order for this to be valid C; the semicolon should be thought of as terminating statements in C, rather than as separating statements. Smart automatic indentation may not work properly unless you add that semicolon.)</p>\n\n<p>Vim's <code>=</code> command (<code>:help =</code>) can be used to run code through an automatic indentation program, though it requires some configuration. The basic idea is that you set the <code>equalprg</code> option (<code>:help 'equalprg'</code>) to a program that applies the indentation you want, and then use <code>=</code> in command mode to run it. <code>=</code> works like other Vim motion-based commands such as <code>d</code> and <code>y</code>; for example, <code>==</code> indents the current line, <code>=ap</code> indents a paragraph, or you can use a visual range: <code>ggVG=</code> indents the whole file.</p>\n\n<p>Now, by default, <code>equalprg</code> is set to the empty string, which only does basic per-line indentation built into Vim. To do the kind of thing you're asking for, the best tool for the job is <code>indent</code>:</p>\n\n<p><a href=\"http://packages.ubuntu.com/indent\" rel=\"nofollow noreferrer\">indent</a> <a href=\"http://apt.ubuntu.com/p/indent\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install indent\"></a></p>\n\n<p><code>indent</code> has a vast array of options for various indentation styles; by default it uses the GNU coding style, but you'll probably want to customise it to suit your project's preferences. See\n<a href=\"http://manpages.ubuntu.com/manpages/natty/en/man1/indent.1.html\" rel=\"nofollow noreferrer\">man indent</a> for details. To include spaces in the value of <code>equalprg</code>, you need to quote them with a backslash, so for example if you wanted to use K&amp;R indentation style you would use <code>:set equalprg=indent\\ -kr</code>.</p>\n\n<p>You can also have the '=' command choose the appropriate indentation based on the file type, by using <code>:filetype indent on</code> - type <code>:help filetype</code> within vim for more info.</p>\n\n<p><code>:set autoindent</code> will tell vim to indent as you type. Adding either of these commands (minus the leading ':') to your ~/.vimrc file will make them permanent.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T08:55:04.170", "id": "40646", "lastActivityDate": "2017-03-17T15:42:24.800", "lastEditDate": "2017-03-17T15:42:24.800", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "3228", "parentId": "40567", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>Like any other text editor, VIM doesn't do that automatically.</p>\n\n<p>Open a file with vim, press <kbd>i</kbd> for insert, and now you can edit freely, when done press <kbd>Esc</kbd> to exit insert mode and then to close and save the document write <code>:wq</code> for wri...
null
null
null
null
null
40569
1
null
2011-05-06T02:02:21.087
5
1108
<p>After upgrading to Natty and the 2.6.38-8 kernel I could no longer obtain the 1920x1080 resolution available in Maverick with 2.6.35-22. In fact the boot occasionally hung. However, after selecting the remaining 2.6.35-22 kernel, the high resolution was available. </p> <p>I then made the mistake of completely reinstalling, but could never get the higher resolutions with 2.6.38-8, no matter what I did. e.g. trying the nvidia proprietary driver, creating an xorg.conf. Even from the command line using</p> <pre><code>xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync xrandr --addmode DVI-I-1 1920x1080_60.00 xrandr --output DVI-I-1 --mode 1920x1080_60.00 </code></pre> <p>all I would get would be a blank screen and the monitor reporting no input. (Low resolutions displayed fine with xrandr.) I could actually add the 1920x1080 to the already existing probe-reported resolutions in the pool of available resolutions, but choosing it would give the blank screen. In the end I installed the 2.6.35-22 kernel again. The high resolution is back.</p> <p>For a while there, staying up all night and trying many things, I thought that a new video board or monitor might be needed, but deep down, I knew that they were both OK.</p> <p>My question is - "Is this some bug involving the latest kernel, that will go away, or if this persists in future kernels, is there a way to make sure that I can keep my native resolution?"</p>
16684
235
2011-05-06T02:03:34.893
2011-11-24T00:33:51.163
Higher resolutions unavailable with 2.6.38-8 kernel
[ "11.04", "xorg", "kernel", "resolution" ]
1
5
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T02:38:36.847", "id": "44469", "postId": "40569", "score": "0", "text": "+1 for sure, I'm also 1920x1080 and I have been struggling with http://askubuntu.com/questions/12578/adjusting-display-geometry-in-a-virtual-machine - Still no solution!", "userDisplayName":...
null
[ { "accepted": null, "body": "<p>No guarantees, but you might try installing the latest kernel from the Kernel PPA; I have an Intel video system, but that fixed several problems I had. Check out:\n<a href=\"https://launchpad.net/~kernel-ppa/+archive/ppa\" rel=\"nofollow\">https://launchpad.net/~kernel-ppa/+a...
null
null
2011-12-27T21:53:22.333
null
null
40571
1
null
2011-05-06T02:15:16.533
16
7145
<p>Every time I launch a program, say firefox, it starts maximized, how can I keep this from happening. Its so ridiculous that they have this as the default.</p>
16693
235
2011-06-05T22:08:30.500
2011-10-23T11:47:02.847
How to keep programs from launching maximized?
[ "11.04", "window-management" ]
5
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Found this in <a href=\"http://ubuntuforums.org/showthread.php?t=1733196\" rel=\"nofollow\">this thread</a>, tested it, and it seems to be true.</p>\n\n<blockquote>\n <p>You need to open the app, resize the window so it is below 75% of the screen size, then close the app.\n ...
null
null
null
null
null
40572
1
41909
2011-05-06T02:30:53.113
3
3127
<p>I heard that you can use <code>modprobe</code> somehow to reload the wifi driver. But I'm not sure what driver I'm using. How do I find this out and what's the command to reload the wifi driver into the kernel?</p>
8986
null
null
2011-05-10T22:44:21.810
Sometimes my wifi on my Thinkpad X201 stops working and I have to restart. Any workaround?
[ "wireless", "modprobe" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Let me introduce a mixture of searching and guessing. </p>\n\n<p>lspci:</p>\n\n<pre><code>lspci | grep -i Wireless\n02:04.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)\n</code></pre>\n\n<p>The name might be different, without 'wireless', so maybe you just perform the lspci-command, and conclude yourself, which might be the w-lan chip.</p>\n\n<p>lshw is another approch:</p>\n\n<pre><code>sudo lshw -C net \n[sudo] password for stefan: \n *-network:0 \n description: Ethernet interface\n product: RTL-8139/8139C/8139C+\n vendor: Realtek Semiconductor Co., Ltd.\n physical id: 0\n bus info: pci@0000:02:00.0\n logical name: eth0\n version: 10\n serial: 00:13:d4:6a:60:d2\n size: 10MB/s\n capacity: 100MB/s\n width: 32 bits\n clock: 33MHz\n capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation\n configuration: autonegotiation=on broadcast=yes driver=8139too driverversion=0.9.28 duplex=half latency=64 link=no maxlatency=64 mingnt=32 multicast=yes port=MII speed=10MB/s\n resources: irq:4 ioport:d800(size=256) memory:ff9ffc00-ff9ffcff\n *-network:1 UNCLAIMED\n description: Network controller\n product: PRO/Wireless 2200BG [Calexico2] Network Connection\n vendor: Intel Corporation\n physical id: 4\n bus info: pci@0000:02:04.0\n version: 05\n width: 32 bits\n clock: 33MHz\n capabilities: pm cap_list\n configuration: latency=64 maxlatency=24 mingnt=3\n resources: memory:ff9fe000-ff9fefff\n</code></pre>\n\n<p>Now I use dmesg: </p>\n\n<pre><code>dmesg | grep -i 2200BG\n</code></pre>\n\n<p>nothing, too narrow,</p>\n\n<pre><code>dmesg | grep 2200\n[315676.220024] eth0: no IPv6 routers present\n[332456.220087] eth0: link up, 100Mbps, full-duplex, lpa 0xC5E1\n[375282.220037] eth0: no IPv6 routers present\n</code></pre>\n\n<p>modprobe -l or lsmod, if the driver is loaded is another option: </p>\n\n<pre><code>modprobe -l | grep 2200\nkernel/drivers/net/wireless/ipw2x00/ipw2200.ko\n</code></pre>\n\n<p>If you have sources installed, the drivers should be in:</p>\n\n<pre><code>ls /usr/src/linux/drivers/net/wireless/\n</code></pre>\n\n<p>From the <a href=\"http://www.thinkwiki.org/wiki/Category%3aX201\" rel=\"nofollow\">ThinkWiki-Page</a> I guess, your chipset could be a Realtek RTL8192SE. So you would use rtl/rtl8192/rtl8192se for grepping. </p>\n\n<p>r8192se_pci might be your driver. so </p>\n\n<pre><code>sudo rmmod r8192se_pci\nsudo modprobe r8192se_pci\n</code></pre>\n\n<p>could save you from reboots. I didn't read the whole page on Thinkwiki about your model - maybe you got the time. </p>\n\n<p>For laptops in general, the <a href=\"http://www.linux-on-laptops.com/\" rel=\"nofollow\">linux-on-laptops page</a> is a general good adress, to see, what experience other user made with linux on laptops and which knowledge they gained. Some models change chipsets and drivers, but it is much better than guessing. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2014-10-19T15:31:03.033", "id": "737361", "postId": "41909", "score": "0", "text": "Nice. I wonder what might be the drivers and commands to run for my thinkpad t400? http://askubuntu.com/questions/538786/t400-wireless-adaptor-not-work", "userDisplayName": null, "userId": "1471" }, { "creationDate": "2016-10-14T13:50:16.473", "id": "1279529", "postId": "41909", "score": "1", "text": "see http://askubuntu.com/questions/725590/network-unclaimed-shown-for-network-controller/837005#837005", "userDisplayName": null, "userId": "371220" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-10T22:44:21.810", "id": "41909", "lastActivityDate": "2011-05-10T22:44:21.810", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10068", "parentId": "40572", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Let me introduce a mixture of searching and guessing. </p>\n\n<p>lspci:</p>\n\n<pre><code>lspci | grep -i Wireless\n02:04.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)\n</code></pre>\n\n<p>The name might be different, with...
null
null
null
null
null
40575
1
null
2011-05-06T02:47:03.663
1
1293
<p>I'm getting used to a new way of working in Unity and am really enjoying it. The hardest thing I face now is tweaking it so that it works as nicely as possible. On the face of it, customisation is very limited.</p> <p>super+f -> filter to show documents. Hmmm. The most common document format I use after .txt files is .lyx files. They really are documents. They look a bit unhappy down in the 'other' category. Is there any way to change this?</p> <p>What I would <em>really</em> like is to make documents the default, because 'recent' gets completely filled up with photos. </p>
16157
7035
2011-06-07T15:29:48.907
2012-03-31T20:03:44.160
How to customize file filtering in Unity dash
[ "unity", "customization", "unity-dash" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>In 11.10 you can filter your results to suit the file type you are looking for.</p>\n<p>Open the Dash and select the Find Files tab.</p>\n<p><img src=\"https://i.stack.imgur.com/5fdoP.png\" alt=\"Dash - files search\" /></p>\n<p>You can then select the filter results drop dow...
null
null
null
null
null
40582
1
null
2011-05-06T03:33:32.660
1
9158
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/37084/nvidia-driver-activated-but-currently-not-in-use">Nvidia driver activated but currently not in use</a> </p> </blockquote> <p>Under <strong>System > Administration > Additional Drivers</strong> It shows that I have a driver active but not in use. How can I activate it?</p> <p>this window-<img src="https://i.stack.imgur.com/aa2gA.png" alt="enter image description here"></p>
15909
-1
2017-04-13T12:23:18.167
2011-05-06T05:19:17.083
How do I use an activated(but not in use) driver?
[ "drivers", "nvidia" ]
0
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T05:11:07.823", "id": "44491", "postId": "40582", "score": "0", "text": "Many people are having issues - http://ubuntuforums.org/showthread.php?t=1742640 there's all type of bug reports throughout that post.", "userDisplayName": null, "userId": "15909" } ]
null
[]
null
0
2011-05-08T00:39:46.433
null
null
40584
1
40588
2011-05-06T04:01:07.853
0
2126
<p>What packages do I require to install Ubuntu One on Ubuntu with other DEs? I can't use the regular Ubuntu on this seriously old desktop. I just need enough for the backend to function in the background and sync me files.</p> <p>Xfce uses GTK+, so what package should I install for the frontend?</p>
814
814
2011-05-06T14:04:07.310
2011-05-06T20:18:13.637
Install Ubuntu One on *ubuntu
[ "ubuntu-one", "desktop-environments" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Re ubuntuone and xubuntu - sounds very similar to this question and answer: <a href=\"https://askubuntu.com/questions/15710/ubuntu-one-for-xfce\">Ubuntu One for Xfce or Xubuntu?</a></p>\n\n<p>Its been tidied up in 11.04 so that you dont have to install all the Gnome dependencies and other Gnome files</p>\n\n<p>To summarise - use Software Centre and search for \"UbuntuOne\".</p>\n\n<p>If you want to use the terminal so that you are content to see all the additional packages being installed then</p>\n\n<pre><code>sudo apt-get install ubuntuone-control-panel-gtk\n</code></pre>\n\n<p>This will install the main control panel &amp; other services to allow you to sync with the UbuntuOne folder in your Home folder.</p>\n\n<p>To launch the Control Centre - create a menu link to run /usr/bin/ubuntuone-control-panel-gtk</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-06T05:13:50.517", "id": "44492", "postId": "40588", "score": "0", "text": "That question doesn't say anything about which packages to install to get U1 in the first place.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-06-25T17:32:28.790", "id": "56244", "postId": "40588", "score": "0", "text": "@Oxwivi: That control panel has a GUI...", "userDisplayName": null, "userId": "8973" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T04:53:43.490", "id": "40588", "lastActivityDate": "2011-05-06T20:18:13.637", "lastEditDate": "2017-04-13T12:24:49.530", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "40584", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Re ubuntuone and xubuntu - sounds very similar to this question and answer: <a href=\"https://askubuntu.com/questions/15710/ubuntu-one-for-xfce\">Ubuntu One for Xfce or Xubuntu?</a></p>\n\n<p>Its been tidied up in 11.04 so that you dont have to install all the Gnome dependenc...
null
null
null
null
null
40585
1
null
2011-05-06T04:06:54.107
4
297
<p>It would be nice to be able to just email in info to my UbuntuOne account for retrieval later. </p>
16697
236
2011-05-06T05:32:47.630
2011-05-08T11:35:58.857
Can I use email to upload files into my Ubuntuone account?
[ "ubuntu-one", "email" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>No, as far as I'm aware you can't email files to your Ubuntu One account, however you can upload files from anywhere with an Internet connection and a web browser by going to <a href=\"https://one.ubuntu.com/\" rel=\"nofollow noreferrer\">https://one.ubuntu.com/</a>, logging ...
null
null
null
null
null
40589
1
null
2011-05-06T05:13:46.557
1
734
<p>I have Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 0c) and when I plug a vga or HDMI cable I can't see the second monitor and the I only see a mess main monitor, like this screenshot <a href="http://ubuntuone.com/p/rBo/" rel="nofollow">http://ubuntuone.com/p/rBo/</a>. </p>
2432
235
2011-07-14T02:36:41.547
2011-09-02T02:38:57.460
Second monitor doesn't work on an Intel GM965
[ "11.04", "video", "display" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-07-14T09:49:55.790", "id": "59353", "postId": "40589", "score": "0", "text": "The screenshot link does not work: \"Could not locate object\". I suggest http://imgur.com/", "userDisplayName": null, "userId": "136" } ]
null
[ { "accepted": null, "body": "<p>I often use a second monitor with my laptop, which has an Intel GM965 video card. Usually it works fine, sometimes it fails in one of the two ways:</p>\n\n<ul>\n<li><p>Both screens freeze and nothing happens, I can't interact with the system. Forcefully killing the GUI sess...
null
null
null
null
null
40590
1
40593
2011-05-06T05:17:04.587
1
1007
<p>I've been using Compiz Fusion under the GNOME environment happily with 10.10 Maverick Meerkat, but when 11.04 Natty Narwhal came along, it started giving me problems with windows missing a title bar. I finally got the effects to work and the title bars back, at the cost of:</p> <ol> <li><p><strong>Not being able to switch between workspaces on the Workspace Switcher</strong></p></li> <li><p><strong>Undraggable windows, even with the Alt-drag method</strong></p></li> </ol> <p>I checked online, and nothing seems to give me any relevant answer. I asked around on #ubuntu on IRC, and a user suggests it might be a bug with the nVidia card. (I assume it would be the nVidia driver that I used with 10.10 with the Intel integrated graphics).</p> <p>Anybody has any input on how to deal with this issue? I could bear with it (since I'm just using Metacity). If there is no absolute way, then my last resort would be to downgrade to 10.10.</p>
16700
235
2012-02-13T23:32:30.060
2012-02-13T23:32:30.060
Desktop Cube, Compiz, and GNOME. Bad Mix?
[ "gnome", "compiz" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Yes, it's bad mix. Desktop Cube is not supported in Unity. But if you really want it, try this <a href=\"http://www.omgubuntu.co.uk/2011/04/compiz-cube-natty/\" rel=\"nofollow\">http://www.omgubuntu.co.uk/2011/04/compiz-cube-natty/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T05:56:56.223", "id": "40593", "lastActivityDate": "2011-05-06T05:56:56.223", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2026", "parentId": "40590", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Yes, it's bad mix. Desktop Cube is not supported in Unity. But if you really want it, try this <a href=\"http://www.omgubuntu.co.uk/2011/04/compiz-cube-natty/\" rel=\"nofollow\">http://www.omgubuntu.co.uk/2011/04/compiz-cube-natty/</a></p>\n", "commentCount": "0", "co...
null
null
null
null
null
40592
1
null
2011-05-06T05:38:09.007
5
1820
<p>So I currently have a dual-ati video card setup on my laptop. A low-power one and a high power one.</p> <p>In windows 7 the drivers switch video cards when on external vs internal power. Also one of the video cards contains an HDMI output which I would like to use as it lets me plug in my monitor.</p> <p>So is there an easy way to configure this?</p> <p>Video Cards: </p> <ul> <li>Radeon HD 4200 - Low power</li> <li>Radeon HD 5600 - High power (contains the HDMI output)</li> </ul> <p>Potential acceptable solutions:</p> <ul> <li>Deactivate low power card and use high power only. Worse battery life but whatever. However I don't want this done in BIOS since I want the good behavior in windows when dual booting.</li> <li>Get low power card working without high power card BUT HDMI output needs to work so I can plug monitor in.</li> </ul> <p>Some progress:</p> <p><code>aticonfig --adapter=all --initial</code> finds both adapters after restart. The problem is X cannot start. It goes to black screen and must be restarted.</p> <p><code>aticonfig --list-adapters</code> only shows one adapter in a working config. The undesirable</p> <p>configuring the high power adapter leads to same x not loading as --adapter=all</p>
1151
1151
2011-05-26T00:12:11.377
2011-05-31T15:58:07.113
ATI: Multiple Video Card / Monitor Setup -- Need help getting it working
[ "11.04", "video", "multiple-monitors", "ati", "hybrid" ]
2
5
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T17:29:23.747", "id": "44653", "postId": "40592", "score": "3", "text": "You might be interested in the [Linux Hybrid Graphics site](http://linux-hybrid-graphics.blogspot.com/).", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2011-05...
null
[ { "accepted": null, "body": "<p>Hybrid graphics has improved a bit lately. The latest Catalyst drivers provide a login/logout switch. Have a look at these websites:<br>\n<a href=\"https://launchpad.net/~hybrid-graphics-linux\" rel=\"nofollow\">https://launchpad.net/~hybrid-graphics-linux</a><br>\n<a href=\"...
null
null
null
null
null
40594
1
40605
2011-05-06T05:59:47.797
11
2807
<p>I want a software for blogging like Live Writer in Linux and GNOME.</p> <p>Do you have any idea? </p>
11915
23878
2014-02-03T06:51:36.903
2014-08-01T20:50:32.320
An alternative software to Live Writer?
[ "gnome", "software-recommendation", "blog" ]
5
1
CC BY-SA 3.0
[ { "creationDate": "2011-09-03T08:04:42.290", "id": "68395", "postId": "40594", "score": "1", "text": "A similar question\r\n\r\nhttp://askubuntu.com/questions/11317/blog-editor-software", "userDisplayName": null, "userId": "3872" } ]
{ "accepted": true, "body": "<p><a href=\"http://blogilo.gnufolks.org\" rel=\"nofollow noreferrer\"><strong>Blogilo</strong></a> is a great one.</p>\n\n<p><img src=\"https://i.stack.imgur.com/vXQNS.png\" alt=\"enter image description here\">\n<img src=\"https://i.stack.imgur.com/QAD0m.png\" alt=\"enter image description here\"></p>\n\n<hr>\n\n<p><strong>Edit</strong></p>\n\n<p><a href=\"https://addons.mozilla.org/en-US/firefox/addon/scribefire-blog-editor/\" rel=\"nofollow noreferrer\"><strong>ScribeFire Blog Editor</strong></a> is also a firefox (and some other browsers) extension which provides many features.</p>\n\n<blockquote>\n <p>ScribeFire is an extension for the Mozilla Firefox Web browser, Google Chrome Web browser, Opera Web Browser, and Apple Safari Web browser that allows you to easily post to all of your blogs.</p>\n</blockquote>\n\n<p><img src=\"https://i.stack.imgur.com/ad0qd.png\" alt=\"enter image description here\"></p>\n\n<hr>\n\n<p><strong><a href=\"http://drivel.sourceforge.net/\" rel=\"nofollow noreferrer\">Drivel</a></strong> is another option:</p>\n\n<blockquote>\n <p>Drivel is a GNOME client for working with online journals, also known as weblogs or simply \"blogs\". It retains a simple and elegant design while providing many powerful features</p>\n</blockquote>\n\n<p><img src=\"https://i.stack.imgur.com/ptUgc.png\" alt=\"enter image description here\"></p>\n\n<p>and BloGTK also which is mentioned in previous answers.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-06-17T03:17:24.070", "id": "54363", "postId": "40605", "score": "0", "text": "I'd go with Blogilo, though I do on occasion use scribefire.", "userDisplayName": null, "userId": "3169" } ], "communityOwnedDate": "2011-09-02T22:59:03.190", "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T06:32:37.270", "id": "40605", "lastActivityDate": "2011-05-06T06:41:26.010", "lastEditDate": "2011-05-06T06:41:26.010", "lastEditorDisplayName": null, "lastEditorUserId": "10494", "ownerDisplayName": null, "ownerUserId": "10494", "parentId": "40594", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>For Wordpress there is Lekhonee, but not yet too feature-rich: <a href=\"https://fedorahosted.org/lekhonee/\" rel=\"nofollow\">https://fedorahosted.org/lekhonee/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2011-09-02T22:59:03.190", ...
2011-09-02T22:59:03.190
null
null
null
null
40602
1
null
2011-05-06T06:23:58.440
1
3894
<p>I am new to Ubuntu Linux software, and I need help changing the colors of the icons at the very top panel, where the power button, volume, bluetooth, and all those sorts of icons sit. They're kind of hard to see, and the writing is not that clear. </p> <p>Detailed answers would be nice. thank you.</p>
16704
4203
2011-11-28T15:59:30.203
2011-11-28T23:34:54.620
How can I change the icon colors, appearance, etc. at the top panel?
[ "icons", "appearance", "colors" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-11-28T15:43:52.163", "id": "94569", "postId": "40602", "score": "0", "text": "What version are you running? Take a look at http://askubuntu.com/questions/61567/how-do-i-change-the-theme for some ideas.", "userDisplayName": null, "userId": "13049" } ]
null
[ { "accepted": null, "body": "<p>If you go to the Appearance program (System > Preferences > Appearance in Ubuntu 10.10 and below), you can change the theme. If you hit the edit button, you can find a place to choose which icon set you want to use.</p>\n", "commentCount": "0", "comments": [], "co...
null
null
null
null
null
40604
1
null
2011-05-06T06:29:04.570
0
851
<p>My computer seems to have troubles with noises. Its a kind of a scratchy, repeated, croaky noise. And it is very disturbing and annoying to the peers around me. I dont know where and how much it is to fix it, and I am pretty sure its expensive. I dont know the reasons to this noise either. It may be the fan broken? Some people tell me that something is loose inside and it may crash my commputer at any moment.</p> <p>I need help! Thanks. Lauren</p>
16704
10616
2011-06-14T14:28:23.210
2011-06-14T14:28:23.210
Why does my computer make noises?
[ "hardware", "troubleshooting", "noise" ]
1
3
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T07:28:11.303", "id": "44509", "postId": "40604", "score": "1", "text": "can you open your computer ? if so, you could listen which part that noise comes from. It could be your HDD (how old your computer is ? ), or one of fans. But be careful, this may be dangerous. ...
null
[ { "accepted": null, "body": "<p>That's most likely a broken fan, they have the tendency to break the most, cause a lot of noise and are among the only components that can break, but still have your computer working.</p>\n\n<p>So open up your computer, switch it on and listen where the noise comes from. Also...
null
null
2011-06-14T15:19:58.350
null
null
40615
1
null
2011-05-06T06:54:10.667
1
923
<p>I want to make a Launcher that will do privileged (requires root) commands, but I don't want to see the terminal or have to type my password into the terminal. So I found the command, <code>gksudo</code> that allows me to enter my password so that I can escalate my privilege level. Now I want to couple this, so that I can change the partition priority using this command <code>cgpt add -i 6 -P 0 -S 0 /dev/sda</code> (this command is privileged) and have it automatically reboot from this one launcher.</p> <p>I setup a Luncher like this:</p> <p><strong>Name</strong>: ChromeOS</p> <p><strong>Description</strong>:</p> <p><strong>Command</strong>: <code>gksudo gnome-terminal -e "cgpt add -i 6 -P 0 -S 0 /dev/sda;reboot"</code></p> <p><strong>Comment</strong>:</p> <p>But it does not work. Any tips?</p>
13860
null
null
2011-05-06T07:05:21.557
Make a Launcher for a Privileged Terminal Command
[ "command-line", "gksu" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You don't need a gnome-terminal while running commands with gksudo .</p>\n\n<p>just add this to the launcher .</p>\n\n<pre><code>gksudo cgpt add -i 6 -P 0 -S 0 /dev/sda;reboot\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2011...
null
null
null
null
null
40616
1
null
2011-05-06T06:54:26.867
3
277
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/22486/why-does-unity-hide-the-menubar">Why does Unity hide the menubar?</a> </p> </blockquote> <p>Why are the application-specific menus in the top bar of unity hidden by default, and showing up when you hover over them?</p> <p>It seems to me that it would make more sense to display them always, so that's why I'd like to know what rationale there is for this?</p>
16707
-1
2017-04-13T12:24:49.530
2011-06-28T07:35:49.977
What is the reason application menus in the top bar are hidden by default?
[ "11.04", "appmenu" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Your question will be answered after you read <a href=\"https://docs.google.com/View?id=dfkkjjcj_1776g5ztgbc3\" rel=\"nofollow\">this document</a>. It is the basis of the design we are currently using. Thing is... this is all design so one person will see this as an excellent...
null
null
2011-06-28T09:48:32.400
null
null
40619
1
null
2011-05-06T07:09:22.043
0
75
<p>After testing the windows client for U1 sync, I decided to test the preferences' settings, and tried to remove the association for the WinXP station from which I was working.</p> <p>Now I can start the client, but if I try to open the preferences' settings the application stops.</p> <p>I tried to uninstall and reinstall, but that won't change the situation: apparently the old settings are kept the same even after a total reinstall.</p>
16711
2647
2011-06-21T08:51:03.463
2011-06-21T08:51:03.463
Removed WinXP association to U1, and can't get it to work anymore
[ "ubuntu-one", "windows" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Yes, there was a bug filled for this. What you have to do is look into your registry in the Windows machines. The the Current User Key ou will find a Canonical key that contains a encypted version of your Ubuntu One credentials (we use OAtuh for that). </p>\n\n<p>What is happ...
null
null
null
null
null
40620
1
40636
2011-05-06T07:18:37.370
3
419
<p>In Unity, when you drag title bar of window, and point it to left side or right one it maximizes to half screen (full height, half width). </p> <p>What's the name of this feature? How to install it on 10.10 without upgrading to 11.04 so that I can see two window side by side?</p>
16709
527764
2017-03-17T14:58:09.107
2017-03-17T14:58:09.107
What's the name of the feature in Unity that allows windows to be tiled on the left and right sides of the screen?
[ "10.10", "11.04", "unity", "compiz" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>This is part of the Compiz Grid plugin. On Ubuntu 10.10, I believe you need to install <a href=\"http://packages.ubuntu.com/compiz-fusion-plugins-extra\" rel=\"nofollow noreferrer\">compiz-fusion-plugins-extra</a> <a href=\"http://apt.ubuntu.com/p/compiz-fusion-plugins-extra\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-small\" alt=\"Install compiz-fusion-plugins-extra\" /></a>; it can then be configured using</p>\n<p><strong>CompizConfig Settings Manager → Grid → Edges → Resize Actions</strong></p>\n<p>The defaults in Ubuntu 11.04 involve Upper Left Corner, Left Edge, and Lower Left Corner being set to Left Half, and Upper Right Corner, Right Edge, and Lower Right Corner being set to Right Half.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-05-06T09:22:35.093", "id": "44540", "postId": "40636", "score": "0", "text": "thanks,... this is what i want... but how can i put a window to left corner just by draghing and point to left screen ?? i hope this could be.. it's easier..", "userDisplayName": null, "userId": "16709" }, { "creationDate": "2011-05-06T09:35:22.280", "id": "44548", "postId": "40636", "score": "0", "text": "Set Left Edge to Top Left Corner or Bottom Left Corner in the configuration dialog I suggested? If that's not it, I'm not quite understanding your question.", "userDisplayName": null, "userId": "3228" }, { "creationDate": "2011-05-06T09:43:27.627", "id": "44551", "postId": "40636", "score": "0", "text": "i mean.. how to set window in left grid just by dragging the titlebar,.. how i do now is press combination key `super + left` (like unity, or win7 does)", "userDisplayName": null, "userId": "16709" }, { "creationDate": "2011-05-06T12:22:54.947", "id": "44574", "postId": "40636", "score": "0", "text": "As far as I know, that's what the directions I gave you do, although I confess that I don't have an Ubuntu 10.10 installation on a suitable system to test.", "userDisplayName": null, "userId": "3228" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T08:20:23.690", "id": "40636", "lastActivityDate": "2017-03-17T14:54:24.573", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3228", "parentId": "40620", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>This is part of the Compiz Grid plugin. On Ubuntu 10.10, I believe you need to install <a href=\"http://packages.ubuntu.com/compiz-fusion-plugins-extra\" rel=\"nofollow noreferrer\">compiz-fusion-plugins-extra</a> <a href=\"http://apt.ubuntu.com/p/compiz-fusion-plugins-extra...
null
null
null
null
null
40621
1
null
2011-05-06T07:27:14.557
4
2715
<p>I recently got the final version of <strong>Ubuntu Natty Narwhal x64</strong> and everything is working just fine. The only thing I am having trouble with is the boot screen. After I installed the proprietary nVidia drivers, the boot screen becomes corrupt and only shows text (as it has been doing since Ubuntu 10.04). When I followed the instructions to fix the boot screen in 10.04 and 10.10, the boot screen still remains the same and the problem isn't resolved. Please give a full guide on how to fix this problem.</p> <hr> <p><em>Machine Details</em></p> <p>Computer : HP Pavilion p6240in</p> <ol> <li><p>Processor : Core 2 duo</p> <p>Memory : 4096 megabytes</p> <p>Graphics : nVidia G210 3d graphics</p></li> </ol> <p>Monitor : Dell 17 inch lcd</p> <hr> <p>Another question I would like to ask is whether it is possible to use this script (http://www.webupd8.org/2010/10/script-to-fix-ubuntu-plymouth-for.html) with 11.04. I am asking this question because it says that the script works only with 10.04 and 10.10. </p>
16713
6969
2011-05-06T07:45:41.267
2014-03-09T02:00:14.267
Corrupt plymouth boot screen when using properietary Nvidia drivers
[ "11.04", "plymouth" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T07:35:45.053", "id": "44510", "postId": "40621", "score": "0", "text": "post here output of command grep CMDLINE /etc/default/grub", "userDisplayName": null, "userId": "15023" }, { "creationDate": "2011-05-06T08:05:03.363", "id": "44522", "p...
null
[ { "accepted": null, "body": "<p>Abou script: yes, I have just used for Kubuntu. \nAbout your problem, I think, you have missed some step, or made typo in cfg file. Recheck it all. The resolution you choose must be available via VBE. Enter GRUB console while booting and command \"vbeinfo\" to get a list. </...
null
null
null
null
null
40623
1
40624
2011-05-06T07:35:30.863
6
15097
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/28086/unity-keyboard-mouse-shortcuts">Unity keyboard/mouse shortcuts</a> </p> </blockquote> <p>What is the shortcut to lock computer?</p>
8436
-1
2017-04-13T12:24:13.887
2011-05-06T09:24:06.107
What is the shortcut to lock computer?
[ "gnome" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2017-12-03T13:42:30.133", "id": "1580357", "postId": "40623", "score": "0", "text": "The question this is marked a duplicate of asks about the *Unity* shortcut (`Ctrl`+`Alt`+`L`), whereas this question is tagged `gnome`, where the shortcut is in fact different (`Super`+`L`). S...
{ "accepted": true, "body": "<p>shortcut to lock computer is ctrl + alt + L </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T07:37:12.273", "id": "40624", "lastActivityDate": "2011-05-06T07:37:12.273", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15023", "parentId": "40623", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>shortcut to lock computer is ctrl + alt + L </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T07:37:12.273", "id": "40624", "lastActivityDate": "2011-05-06T07:37:...
null
null
2011-05-06T09:37:29.113
null
null
40629
1
40638
2011-05-06T07:52:32.220
7
746
<p>How do I install the <a href="https://meta.askubuntu.com/questions/708/stackexchange-data-dump-viewer-a-desktop-tool-for-viewing-the-stackexchange-da">StackExchange Data Dump Viewer</a>?</p>
5149
22949
2017-01-13T03:20:12.833
2017-01-13T03:20:12.833
How to install the StackExchange Data Dump Viewer?
[ "software-installation" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<ul>\n<li><p>Firstly open a terminal (<kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>T</kbd>).</p></li>\n<li><p>Install Bazaar (<code>bzr</code>) and other required dependencies by pasting this (<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>) in the terminal:</p>\n\n<pre class=\"lang-bash prettyprint-override\"><code>sudo apt-get install bzr qt4-qmake libqt4-dev libqtwebkit-dev\n</code></pre></li>\n<li><p>Get all the code:</p>\n\n<pre><code>bzr branch lp:aubrowser\n</code></pre></li>\n<li><p>Now navigate into the directory:</p>\n\n<pre><code>cd aubrowser\n</code></pre></li>\n<li><p>Now compile the code:</p>\n\n<pre><code>./compile_everything\n</code></pre></li>\n<li><p>Now start the conversion wizard:</p>\n\n<pre><code>convert/convert\n</code></pre></li>\n<li><p>A window will open. Paste <code>data/posts.xml</code> then follow through the wizard.</p>\n\n<p><img src=\"https://i.stack.imgur.com/kR54z.png\" alt=\"Wizard screenshot\"></p></li>\n<li><p>Now close the terminal, open Nautilus and browse to the <code>aubrowser</code> folder inside your home folder and run the <code>AskUbuntuBrowser</code> file (by double clicking on it).</p>\n\n<p><img src=\"https://i.stack.imgur.com/I2oSX.png\" alt=\"Nautilus\"></p></li>\n<li><p>Tada!</p>\n\n<p><img src=\"https://i.stack.imgur.com/mPXVn.png\" alt=\"StackExchange Data Dump Viewer Screenshot\"></p></li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T08:22:53.517", "id": "40638", "lastActivityDate": "2017-01-13T03:16:58.543", "lastEditDate": "2017-01-13T03:16:58.543", "lastEditorDisplayName": null, "lastEditorUserId": "22949", "ownerDisplayName": null, "ownerUserId": "5149", "parentId": "40629", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>See the <a href=\"http://bazaar.launchpad.net/~george-edison55/aubrowser/trunk/view/head:/README\" rel=\"nofollow\">readme</a> in the installation file. 1st part:</p>\n\n<pre>\nStackExchange Data Dump Browser is a small Qt-based application \ndesigned to make it easy to view ...
null
null
null
null
null
40631
1
null
2011-05-06T07:57:22.343
1
3991
<p>I am on 11.04 at the moment.</p> <p>Would like to figure out how to change the settings for screensavers without completely switching to <code>xscreensaver</code>.</p> <p>I read somewhere that it doesn't play as nicely with some of gnome's features like screen locking. I also read some guide that recommended installing <code>xscreensaver</code> and configuring your screen saver settings there and apparently they were supposed to be used by <code>gnome-screensaver</code> as well. But that did not work for me.</p>
3515
47291
2013-05-29T16:37:29.357
2013-05-29T16:37:29.357
Changing screen saver settings without completely removing gnome-screensaver and installing xscreensaver
[ "screensaver", "settings" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Well you can turn it on/off,select the screen saver, change the time settings and lock the screen settings using the power>system settings>screensaver if that would help. Not the greatest of changes I admit but better than I thought it would be. </p>\n\n<p>More details here:<...
null
null
null
null
null
40635
1
42531
2011-05-06T08:09:15.017
9
614
<p>When copying or moving a large file I have noticed the icon for the <em>copy dialog</em> indicator is a mouse pointer.</p> <p>Is this suppose to be, or is it a bug?</p> <p>This is really confusing.</p>
11269
169736
2013-12-14T15:50:27.993
2013-12-14T15:50:27.993
Why is the icon for the 'copy dialog' indicator a mouse pointer?
[ "unity" ]
4
5
CC BY-SA 3.0
[ { "creationDate": "2011-05-09T00:28:04.160", "id": "45322", "postId": "40635", "score": "0", "text": "screenshot?, i don't really remember seeing that lol...", "userDisplayName": null, "userId": "4203" }, { "creationDate": "2011-05-09T00:42:18.777", "id": "45325", "postId...
{ "accepted": true, "body": "<p>There was <a href=\"https://bugs.launchpad.net/ubuntu/+source/ubuntu-mono/+bug/553256\" rel=\"nofollow noreferrer\">a bug reported</a> that ubuntu-mono-dark (the default icon theme that provides the icons for the appindicators) doesn't have <em>any</em> icon for file operations.</p>\n\n<p>A broader <a href=\"https://bugs.launchpad.net/ubuntu/+source/ubuntu-mono/+bug/740540\" rel=\"nofollow noreferrer\">bug</a> was filed and the icons were <a href=\"http://bazaar.launchpad.net/~ubuntu-art-pkg/ubuntu-mono/trunk/changes?filter_file_id=systemfilemanagerpan-20110307175857-8zfo3jpnfo0ze7ny-17\" rel=\"nofollow noreferrer\">completely redrawn</a>. Unfortunately, there seems to be no public design discussion between <a href=\"https://launchpad.net/~otto-chaotic\" rel=\"nofollow noreferrer\">Otto Greenslade</a> (Visual Design Lead) and <a href=\"https://launchpad.net/~daniel-p-fore\" rel=\"nofollow noreferrer\">Daniel Fore</a> (Artist). I couldn't find any IRC logs between chaotic and DanRabbit (their handles). Maybe someone else's IRC searching is better than mine?</p>\n\n<h2>Changing The Icons</h2>\n\n<p>If you don't like the icon, try this command to see what file operations icons the other themes on your system provide.</p>\n\n<pre><code>find /usr/share/icons -name \"system-file-manager-panel.*\" | sed -e\"s/.*/&lt;img src=\\\"file:\\/\\/&amp;\\\" alt=\\\"&amp;\\\" \\/&gt;&amp;&lt;p\\/&gt;/\" &gt; ~/icons.html\nxdg-open ~/icons.html\n</code></pre>\n\n<p>I have <a href=\"http://danrabbit.deviantart.com/art/elementary-Icons-65437279\" rel=\"nofollow noreferrer\">elementary</a> and <a href=\"http://gnome-look.org/content/show.php/Faenza?content=128143\" rel=\"nofollow noreferrer\">faenza</a> installed, but there still aren't any good options.</p>\n\n<p>So what I did was use the fog icon from ubuntu-mono-dark. It looks like three squiggly lines and I think that represents motion (moving files) better than a pointer:</p>\n\n<p><img src=\"https://i.stack.imgur.com/1IyMn.png\" alt=\"weather-fog.svg from ubuntu-mono-light (since that should show up better on AU&#39;s light background)\"></p>\n\n<p>Then you can create your own lightweight theme (as <a href=\"https://askubuntu.com/questions/39336/how-can-i-change-which-icon-an-applet-uses/40548#40548\">I described here</a>) that replaces the icon you dislike with your preferred icon. In my example I'm using weather-fog.svg.</p>\n\n<pre><code># Create a new theme containing the icon we want\nmkdir -p ~/.icons/mono-seth/actions/scalable\nln -s /usr/share/icons/ubuntu-mono-dark/status/16/weather-fog.svg ~/.icons/mono-seth/actions/scalable/.\n# Copy the theme config and modify it for our new theme\ncp /usr/share/icons/ubuntu-mono-dark/index.theme ~/.icons/mono-seth/.\nsed -i -e \"s/Name=ubuntu-mono-dark/Name=mono-seth/g\" ~/.icons/mono-seth/index.theme\nsed -i -e \"s/Inherits=/Inherits=ubuntu-mono-dark,/g\" ~/.icons/mono-seth/index.theme\n</code></pre>\n\n<p>Now open Appearance and change your icon theme to mono-seth. (If your preferred icon theme is not ubuntu-mono-dark, change <code>Inherits=ubuntu-mono-dark</code> to <code>Inherits=your-theme-here</code>. Make sure the name matches one of the themes in <code>/usr/share/icons</code> or <code>~/.icons</code>.)</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-13T15:37:34.517", "id": "46487", "postId": "42531", "score": "0", "text": "I find it highly amusing that, out of all obscure topics and unlikely times, the two of us were probably perusing IRC discussions between DanRabbit and chaotic at the same time.", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2011-05-13T18:44:39.910", "id": "46550", "postId": "42531", "score": "0", "text": "After completely my answer I felt very creepy and I'm not sure if I'm reassured or more unsettled to know that we were simultaneously e-stalking. However, I am certain that I'll have a smile on my face for the rest of the day.", "userDisplayName": null, "userId": "9411" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-13T15:32:53.367", "id": "42531", "lastActivityDate": "2011-05-13T15:32:53.367", "lastEditDate": "2017-04-13T12:24:19.577", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "9411", "parentId": "40635", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>I would guess that's because you often use the mouse cursor for copy and paste as well as move operations of files.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-10T03:24:05.033", "id": "45602", "postId": "41644", ...
null
null
2013-12-15T21:41:04.263
null
null
40639
1
null
2011-05-06T08:24:18.393
0
1490
<p>On an HP nc6400 laptop the mute light on the mute button stays on even when Ubuntu is not on mute, this only is happening after I upgraded to Ubuntu 11.04, it worked fine in 10.10. Even though the mute light stays on, if you start playing a piece of music or a sound it will play and the mute light will go off for the duration of the sound and then come back on immediately after the sound has finished. Pressing the mute button on and off only turns the light off for less than a second, it will immediately come back on again. The mute light will go off while I am adjusting the volume but will come back on no matter where I put the volume bar. While it doesn't affect usability it is rather annoying.</p>
15391
null
null
2012-03-16T17:53:56.790
On an HP nc6400 laptop the mute light on the mute button stays on?
[ "volume-control", "sound" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Try this: open a terminal and enter the following command:</p>\n\n<pre><code>gksu gedit /etc/modprobe.d/alsa-base.conf\n</code></pre>\n\n<p>Then add the following line at the end of the file and save it:</p>\n\n<pre><code>amixer set IEC958 off\n</code></pre>\n\n<p>The command...
null
null
null
null
null
40640
1
null
2011-05-06T08:30:03.690
-1
1175
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/37651/how-can-i-activate-unity">How can I activate Unity?</a> </p> </blockquote> <p>restart computer(using ubuntu 11.4) and see this "It seems that you do not have the hardware required to run Unity. Please choose Ubuntu Classic" how do i get unity back? oh and unity worked for like two or three days before this happened..</p>
16716
-1
2017-04-13T12:24:00.547
2011-05-06T08:32:03.437
how do i get unity back? "It seems that you do not have the hardware required to run Unity. Please choose Ubuntu Classic"
[ "unity", "boot", "video", "freeze" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T08:43:38.557", "id": "44535", "postId": "40640", "score": "0", "text": "Besides aneal's comment (what I expect to be your solution) also have a look here: http://askubuntu.com/questions/36574/freeze-at-startup-it-seems-that-you-do-not-have-the-hardware-required-to-r...
null
[ { "accepted": null, "body": "<p>I had same problem. but it was solved soon after reinstalling graphics card driver. i hope it works for u too.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-06-14T23:16:35.443", "id": "53949", "postId": "40642", ...
null
null
2011-05-06T09:38:48.237
null
null
40641
1
40724
2011-05-06T08:31:34.237
6
538
<p>Are the UDS (Ubuntu Developer Summit) sessions going to be streamed or recorded/uploaded at a later date? If so, where can I see them? </p>
14682
5149
2011-05-10T10:51:58.703
2011-05-10T10:51:58.703
How can I see the UDS sessions?
[ "stream", "uds" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The videos are uploaded to <a href=\"http://ubuntudevelopers.blip.tv\" rel=\"nofollow noreferrer\">ubuntudevelopers.blip.tv</a> and the <a href=\"http://www.youtube.com/user/ubuntudevelopers\" rel=\"nofollow noreferrer\">Youtube Ubuntu Channel</a>. </p>\n\n<p>These are usually not in real time but the video team tries to get them up as fast as possible, sometimes as quick as the day after a session. The bulk of the videos will trickle in after UDS has started.</p>\n\n<p>The <a href=\"http://uds.ubuntu.com/participate/remote/\" rel=\"nofollow noreferrer\">remote participation</a> page has a list of IRC channels for the event. These correspond to the rooms a session will be on <a href=\"http://summit.ubuntu.com/uds-o/\" rel=\"nofollow noreferrer\">the schedule</a>. The topic for each IRC room will have an icecast stream of audio for the room. The IRC channel is displayed on the projector in the session as you can see behind this guy:</p>\n\n<p><img src=\"https://i.stack.imgur.com/pwDn1.jpg\" alt=\"enter image description here\"></p>\n\n<p>So you can listen over the icecast and type into IRC addressing the room and someone will respond to your comments by just talking and you'll hear it over the icecast. It works surprisingly well, I've had full conversations with people like this in a session before.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T14:08:44.730", "id": "40724", "lastActivityDate": "2011-05-06T14:08:44.730", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "40641", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Last year the best source for me was <a href=\"http://ubuntu.mirocommunity.org/\" rel=\"nofollow\">http://ubuntu.mirocommunity.org/</a> as the feeds could be easyly be set up in Rhythmbox or Banshee. Dont know if this will work again next week.</p>\n", "commentCount": "0"...
null
0
null
null
null
40644
1
null
2011-05-06T08:39:40.887
0
1522
<p>I have a Wacom Bamboo P&amp;T CTH-661 and it works out of the box in Ubuntu 11.04. The problem is when I move the cursor over the edges of the screen, it 'jumps' a lot (it's very annoying and it gets very difficult to use the unity bar or the scrollbar)! Is there any way to define the correct area/boundaries?</p> <p>I've tried setting the area in xsetwacom (bottom x, bottom y, top x, top y), but all it does is reduce the defined area (the problem does not go away...). I've also tried MapToOutput, but without success.</p> <p>Any thoughts?</p>
16717
235
2011-06-12T16:19:36.690
2015-09-26T10:44:45.503
How do I define Wacom Bamboo P&T area boundaries?
[ "11.04", "wacom" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Not sure if any of this will help, anyway here it goes. On my Wacom Intuos 2 I can change some properties such as the usable area via xinput, some examples commands would be (in this case from changing to a 16:10 aspect ratio):</p>\n\n<pre><code>xinput list\nxinput list-props...
null
null
null
null
null
40649
1
40675
2011-05-06T09:03:47.473
3
2117
<p>Original question by some guy: <a href="https://askubuntu.com/questions/35238/cpu-frequency-scaling-in-unity">CPU Frequency Scaling in Unity?</a></p> <p>Followup: I installed the <strong>indicator-cpufreq</strong> app and ran it, but nothing appears in my indicator are. I can see that the app is running with ps -A|grep cpufreq. I tried running it with sudo as well, but no dice. Trying to run the app with -v for verbose gives no extra output either.</p> <p>Anyone have any ideas what might be wrong?</p>
11933
-1
2017-04-13T12:24:19.513
2011-05-06T10:09:47.533
CPU Scaling in Unity with indicator-cpufreq
[ "11.04", "unity", "cpufreq" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>It may be an icon issue. Try running the following:</p>\n\n<pre><code>sudo gtk-update-icon-cache /usr/share/icons/ubuntu-mono-dark\nsudo gtk-update-icon-cache /usr/share/icons/ubuntu-mono-light \n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T10:09:47.533", "id": "40675", "lastActivityDate": "2011-05-06T10:09:47.533", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "16722", "parentId": "40649", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It may be an icon issue. Try running the following:</p>\n\n<pre><code>sudo gtk-update-icon-cache /usr/share/icons/ubuntu-mono-dark\nsudo gtk-update-icon-cache /usr/share/icons/ubuntu-mono-light \n</code></pre>\n", "commentCount": "0", "comments": [], "communityOw...
null
null
null
null
null
40651
1
null
2011-05-06T09:04:31.153
9
7072
<p>Would it be possible to install packages without admin rights(sudo?) on Ubuntu?</p> <p>It doesn't have to be system-wide, maybe a private installation within /home.</p> <p>I want this because I'd like to setup my PC so that you can do anything you need without ever having to enter the escalate your privileges. This way, I can blissfully allow anyone to use my Ubuntu system (on their own account of course) and simply telling them that whenever they are told to authenticate, DONT.</p> <p>Currently, I can run Banshee, chromium, LO, save data on /home,manage my music library etc without authentication.</p> <p>However, I cannot install say, VLC or CHM reader without privileges.</p> <p>I understand that there are some packages that touch the inner workings of my system(e.g linux-kernel-image) where it won't make sense to have a private "/home" installation. And that packages are not neatly labeled "trivial" &amp; "non-trivial".</p> <p>Nonetheless I would like the system(synaptic?) to try and install without any rights until it cannot proceed, upon which it displays the traditional "You require authentication"</p>
16570
6969
2011-05-06T09:07:33.253
2011-05-09T23:59:58.527
Install packages without root permissions
[ "package-management", "authentication" ]
3
4
CC BY-SA 3.0
[ { "creationDate": "2011-05-08T18:14:09.187", "id": "57207", "postId": "40651", "score": "1", "text": "both of you, guys, have answered the wrong question.\nIn fact, user16570 has asked a totally different question than the one you were trying to answer.\nHe JUST wants to install packages without...
null
[ { "accepted": null, "body": "<p>You should manually unpack the deb, place files somewhere and ensure it has access to the libs it need. Chroot command may help to use dpkg or apt-get, though I don't think many people did it.\nIf you want to make a machine, where you don't need root passwd at all, you should...
null
null
null
null
null
40661
1
null
2011-05-06T09:41:26.877
1
874
<p>After considering all the risks of using GNOME 3 in Ubuntu 11.04, I installed GNOME 3 via PPA. Fortunately, my system is working fine after the installation, but following are three issues which I want to fix.</p> <ul> <li>Evolution is still not updated to 3.0, thus it is using NotifyOSD to notify about new mails.</li> <li>Empathy is updated to 3.0 but is not using modern GNOME 3 notification system.</li> <li>Ubuntu still uses Old network manager instead of that of GNOME 3, thus, it is not integrated well with entire desktop.</li> </ul> <p>Also, I wanted to know that how can I make Ubuntu 11.04 completely stock GNOME 3, including all the default applications that it is using.</p>
12242
12242
2011-05-06T16:22:32.517
2011-08-24T01:33:53.703
Small issues after installing Gnome 3 (via PPA)
[ "11.04", "gnome" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>If you want a 100% stock GNOME3 desktop, then I guess it won't be possible right now on Ubuntu. You have 2 options:</p>\n\n<p>1) Live with those minor issues for a few more months, then move to Ubuntu 11.10 Oneiric where you'll have stock GNOME3 + Shell as an option.</p>\n\n<...
null
null
null
null
null
40670
1
null
2011-05-06T10:06:24.633
3
13501
<p>I am running windows 7 64 bit on my comp and just installed ubuntu 11.04 64 bit after partitioning the hard drive to give ubuntu 50gb of space. </p> <p>I used a usb drive to try it out first and then i installed it and it worked perfectly and the asked me if i wanted to restart. I allowed it then it asked me to remove any 'installation media' AKA my usb drive and press enter. I did so but next a black screen came up with no text. </p> <p>I thought it was part of the installation so i left my comp and came back 15 mins later but it still was at the black screen! I tried typing something, pressing 'esc' and even pressing the power button but nothing happened. Then I pressed the restart button and it restarted and booted into windows 7 with no trace of grub!!!!what am i supposed to do? I'm only a novice.</p>
16727
235
2011-05-15T20:40:55.547
2017-05-09T20:35:44.147
GRUB menu missing after installation
[ "11.04", "grub2", "dual-boot", "windows-7" ]
5
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-10T02:05:18.737", "id": "45596", "postId": "40670", "score": "0", "text": "I just experienced the exact same thing. Do you have any good news for me? :)", "userDisplayName": null, "userId": "17164" }, { "creationDate": "2011-05-10T15:17:33.767", "i...
null
[ { "accepted": null, "body": "<p>Are you sure Ubuntu was installed ? If so, then you can recover your grub . \nFollow the procedure as explained on this <a href=\"http://jayant7k.blogspot.com/2010/02/restore-grub-2-after-windows.html\" rel=\"nofollow\">post.</a></p>\n", "commentCount": "0", "comments...
null
null
null
null
null
40671
1
40679
2011-05-06T10:06:56.270
1
324
<p>I used to like the graphic effects in Maverick. but I cannot find a way to apply graphic effects in Natty unlike Maverick. Were the effects dropped?</p>
12639
527764
2017-03-17T16:30:00.527
2017-03-17T16:30:00.527
Graphics effects not available in 11.04 like in 10.10?
[ "10.10", "11.04", "graphics", "effects" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You are probably referring to the lack of a <code>Desktop Effects</code> tab in <code>gnome-appearance-properties</code>.</p>\n\n<p>You still can configure desktop effects using\n <a href=\"http://packages.ubuntu.com/compizconfig-settings-manager\" rel=\"nofollow noreferrer\">compizconfig-settings-manager</a> <a href=\"http://apt.ubuntu.com/p/compizconfig-settings-manager\" rel=\"nofollow noreferrer\"><img src=\"httpS://hostmar.co/software-large\" alt=\"Install compizconfig-settings-manager\"></a> in the same way, the only difference will be the fact that enabling Desktop Cube would require some <a href=\"http://www.omgubuntu.co.uk/2011/04/compiz-cube-natty/\" rel=\"nofollow noreferrer\">extra steps</a>.</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/80589/what-are-some-of-the-issues-with-ccsm-and-why-should-i-not-use-it\">What are some of the issues with CCSM and why would I want to avoid it?</a></li>\n</ul>\n\n<p>Another tip: In case something goes wrong with the Compiz settings, you can reset them by running this command:</p>\n\n<pre><code>unity --replace\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-06T10:21:41.533", "id": "44559", "postId": "40679", "score": "0", "text": "dunno why, but something's wrong with that compizconfig-settings-manager link. It shows up perfectly in the answer preview, but here it comes up horribly.", "userDisplayName": null, "userId": "629" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T10:17:09.507", "id": "40679", "lastActivityDate": "2017-03-17T16:28:41.870", "lastEditDate": "2017-04-13T12:25:13.240", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "629", "parentId": "40671", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You are probably referring to the lack of a <code>Desktop Effects</code> tab in <code>gnome-appearance-properties</code>.</p>\n\n<p>You still can configure desktop effects using\n <a href=\"http://packages.ubuntu.com/compizconfig-settings-manager\" rel=\"nofollow noreferrer\"...
null
null
null
null
null
40674
1
40765
2011-05-06T10:09:14.583
3
3222
<p><br> I've just upgraded to 11.04 and now phpunit isn't working anymore :( (it was working fine on 10.10). Here is what appears in console:</p> <pre><code>david@david-P55M-UD2:/var/www/magento$ phpunit UnitTests.php PHP Warning: require_once(PHP/CodeCoverage/Filter.php): failed to open stream: No such file or directory in /usr/bin/phpunit on line 38 PHP Stack trace: PHP 1. {main}() /usr/bin/phpunit:0 PHP Fatal error: require_once(): Failed opening required 'PHP/CodeCoverage/Filter.php' (include_path='.:/usr/share/php:/usr/share/pear') in /usr/bin/phpunit on line 38 PHP Stack trace: PHP 1. {main}() /usr/bin/phpunit:0 </code></pre> <p>Any suggestion?</p>
16726
7035
2011-06-07T17:08:07.080
2011-11-14T20:05:47.453
Phpunit stop working after upgrade to 11.04
[ "11.04" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>as seen in <a href=\"https://stackoverflow.com/questions/1528717/phpunit-require-once-error/5776356#5776356\">SO</a>, this worked for me:</p>\n\n<pre><code>sudo pear channel-discover pear.symfony-project.com\nsudo pear channel-discover components.ez.no\nsudo pear install --alldeps phpunit/PHPUnit\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T16:24:32.133", "id": "40765", "lastActivityDate": "2011-05-06T16:24:32.133", "lastEditDate": "2017-05-23T12:39:47.820", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "16726", "parentId": "40674", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>as seen in <a href=\"https://stackoverflow.com/questions/1528717/phpunit-require-once-error/5776356#5776356\">SO</a>, this worked for me:</p>\n\n<pre><code>sudo pear channel-discover pear.symfony-project.com\nsudo pear channel-discover components.ez.no\nsudo pear install --al...
null
null
null
null
null
40677
1
40695
2011-05-06T10:10:44.163
3
1044
<p>At the moment I am running Kubuntu Lucid LTS on my desktop and have some relatively free time and was considering upgrading to Natty.</p> <p>My biggest concern (as usual) is whether I will be able to use my video card in the way its configured now, preferably without hours of configuration pain. The pain mainly comes from me having two monitors and a single continuous desktop. One monitor is used in landscape and another in picture mode (rotated 90 degrees clockwise), both having different resolutions.</p> <p>I remember spending hours of getting it configured when installing Lucid originally as I had to tweak <code>xorg.conf</code> settings manually dozens of times, <code>randr</code> didn't work, etc. etc. I finally ended up using closed source driver as it was the only one being able to achieve the setup. I also remember my colleague installing Maverick on the next week after the release; he couldn't get it working with closed source nvidia drivers because newer Xorg libs weren't supported (so he had to use Xorg libs from Lucid) and the open source drivers couldn't get the job done. Royal pain stories like this have left me with a very low expectations for Linux on desktop in general and new Ubuntu releases in particular.</p> <p>I personally don't care which drivers to use as long as I can get the monitor setup working (no need for any 3D acceleration, it's my working machine). I have spent some time looking at forums/help/AskUbuntu, but I cannot find any decent page confirming whether Natty can achieve my desired setup as the noise/information rate is too high.</p> <p>My video card is (quote from <code>lspci -vvv</code>):</p> <pre><code>02:00.0 VGA compatible controller: nVidia Corporation G86 [Quadro NVS 290] (rev a1) Subsystem: nVidia Corporation Device 0492 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast &gt;TAbort- &lt;TAbort- &lt;MAbort- &gt;SERR- &lt;PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 52 Region 0: Memory at fa000000 (32-bit, non-prefetchable) [size=16M] Region 1: Memory at d0000000 (64-bit, prefetchable) [size=256M] Region 3: Memory at f8000000 (64-bit, non-prefetchable) [size=32M] Region 5: I/O ports at dc80 [size=128] [virtual] Expansion ROM at fbd00000 [disabled] [size=128K] Capabilities: &lt;access denied&gt; Kernel driver in use: nvidia Kernel modules: nvidia-current, nvidiafb, nouveau </code></pre> <p>So can anyone advice whether nVidia dual-monitor, rotated-screen, continuous-desktop can be achieved in Natty/Kubuntu?</p>
6936
235
2011-07-12T12:58:58.927
2011-07-12T12:58:58.927
Can I configure one monitor landscape and one in picture mode at the same time?
[ "11.04", "upgrade", "nvidia" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Yes, I'm using 11.04 with nVidia open drivers. I've got external monitor working out-of-the-box without any problems at all. Different resolution, extended desktop. Instead of using directly <code>xrandr</code> I'm using <a href=\"http://willem.engen.nl/projects/disper/\" rel=\"nofollow noreferrer\"><code>disper</code></a>. </p>\n\n<p><img src=\"https://i.stack.imgur.com/Q4ikU.png\" alt=\"enter image description here\"></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-06T13:33:02.263", "id": "44590", "postId": "40695", "score": "0", "text": "Thanks - just a clarification: by \"open\" you mean Nouveau? Also, do you know if you can rotate any screen?", "userDisplayName": null, "userId": "6936" }, { "creationDate": "2011-05-06T14:09:06.850", "id": "44595", "postId": "40695", "score": "0", "text": "`Kernel driver in use: nvidia\nKernel modules: nvidia-current, nouveau, nvidiafb`; didn't try rotation.", "userDisplayName": null, "userId": "15196" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T11:39:31.020", "id": "40695", "lastActivityDate": "2011-05-06T11:39:31.020", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15196", "parentId": "40677", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Yes, I'm using 11.04 with nVidia open drivers. I've got external monitor working out-of-the-box without any problems at all. Different resolution, extended desktop. Instead of using directly <code>xrandr</code> I'm using <a href=\"http://willem.engen.nl/projects/disper/\" rel...
null
null
null
null
null
40681
1
null
2011-05-06T10:39:37.930
1
565
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/37083/how-can-i-change-the-unity-launcher-delay">How can I change the Unity launcher delay?</a> </p> </blockquote> <p>although I have seen similar questions and the hint to change it in ccsm under general options, I find it still taking way to long. I have set the Edge Trigger Delay value to zero and still I have to wait over a second to make the launcher pop up. I can't believe that this really can't be speeded up so I am asking here. I don't want go back to using docky instead just of that little thing.</p>
16729
-1
2017-04-13T12:23:09.107
2011-05-07T20:03:19.847
Is it possible to change the unity launcher delay to absolute zero?
[ "unity", "launcher", "autohide" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T14:33:25.270", "id": "44605", "postId": "40681", "score": "0", "text": "Not exactly an answer to your question, but it will appear instantly if you move your mouse to the top left corner.", "userDisplayName": null, "userId": "8152" }, { "creationDate...
null
[ { "accepted": null, "body": "<p>Workaround for \"absolute zero\" delay </p>\n\n<p><strong>1)</strong> We will need <a href=\"http://apt.ubuntu.com/p/xdotool\" rel=\"nofollow noreferrer\">XDoTool</a> and <a href=\"http://apt.ubuntu.com/p/compizconfig-settings-manager\" rel=\"nofollow noreferrer\">Compiz</a>...
null
null
2011-05-06T16:36:28.890
null
null
40682
1
40706
2011-05-06T10:39:59.783
1
835
<p>I'm starting to enjoy every day a bit more and more Unity. But till now I'm looking for an answer to how resize the lenses in Unity. It takes the whole screen and I would like to be able to resize it.</p> <p>I tried before searching everywhere and theres no answer to how resize it when you get the lens maximized. Already tried to resize the screen to see if I can get this option but without a success. </p>
16728
235
2011-05-06T14:20:08.927
2011-05-06T14:21:39.330
Can't resize maximized lenses in Unity
[ "unity", "lenses", "resize" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>As <a href=\"https://askubuntu.com/users/2732/octavian-damiean\">Octavien Damien</a> explained here: </p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/29553/how-can-i-configure-unity\">How can I configure Unity?</a></li>\n</ul>\n\n<p><strong>Configuration Editor (dconf-editor)</strong></p>\n\n<p>There are also some options you can edit using <code>dconf-editor</code> (needs to be installed first by installing <a href=\"http://apt.ubuntu.com/p/dconf-tools\" rel=\"nofollow noreferrer\"><strong>dconf-tools</strong></a> at <strong>Ubuntu Software Center</strong> or by clicking <a href=\"http://apt.ubuntu.com/p/dconf-tools\" rel=\"nofollow noreferrer\">here</a>):</p>\n\n<ol>\n<li><p>Open up the <code>Configuration Editor</code> by pressing <kbd>Alt</kbd> + <kbd>F2</kbd> and typing <code>dconf-editor</code></p></li>\n<li><p>Navigate to <code>Desktop -&gt; Unity</code> to find the first two options:</p>\n\n<ul>\n<li><code>form-factor</code>: The form factor chosen will affect the size of the Dash. <em>Desktop</em> uses a fixed sized Dash, <em>Netbook</em> will always maximize the Dash to screen size, <em>Automatic</em> decides whether to use <em>Desktop</em> or <em>Netbook</em> based on the screen resolution.</li>\n<li><code>home-expanded</code>: Whether the home screen of the Dash should be expanded (<em>Expanded</em>) or not (<em>Not Expanded</em>).</li>\n</ul></li>\n</ol>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-06T15:43:21.123", "id": "44617", "postId": "40706", "score": "0", "text": "Thanks so much...it worked liked a charm.\nFirst you have to change the home-expanded to expanded, them you have the option to change from-factor, that in my case, Desktop", "userDisplayName": null, "userId": "16728" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T13:08:46.483", "id": "40706", "lastActivityDate": "2011-05-06T14:19:54.823", "lastEditDate": "2017-04-13T12:24:49.530", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "12943", "parentId": "40682", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>As <a href=\"https://askubuntu.com/users/2732/octavian-damiean\">Octavien Damien</a> explained here: </p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/29553/how-can-i-configure-unity\">How can I configure Unity?</a></li>\n</ul>\n\n<p><strong>Configuration Editor (dc...
null
null
null
null
null
40683
1
93431
2011-05-06T10:42:34.510
0
1921
<h1>Update</h1> <p>Ok so after some playing around I found a GUI way to setup Internet Connection Sharing in ubuntu 11.04(Natty), Remembering that I am using gnome 3.</p> <p>We have the <em>network Manager Applet</em> up top<br> <img src="https://i.stack.imgur.com/PBAq4.png" alt="enter image description here"></p> <p><em>Right click</em> and choose <em>edit connections</em><br> <img src="https://i.stack.imgur.com/whvFI.png" alt="enter image description here"></p> <p>Under the <em>Wired</em> tab highlight your wired connection and click <em>Edit...</em> <img src="https://i.stack.imgur.com/iA7U4.png" alt="enter image description here"></p> <p>Under the <em>IPV4</em> tab in the <em>Method</em> dropdown select <em>Shared to other computers</em>. <img src="https://i.stack.imgur.com/BSIIZ.png" alt="enter image description here"></p> <p>Finally <strong>restart your computer</strong>.<br> Set your xbox to automatic connection settings.</p> <h2>The new question...</h2> <p>So after getting it working the only issue is that I have a strict NAT type.</p> <p>I was wondering if anyone could help me fix that? My settings are</p> <blockquote> <p>Router is 192.168.1.1 </p> <p>Wireless card is: - IP: 192.168.1.3 (static)<br> - Broadcast: 192.168.1.255<br> - Subnet: 255.255.255.0<br> - DNS: 192.168.1.1 </p> <p>The wired network sets itself as:<br> - IP: 10.42.43.1<br> - Broadcast: 10.42.43.255<br> - Subnet: 255.255.255.0 </p> <p>The xbox sets itself as:<br> - IP: 10.42.43.31<br> - Subnet: 255.255.255.0<br> - Gateway: 10.42.43.1 (wired IP)<br> - DNS: 10.42.43.1 (wired IP)</p> </blockquote> <hr /> <p>I am wanting to use ICS in ubuntu (Natty) for the xbox 360.</p> <p>I am struggling to find out a step by step guide to do it.</p> <p>Basically The setup is</p> <p>Modem -> router (ip 192.168.1.1) -> laptop (via wifi (static ip 192.168.1.3)) -> xbox (via ethernet).</p> <p>For some reason it seems that my connections are also named a bit funny.</p> <p>It seems that my wifi connection is eth1 and my wired is eth0.</p> <p>So a step by step guide of how to configure this is what I am after.</p>
14127
235
2011-05-06T14:12:35.193
2012-01-06T23:51:14.627
How do I share my connection with ICS and an Xbox 360?
[ "11.04", "networking", "internet", "interface" ]
1
3
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T13:33:06.060", "id": "44591", "postId": "40683", "score": "0", "text": "I've always done this type of thing cli. Troubleshooting the gui isn't my thing. I hope you get it worked out though.", "userDisplayName": null, "userId": "5768" }, { "creation...
{ "accepted": true, "body": "<p>The issue is that these ports aren't opened with your router.</p>\n\n<pre><code>Port 88 (UDP)\nPort 3074 (UDP and TCP)\nPort 53 (UDP and TCP)\nPort 80 (TCP)\n</code></pre>\n\n<p>Open these ports and it should be fixed. Though this website incorporates windows, you should be able to modify the info to suit ubuntu.</p>\n\n<p><a href=\"http://www.ehow.com/how_4550488_open-router-ports.html\" rel=\"nofollow\">http://www.ehow.com/how_4550488_open-router-ports.html</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-01-06T23:38:53.897", "id": "93431", "lastActivityDate": "2012-01-06T23:38:53.897", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "40164", "parentId": "40683", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>The issue is that these ports aren't opened with your router.</p>\n\n<pre><code>Port 88 (UDP)\nPort 3074 (UDP and TCP)\nPort 53 (UDP and TCP)\nPort 80 (TCP)\n</code></pre>\n\n<p>Open these ports and it should be fixed. Though this website incorporates windows, you should be a...
null
null
null
null
null
40686
1
40688
2011-05-06T10:47:00.403
3
109
<p>I try to use</p> <pre><code>apt-cache search gedit </code></pre> <p>But there is no information about version.</p> <p>I am trying to install gedit 2.30.4 (by default it is 3.x on Gnome 3). But there is no gedit with this version.</p> <pre><code>sudo apt-get install gedit=2.30.4 #=&gt; Error </code></pre> <p>So how can I figure out which versions are in repo?</p>
16316
2647
2011-05-15T21:10:31.073
2011-05-15T21:23:23.057
How to know which versions of application I can install via apt
[ "11.04", "apt", "gnome", "gedit" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T10:56:50.823", "id": "44564", "postId": "40686", "score": "0", "text": "The `=` in your command seems suspicious. I'd expect a `-`.", "userDisplayName": null, "userId": "15811" }, { "creationDate": "2011-05-06T10:57:58.020", "id": "44565", "p...
{ "accepted": true, "body": "<p>The <code>policy</code> command of <code>apt-cache</code> displays the current installed and available versions.</p>\n\n<pre><code>apt-cache policy gedit\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T10:53:36.867", "id": "40688", "lastActivityDate": "2011-05-15T21:23:23.057", "lastEditDate": "2011-05-15T21:23:23.057", "lastEditorDisplayName": null, "lastEditorUserId": "6969", "ownerDisplayName": null, "ownerUserId": "2647", "parentId": "40686", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>The <code>policy</code> command of <code>apt-cache</code> displays the current installed and available versions.</p>\n\n<pre><code>apt-cache policy gedit\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC ...
null
null
null
null
null
40691
1
null
2011-05-06T11:20:34.227
1
4395
<p>I am part of a large F/OSS project; as part of my role I need to assign tasks to people.</p> <p>As such, I am trying to find software that allows me to set a task (priority, due date, description, etc) and send it via email to someone. I would preferably like software that can send an email which can be marked by the assignee as done, and notify me of this.</p> <p>Any suggestions?</p>
2442
null
null
2022-10-18T05:29:51.083
Task management software for Ubuntu?
[ "project-management", "task-management" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You may be better off with popular web-based task or issue tracking solution such as <a href=\"http://www.redmine.org\" rel=\"nofollow\">redmine</a> or <a href=\"http://trac.edgewall.org/\" rel=\"nofollow\">trac</a> instead of a desktop application. Just a thought.</p>\n", ...
null
null
null
null
null
40693
1
40702
2011-05-06T11:27:12.910
1
2855
<p>Is it possible to integrate Dropbox in other file managers than nautilus? If yes, which manager would be best suited for this, and how do I set this up?</p>
2313
2355
2023-03-29T12:18:11.310
2023-03-29T12:18:11.310
Integrating Dropbox with file managers other than Nautilus (GNOME Files)
[ "dropbox", "filemanager" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<ol>\n<li>Download the closed source Dropbox Linux client from <a href=\"http://www.getdropbox.com/download?plat=lnx.x86\" rel=\"nofollow\">http://www.getdropbox.com/download?plat=lnx.x86</a> (x86_64 for 64 bit) </li>\n<li>Extract the contents and you should get a .dropbox-dist folder out of the archive. Move the folder to$HOME </li>\n<li>Run~/.dropbox-dist/dropboxd. </li>\n</ol>\n\n<p>Reference: <a href=\"http://antrix.net/posts/2008/dropbox-without-gnome/\" rel=\"nofollow\">http://antrix.net/posts/2008/dropbox-without-gnome/</a></p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-05-06T12:48:02.543", "id": "44582", "postId": "40702", "score": "0", "text": "I'm at mobile, when I get home I can explain better if you need. ;-)", "userDisplayName": null, "userId": "12943" }, { "creationDate": "2011-05-06T12:58:38.363", "id": "44583", "postId": "40702", "score": "0", "text": "This works well (I use it on a kde desktop) but it might not qualify as \"integrating\" with another file manager.", "userDisplayName": null, "userId": "6186" }, { "creationDate": "2011-05-06T13:11:02.960", "id": "44585", "postId": "40702", "score": "0", "text": "Could you explain what is needed to qualify this as integrating?", "userDisplayName": null, "userId": "12943" }, { "creationDate": "2011-05-06T21:57:14.247", "id": "44732", "postId": "40702", "score": "0", "text": "An autosyncing folder is enough. thanks, the article is pretty clear on the steps to take.", "userDisplayName": null, "userId": "2313" }, { "creationDate": "2011-05-06T23:20:37.887", "id": "44748", "postId": "40702", "score": "0", "text": "Welcome. If others functions are missing tell me then I can look toward it ;-)", "userDisplayName": null, "userId": "12943" }, { "creationDate": "2011-06-22T21:31:32.673", "id": "55641", "postId": "40702", "score": "0", "text": "as far as i know, there isn't a dropbox-thunar integration yet.", "userDisplayName": null, "userId": "9545" }, { "creationDate": "2013-10-18T16:26:39.743", "id": "462597", "postId": "40702", "score": "0", "text": "One function that I'm looking for is folder ribbons or something that tells me if a file has been uploaded or not. I'm using Nemo on Ubuntu and I really miss this feature", "userDisplayName": null, "userId": "6211" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T12:46:46.850", "id": "40702", "lastActivityDate": "2011-05-06T12:46:46.850", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "12943", "parentId": "40693", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<ol>\n<li>Download the closed source Dropbox Linux client from <a href=\"http://www.getdropbox.com/download?plat=lnx.x86\" rel=\"nofollow\">http://www.getdropbox.com/download?plat=lnx.x86</a> (x86_64 for 64 bit) </li>\n<li>Extract the contents and you should get a .dropbox-dis...
null
null
null
null
null
40697
1
56462
2011-05-06T11:51:12.827
1
4199
<p>I have installed ATI Catalyst 11.5 driver (fglrx) on my laptop with Ubuntu 11.04 and switchable-graphics technology (ATI Mobility Radeon HD5470). Everything seems ok, <code>fglrxinfo</code> shows my discrete video card working, <code>glxgears</code> shows nearly 2000fps, Unity works, no graphical problems etc. But when i try to play games, i.e. Heroes Of Newerth (it has native linux client), my display are all full of graphical blinking artifacts, I think you what I am talking about.</p> <p>How can I fix this?</p> <p><strong>Added later:</strong> Also I noticed, that when I playing video online via flash player it works good, but when I expand it to full screen, it begins to flash and other annoying artifacts</p> <p><strong>Added a bit later:</strong> The problem is any application(video, game, etc.) in Fullscreen mode. I tried to check off "Full Screen Mode" in game, and there were no artifacts at all, but have some periodic lags</p>
10623
94914
2013-12-04T06:16:26.023
2013-12-04T06:16:26.023
Ubuntu 11.04 and ATI Catalyst 11.5 graphics artifacts
[ "11.04", "ati", "graphics", "fglrx", "visual-artifacts" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>After I completely reinstall Ubuntu 11.04, and installed from scratch Catalyst 11.7, every bug disappered. So now I enjoy gaming, video and other things in Ubuntu.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-08-09T13:59:02.807", "id": "56462", "lastActivityDate": "2011-08-09T13:59:02.807", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10623", "parentId": "40697", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Hmm Have had a few problems with ATI's driver. Have you attempted to try to use the control centre that comes with ATI driver</p>\n\n<p>You used to be able to access it from the terminal:</p>\n\n<p>DISPLAY=:0 amdcccle</p>\n\n<p>You could also perhaps have a look at the answer...
null
null
null
null
null
40700
1
42330
2011-05-06T12:37:26.123
5
238
<p>There is a "pics" folder on the Ubuntu CD, containing some PNG files, which are apparently a part of an offline HTML document about Debian. Just curious, is there any use of them somewhere in the live CD/installer?</p>
16643
527764
2020-08-09T06:22:44.857
2020-08-09T06:22:44.857
Why does Ubuntu CD contain a "pics" folder with Debian-related images?
[ "live-cd", "debian", "html" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T12:47:03.777", "id": "44581", "postId": "40700", "score": "14", "text": "I think this is somewhat analogous to \"junk\" sequences in our DNA. They provide clues and information about our ancestors. :)", "userDisplayName": null, "userId": "12473" } ]
{ "accepted": true, "body": "<p>These files are part of the <a href=\"http://packages.ubuntu.com/natty/debian-cd\" rel=\"noreferrer\">debian-cd</a> package, which is used to build the Ubuntu live CDs.</p>\n\n<p>The images are sourced by an include file named <code>README.html.in</code>, which the <code>add-bin-doc</code> tool incorporates into <code>README.html</code> at the root of the CD's filesystem. This file is either never generated or is deleted from Ubuntu's CDs, so I believe the images are unused.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-12T19:25:30.447", "id": "42330", "lastActivityDate": "2011-05-12T19:25:30.447", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "40700", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>These files are part of the <a href=\"http://packages.ubuntu.com/natty/debian-cd\" rel=\"noreferrer\">debian-cd</a> package, which is used to build the Ubuntu live CDs.</p>\n\n<p>The images are sourced by an include file named <code>README.html.in</code>, which the <code>add-...
null
0
null
null
null
40703
1
null
2011-05-06T05:56:17.777
-1
1338
<p>I bought a new hp i3 laptop and im facing a huge overheat problem on Ubuntu (only cuz it works fine on windows 7).</p> <p>Any time im working one Ubuntu and running multi programs at same time i get this black screen telling me that laptop will shutdown due to overheat, not to mention burning smell from the side of laptop !</p> <p>on the other side windows 7 seems to be handling this temp. issue very well and i never had this problem.</p> <p>thank you very much</p>
353335
7035
2011-06-06T15:04:00.710
2011-06-06T15:04:00.710
HP Ubuntu 11.04 overheat problem, any way to control?
[ "hp" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Do you have any graphics card installed in your laptop??\nIf yes have you installed the proprietary driver for it?</p>\n\n<p>Open source drivers are not good at handling the cooling of the graphics card. I faced the same issue. </p>\n\n<p>If you have graphics card and have no...
null
0
2011-10-24T21:37:13.353
null
Momen M El Zalabany
40708
1
40804
2011-05-06T13:16:56.340
4
4262
<p>Is there any such <code>.conf</code> file for Firefox to edit <code>about:config</code>?</p>
814
null
null
2011-05-06T18:58:57.527
.conf page for Firefox's about:config
[ "firefox", "configuration" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>As Rinzwind already pointed out, the <code>prefs.js</code> file is what changes when you use <code>about:config</code>. It actually is a javascript file though, but it mostly just calls the <code>user_pref()</code> function many times (for me it’s over 100).</p>\n\n<p>If you’re looking to make changes to Firefox configuration though it generally works better to create a <code>user.js</code> file in the same location as <code>prefs.js</code>. On startup, Firefox first runs <code>prefs.js</code> to load those settings, then runs <code>user.js</code>. Once you exit, the settings from <code>user.js</code> are also saved in <code>prefs.js</code>. Firefox doesn’t write to <code>user.js</code> so you won’t lose your settings, and it’ll be easy to manage just a few lines of settings there instead of being mixed in with everything else in <code>prefs.js</code>.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-05-07T05:52:14.307", "id": "44815", "postId": "40804", "score": "0", "text": "Can you give me an example of an `about:config` string in `prefs.js` or `user.js`? And is there any variable I can use in this files? I want to use a variable in a string that represents the Firefox version in use.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-05-09T18:30:16.300", "id": "45504", "postId": "40804", "score": "0", "text": "I haven’t tried using variables, but here’s an example line I have in my `user.js` from back when I tried out spell check in single-line input fields (includes a comment at the end, which is optional):\n\n`user_pref(\"layout.spellcheckDefault\", 1); // set to 2 to spellcheck in single-line inputs, 1 for normal`", "userDisplayName": null, "userId": "16603" }, { "creationDate": "2011-05-09T18:47:54.293", "id": "45509", "postId": "40804", "score": "0", "text": "What was the `about:config` line? I want to know which part goes where.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-05-09T19:01:27.307", "id": "45513", "postId": "40804", "score": "0", "text": "`layout.spellcheckDefault` shows in the Preference Name column, and `1` shows in the Value column. Since 1 is actually the default here, the Status shows default and not user set. The Type column is to help you know what sort of values you can set. For example a string value would need the value in quotes. If you’re not sure what to put in user.js you can make the change in `about:config` and then search for the Preference Name in prefs.js after exiting Firefox.", "userDisplayName": null, "userId": "16603" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T18:58:57.527", "id": "40804", "lastActivityDate": "2011-05-06T18:58:57.527", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "16603", "parentId": "40708", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Have a look iin your <code>~/.mozilla/</code> directory for a <code>prefs.js</code>. It is a plain text file (and not javascript). More info about pref.js <a href=\"http://kb.mozillazine.org/Prefs.js_file\" rel=\"nofollow\">on the mozilla site</a></p>\n", "commentCount": ...
null
null
null
null
null
40711
1
null
2011-05-06T13:24:47.913
1
426
<p>I am having a problem when I try to run C# executables (compiled with mono C# compiler at 10.10 server) inside a chroot jail. In order to run the executable inside the jail I need to include the proper libraries. To do that I use ldd for C, C++, Pascal and other languages. Unfortunately this won't work for C# files ("ldd hello.exe" states that hello.exe is not a dynamic executable). Which libraries do C# executables use? Or do you know how ca I find them?</p>
9771
null
null
2011-07-04T09:21:41.477
Libraries used by C# executables
[ "executable", "chroot", "c#", "libraries" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2012-03-08T03:36:26.347", "id": "130920", "postId": "40711", "score": "0", "text": "OP are you still looking for an answer? If so, you may need to repost your question as this is flagged for closure. =)", "userDisplayName": null, "userId": "46312" }, { "creatio...
null
[ { "accepted": null, "body": "<p>Almost everything that you're looking for is in :</p>\n\n<pre><code>/usr/lib/mono\n</code></pre>\n\n<p>It would be hard to only get parts of it, so you might try putting them all in the chroot.\nFor a list of the mono packages, do :</p>\n\n<pre><code>sudo aptitude search mono...
null
null
null
null
null
40714
1
null
2011-05-06T13:27:15.040
5
1187
<p>If I go a a URL like <a href="http://somafm.com/play/groovesalad130" rel="nofollow">http://somafm.com/play/groovesalad130</a> in Firefox, the browser prompts me to load a *.pls file in Banshee. When loaded, this successfully plays the radio station in Banshee. How can I save this radio station permanently, so that I don't have to go the web page to trigger it?</p> <p>I know about the "Add a new Internet Radio station" button and window, but I would like to be able to "save" or "bookmark" the currently playing station, instead of having to dig out the links myself.</p>
3643
8844
2013-06-20T23:50:14.943
2013-06-20T23:50:14.943
How to save currently playing radio station?
[ "banshee", "internet-radio" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p><strong>1</strong> - In Banshee click on <strong>Add A New Internet Station Or Playlist</strong></p>\n\n<p><strong>2</strong> - Then in the <strong>Stream URL</strong> field copy and paste: <a href=\"http://www.somafm.com/groovesalad.pls\" rel=\"nofollow\">http://www.somafm.c...
null
null
null
null
null
40720
1
40793
2011-05-06T13:40:11.680
0
197
<p>I never use these buttons:</p> <p><img src="https://i.stack.imgur.com/HoTXm.png" alt="Crop, Red-eye, Adjust, Enhance"></p> <p>How can I make them go away?</p>
1859
null
null
2011-05-06T18:19:37.390
How can I hide the simplistic photo editing buttons in Shotwell?
[ "customization", "interface", "shotwell" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p><strong>Short answer</strong>: You can't, those buttons are part of the UI.</p>\n\n<p><strong>Long answer</strong>: There's a couple of options. Shotwell is open source/free software, so of course you're welcome to download the source and modify it to suit your needs. You could also file a Shotwell ticket for a preference to disable that toolbar. It's probably not a feature we're likely to add unless there's more demand for it.</p>\n\n<p>You can file a ticket here:\n<a href=\"http://trac.yorba.org/newticket\" rel=\"nofollow\">http://trac.yorba.org/newticket</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T18:19:37.390", "id": "40793", "lastActivityDate": "2011-05-06T18:19:37.390", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "13009", "parentId": "40720", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p><strong>Short answer</strong>: You can't, those buttons are part of the UI.</p>\n\n<p><strong>Long answer</strong>: There's a couple of options. Shotwell is open source/free software, so of course you're welcome to download the source and modify it to suit your needs. You c...
null
null
null
null
null
40723
1
1288984
2011-05-06T13:54:26.150
21
71362
<p>Has anyone managed to get the Citrix receiver client (icaclient) working in Ubuntu?</p>
16747
172367
2016-04-23T17:02:25.227
2022-04-03T16:11:34.693
How do I install Citrix receiver?
[ "software-installation", "64-bit", "citrix", "icaclient" ]
6
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T19:16:46.543", "id": "44693", "postId": "40723", "score": "0", "text": "`package architecture (i386) does not match system (amd64)` Are you installing the i386 package on amd64 system? Sounds fishy but I might be wrong ;)", "userDisplayName": null, "userId":...
{ "accepted": true, "body": "<p>The detailed guide on install and usage of Citrix Workspace app in Linux I have explained in my blog below which Tested in 20.04 LTS, 20.10, Fedora 32, Fedora 33</p>\n<p><a href=\"https://www.debugpoint.com/2020/10/install-connect-citrix-desktop-ubuntu-linux/\" rel=\"nofollow noreferrer\">https://www.debugpoint.com/2020/10/install-connect-citrix-desktop-ubuntu-linux/</a></p>\n<p><strong>However, here is a summary of the steps.</strong></p>\n<p><strong>Install Citrix Workspace App for Fedora, Red Hat, and Other .rpm based distributions</strong></p>\n<p>Download the below .rpm package for 64-bit systems. Go to the below link. Click on RPM Packages, then Red Hat Full Package (self-service support). Then click on Download file under “Citrix Workspace app for Linux (x86_64)”</p>\n<p><a href=\"https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html\" rel=\"nofollow noreferrer\">https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html</a></p>\n<p>Open the .rpm package via Software or any package manager for installation. All the dependencies should already be present in your current system.</p>\n<p><strong>Install Citrix Workspace App for Ubuntu, Linux Mint, and Other Debian based distributions</strong></p>\n<p>Download the below .deb package for 64-bit systems. Go to the below link. Click on Debian Packages, then Full Package (self service support). Then click on Download file under “Citrix Workspace app for Linux (x86_64)”</p>\n<p><a href=\"https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html\" rel=\"nofollow noreferrer\">https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html</a></p>\n<p>Open the .deb package via Software or any package manager for installation. All the dependencies should already be present in your current system.</p>\n<p>After installation, you can visit your Citrix VM page and log in via browser. The .ICA file association would be taken care of by the installer.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2021-06-02T19:10:32.433", "id": "2293337", "postId": "1288984", "score": "0", "text": "This appears to be a better modern answer, the initial question and answers are quite old.", "userDisplayName": null, "userId": "16747" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2020-11-02T09:38:02.093", "id": "1288984", "lastActivityDate": "2020-11-03T09:24:29.927", "lastEditDate": "2020-11-03T09:24:29.927", "lastEditorDisplayName": null, "lastEditorUserId": "863254", "ownerDisplayName": null, "ownerUserId": "863254", "parentId": "40723", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>I made sure that I uninstalled the 64 bit package, and dpkg --force-architecture -i libmotif4*i386.deb so that I installed the 32 bit package,http://ftp.au.debian.org/debian/pool/non-free/o/openmotif/libmotif4_2.3.3-5_i386.deb, you can only have one or the other installed, n...
null
null
null
null
null
40725
1
null
2011-05-06T14:08:58.303
2
1701
<p>I did a clean install of Natty Narwhal on my AspireOne D255 Netbook. Right off the bat, it seems to work right out of box, but from time to time (especially shortly after booting up or resuming from sleep), mouse cursor would freezes, followed by a drop in WiFi connection.</p> <p>Can anyone go about suggesting how to troubleshoot this annoyance?</p> <p>Just some background information. My system is not powerful enough to run Unity, so it is under classic mode at the moment.</p> <p>Here is the output from lspci</p> <pre><code>00:00.0 Host bridge: Intel Corporation N10 Family DMI Bridge 00:02.0 VGA compatible controller: Intel Corporation N10 Family Integrated Graphics Controller 00:02.1 Display controller: Intel Corporation N10 Family Integrated Graphics Controller 00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 02) 00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 02) 00:1c.1 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 2 (rev 02) 00:1d.0 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #1 (rev 02) 00:1d.1 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #2 (rev 02) 00:1d.2 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #3 (rev 02) 00:1d.3 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #4 (rev 02) 00:1d.7 USB Controller: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller (rev 02) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2) 00:1f.0 ISA bridge: Intel Corporation NM10 Family LPC Controller (rev 02) 00:1f.2 SATA controller: Intel Corporation N10/ICH7 Family SATA AHCI Controller (rev 02) 00:1f.3 SMBus: Intel Corporation N10/ICH 7 Family SMBus Controller (rev 02) 01:00.0 Ethernet controller: Atheros Communications AR8152 v1.1 Fast Ethernet (rev c1) 02:00.0 Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01) </code></pre> <p>Here is the excerpt from dmesg</p> <pre><code>[ 8127.020293] eth1: no IPv6 routers present [ 8154.099945] psmouse.c: TouchPad at isa0060/serio1/input0 lost synchronization, throwing 1 bytes away. [ 8155.128208] psmouse.c: resync failed, issuing reconnect request [ 8195.396010] atl1c 0000:01:00.0: atl1c: eth0 NIC Link is Up&lt;100 Mbps Full Duplex&gt; [ 8195.924818] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 8210.300491] psmouse.c: TouchPad at isa0060/serio1/input0 lost synchronization, throwing 5 bytes away. [ 8215.851447] atl1c 0000:01:00.0: irq 45 for MSI/MSI-X [ 8217.129771] atl1c 0000:01:00.0: atl1c: eth0 NIC Link is Up&lt;100 Mbps Full Duplex&gt; [ 8217.651271] psmouse.c: resync failed, issuing reconnect request [ 8219.160058] eth0: no IPv6 routers present </code></pre>
16075
235
2011-05-06T20:22:18.833
2012-01-04T02:27:08.873
Random freezes followed by loss of WiFi connection with a BCM4313 wireless card
[ "11.04", "wireless", "mouse", "freeze", "broadcom" ]
2
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-11T04:31:23.873", "id": "45836", "postId": "40725", "score": "0", "text": "Some similar reports found in Debian & Gentoo world\nhttp://lists.debian.org/debian-x/2011/04/msg00464.html\nhttp://forums.debian.net/viewtopic.php?f=7&t=61309\nhttp://forums.gentoo.org/viewtopi...
null
[ { "accepted": null, "body": "<p>There are some others facing difficulties with that chipset in Natty. Take a look at <a href=\"https://askubuntu.com/questions/27537/broadcom-sta-driver-doesnt-work-well-with-bcm4313\">this question</a> for info on how to solve your problem.</p>\n", "commentCount": "0", ...
null
null
2012-02-03T00:50:12.330
null
null
40729
1
null
2011-05-06T14:28:27.210
0
5467
<p>I have the source code in tar.bz2 but when I tried these instructions on <a href="http://www.cyberciti.biz/faq/install-firefox-4-0-tar-bz2-in-linux/" rel="nofollow">http://www.cyberciti.biz/faq/install-firefox-4-0-tar-bz2-in-linux/</a> it's just opening Firefox 4 (this instruction is to install firefox 4 but I changed 4 to 3.6.16).</p> <p>Thanks.</p>
16751
814
2011-05-06T14:44:16.477
2011-05-06T17:00:14.717
How to downgrade firefox to 3.6.15?
[ "11.04", "firefox" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You probably meant 3.6.x, 3.6.17 is the latest version in the 3.6 branch.</p>\n\n<ol>\n<li>Firefox 3.6.x can be downloaded from <a href=\"http://www.mozilla.com/firefox/all-older.html\" rel=\"nofollow\">http://www.mozilla.com/firefox/all-older.html</a></li>\n<li><p>Extract th...
null
null
null
null
null
40730
1
40736
2011-05-06T14:35:54.830
1
8935
<p>I want execute this <code>cp debian.master/abi/2.6.38*/amd64/generic debian.master/abi/2.6.38*/amd64/core2</code> but bash gives error in second <code>*</code>:</p> <pre><code>cp: cannot create regular file `debian.master/abi/2.6.38*/amd64/core2': No such file or directory </code></pre> <p>How can I copy one file in same dir but when other name without to change of dir nor to write the entire folder name? </p>
4870
null
null
2011-05-06T15:24:45.397
Copy file to dir using wildcards or regular expression in destination?
[ "bash", "clipboard" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The error is because the shell try to expand <code>*</code> glob character before executing the command, and the destination do not exist yet. One possibility to overcome this would be</p>\n\n<pre><code>cp debian.master/abi/2.6.38*/amd64/generic \"$(eval echo debian.master/abi/2.6.38*/amd64)\"/core2\n</code></pre>\n\n<p>More simply you can do:</p>\n\n<pre><code>( cd debian.master/abi/2.6.38*/amd64/; cp generic core2 )\n</code></pre>\n\n<p>Or also</p>\n\n<pre><code>dir=debian.master/abi/2.6.38*/amd64/\ncp \"$dir\"/generic \"$dir\"/core2\n</code></pre>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-05-06T14:50:44.867", "id": "44607", "postId": "40736", "score": "0", "text": "Thanks, the second method is more simple but it would be: `( cd debian.master/abi/2.6.38*/amd64/; cp generic core2; )`", "userDisplayName": null, "userId": "4870" }, { "creationDate": "2011-05-06T14:52:08.527", "id": "44609", "postId": "40736", "score": "0", "text": "Ah, ok. I would not spawn a subshell, but in such a case the `cd` remain in effect. I edit the answer", "userDisplayName": null, "userId": "2647" }, { "creationDate": "2011-05-06T21:06:48.733", "id": "44723", "postId": "40736", "score": "0", "text": "The first one, using eval, is dangerous. eval should be avoided at all cost. The last one won't work since glob expansion does not occur in variable assignments or inside quotes. I'd do `for f in debian.master/abi/2.6.38*/amd64/generic; do cp \"$f\" \"${f%/generic}/core2\"; done`", "userDisplayName": null, "userId": "9016" }, { "creationDate": "2011-05-07T05:19:58.547", "id": "44803", "postId": "40736", "score": "0", "text": "@gheira: ok for `eval`, but the last one works imho, as long as the `*` is not quoted and the expansion gives only one string, as I think the user suppose.", "userDisplayName": null, "userId": "2647" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T14:45:45.867", "id": "40736", "lastActivityDate": "2011-05-06T14:50:53.210", "lastEditDate": "2011-05-06T14:50:53.210", "lastEditorDisplayName": null, "lastEditorUserId": "2647", "ownerDisplayName": null, "ownerUserId": "2647", "parentId": "40730", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>The error is because the shell try to expand <code>*</code> glob character before executing the command, and the destination do not exist yet. One possibility to overcome this would be</p>\n\n<pre><code>cp debian.master/abi/2.6.38*/amd64/generic \"$(eval echo debian.master/ab...
null
null
null
null
null
40732
1
40734
2011-05-06T14:39:51.723
38
36523
<p>I usually edit Python files with nano, so I need four spaces instead of a tab. How can I get nano to automatically insert spaces for tabs, and control how many of them it inserts?</p>
1067
null
null
2015-03-23T15:57:57.630
How do I get spaces instead of tabs in nano?
[ "command-line", "nano" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2013-08-23T07:00:57.050", "id": "428299", "postId": "40732", "score": "1", "text": "StackOverflow: [tabs to spaces in nano](http://stackoverflow.com/a/15364505/1167012)", "userDisplayName": null, "userId": "186520" } ]
{ "accepted": true, "body": "<p>From the <a href=\"http://www.nano-editor.org/dist/v2.1/nano.html\" rel=\"noreferrer\">nano Command Manual</a>:</p>\n\n<blockquote>\n <p><strong><code>-E, --tabstospaces</code></strong><br>\n <code>Convert typed tabs to spaces.</code> </p>\n \n <p><strong><code>-T &lt;#cols&gt;, --tabsize=&lt;#cols&gt;</code></strong><br>\n <code>Set the displayed tab length to #cols columns. The value of #cols must be greater than 0. The default value is 8.</code></p>\n</blockquote>\n\n<p>For four spaces, the appropriate command would therefore be <code>nano -ET4</code>.</p>\n\n<p>Consider <a href=\"https://askubuntu.com/questions/1414/how-to-create-a-permanent-alias\">creating a permanent <em>alias</em></a>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-05-06T16:48:29.600", "id": "44638", "postId": "40734", "score": "5", "text": "you could also consider editing `/etc/nanorc` instead of making an alias.", "userDisplayName": null, "userId": "3778" }, { "creationDate": "2012-08-23T16:46:54.473", "id": "223034", "postId": "40734", "score": "0", "text": "I feel like patching /etc/nanorc.... and uploading to fix this once and for all. With python3 not accepting mixed tabs&spaces this is silly to have tabs in python files in nano.", "userDisplayName": null, "userId": "72" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-06T14:43:27.320", "id": "40734", "lastActivityDate": "2011-05-06T14:43:27.320", "lastEditDate": "2017-04-13T12:25:03.983", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "40732", "postTypeId": "2", "score": "24" }
[ { "accepted": true, "body": "<p>From the <a href=\"http://www.nano-editor.org/dist/v2.1/nano.html\" rel=\"noreferrer\">nano Command Manual</a>:</p>\n\n<blockquote>\n <p><strong><code>-E, --tabstospaces</code></strong><br>\n <code>Convert typed tabs to spaces.</code> </p>\n \n <p><strong><code>-T &lt;#co...
null
null
null
null
null
40733
1
null
2011-05-06T14:43:08.727
2
2354
<p>I want when i maximized a window for the minimize,maximize and close buttons to not go left but stay right like in Ubuntu 10.10.</p> <p>Thanks</p>
16751
7035
2011-05-06T16:37:24.147
2011-06-06T21:02:55.003
Maximizing a Window moves minimize,maximize and close button to the left
[ "11.04" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>To clarify the question, I believe this relates to the Unity interface in Ubuntu 11.04. If the window controls are switched to the right of the screen, they function correctly when an application is running in a window. However, if the application is maximized, the window c...
null
null
null
null
null
40743
1
null
2011-05-06T15:09:58.823
2
631
<p>Microphone is not working. Any (quick) fix?</p> <pre><code>**** List of PLAYBACK Hardware Devices **** card 0: Intel [HDA Intel], device 0: ALC272X Analog [ALC272X Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 </code></pre>
16763
235
2012-01-04T14:08:27.507
2012-01-05T16:42:53.990
How do I get the microphone working on an Acer ZG8?
[ "acer", "microphone" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2011-05-06T15:33:23.173", "id": "44616", "postId": "40743", "score": "0", "text": "what is the output of aplay -l?", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-12-30T18:30:42.787", "id": "104659", "postId": "40743", "score"...
null
[ { "accepted": null, "body": "<p>Make sure the checkmark by the \"Mute\" isn't checked, in your sound preferences.\n<img src=\"https://i.stack.imgur.com/2JLt0.png\" alt=\"enter image description here\"></p>\n\n<p><br></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "c...
null
null
null
null
null
40744
1
null
2011-05-06T15:10:24.427
3
3525
<p>I have an ubuntu laptop, and can control the speaker volume with the built in keys. However, the max volume is still pretty low in some applications.</p> <p>Can I amplify the voice output further somehow?</p>
12548
null
null
2017-07-20T08:28:44.590
How to increase speaker volume?
[ "gnome", "sound", "multimedia" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<ul>\n<li><p>First click here to open the sound menu:</p>\n\n<p><img src=\"https://i.stack.imgur.com/J5Zvw.png\" alt=\"Click me, I&#39;m a button.\"></p></li>\n<li><p>Then click sound preferences to open the sound preferences:</p>\n\n<p><img src=\"https://i.stack.imgur.com/Mt2OB...
null
null
null
null
null
40751
1
null
2011-05-06T15:31:50.663
2
284
<p>Since the release of 11.04, I haven't received any updates from the repositories for 11.04.I installed the beta version, and as far as I've understood I'm currently running on the released version. </p> <p>I can't really believe there hasn't been a single patch or update since 30th of April.</p>
16767
null
null
2011-05-06T15:36:52.123
No updates from the 11.04 natty repositories since 30th of April?
[ "11.04", "upgrade" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>There has been many updates since the release, try manually checking for updates by going to the terminal and using the following command.</p>\n\n<pre><code>sudo apt-get update &amp;&amp; sudo apt-get upgrade\n</code></pre>\n", "commentCount": "1", "comments": [ ...
null
null
null
null
null
40761
1
null
2011-05-06T16:11:25.687
2
173
<p>For my computers with Natty UbuntuOne only works more or less stable with the nightlies releases ( <a href="https://launchpad.net/~ubuntuone/+archive/nightlies" rel="nofollow">https://launchpad.net/~ubuntuone/+archive/nightlies</a> ). My main concern is, when I add the repo to my apt sources I get prompted with a warning that says that the key is not trustworthy. Now, how serious is this? I'm syncing tons of personal data - so I wonder whether I can trust nightlies or whether I should not use it? Any idea? How big is the chance that my data are being read by a third party?</p>
6278
1992
2011-05-06T16:39:54.977
2011-06-11T18:00:50.313
How secure is the ubuntuone nightlies repos?
[ "ubuntu-one" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Any nightly repository is likely to come with some risk of breakage (code wise), but as for your data - no one is reading it if you are using the same service as what you would use with the stock Ubuntu One.</p>\n\n<p>The reason you are getting an error in Apt is because you ...
null
null
null
null
null
40763
1
69872
2011-05-06T16:17:21.560
6
5346
<p>Source code for something that won't compile has the line <code>#include &lt;dbus/dbus.h&gt;</code> but in real life that header file is in <code>/usr/include/dbus-1.0/</code> Similar situation exists for the <code>dbus-c++</code> package.</p> <p>Why doesn't Ubuntu provide a symlink <code>/usr/include/dbus</code> pointing to the <code>dbus-1.0</code> directory? Is this an bug in the <code>dbus</code> package? If intended, what it the purpose?</p> <p>Is it a proper fix to add a symlink myself? </p> <p>(Changing the source is not practical - there are many files, and they need to match what other people have.)</p> <p><strong>Update:</strong></p> <p>Ok, I totally misunderstood the situation, though it still comes down to a problem I think should be solved by a symlink. The dbus directory referred to in the <code>#include</code> statement is a deeper level directory under <code>/usr/include/dbus-1.0/</code>. The real problem is that the file <code>dbus-arch-deps.h</code> appears to be missing, but is actually stored in the weird location <code>/usr/lib/x86_64-linux-gnu/dbus-1.0/include/dbus/</code> . So now, why doesn't Ubuntu provide a symlink to this in <code>/usr/include/dbus-1.0/dbus</code>, or actually store it there?</p>
11878
26246
2015-11-22T22:17:37.483
2015-11-22T22:17:37.483
symlink for dbus headers
[ "programming", "c", "symbolic-link", "dbus" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>dbus include paths are meant to be retrieved by a call to</p>\n\n<pre><code>pkg-config dbus-1 --cflags\n</code></pre>\n\n<p>you can compile a program using dbus by</p>\n\n<pre><code>cc dbus-example.c -o dbus-example $(pkg-config dbus-1 --cflags)\n</code></pre>\n\n<p>or</p>\n\n<pre><code>make dbus-example CFLAGS+=\"$(pkg-config dbus-1 --cflags)\"\n</code></pre>\n\n<p>dbus headers are included by the line</p>\n\n<pre><code>#include &lt;dbus/dbus.h&gt;\n</code></pre>\n\n<p>this \"weird include paths\" increase the flexibility towards future versions of dbus or other architectures.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-10-20T18:08:42.020", "id": "69872", "lastActivityDate": "2011-10-20T18:08:42.020", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "27999", "parentId": "40763", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>dbus include paths are meant to be retrieved by a call to</p>\n\n<pre><code>pkg-config dbus-1 --cflags\n</code></pre>\n\n<p>you can compile a program using dbus by</p>\n\n<pre><code>cc dbus-example.c -o dbus-example $(pkg-config dbus-1 --cflags)\n</code></pre>\n\n<p>or</p>\n\...
null
null
null
null
null
40775
1
null
2011-05-06T17:06:54.717
1
1018
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/16736/menu-missing-in-lotus-notes-8-and-eclipse-in-unity">Menu missing in Lotus notes 8 and Eclipse in Unity</a> </p> </blockquote> <p>Hi</p> <p>I just upgraded to Natty and I was giving a sporting chance to Unity. There a lot of things I liked about it (ease of search, zooming, ...) but the issue that made me switch to "classic" is that eclipse was just showing 1 of the 10 menus (Windows) Any way I can coax Unity to show all ten of them?</p> <p>Ciao Stefano</p>
16778
-1
2017-04-13T12:24:13.887
2011-05-06T17:22:38.010
Ubuntu Unity not showing all eclipse menus
[ "unity", "eclipse" ]
0
0
CC BY-SA 3.0
[]
null
[]
null
0
2011-05-06T17:55:58.900
null
null