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
37483
1
37644
2011-04-28T09:33:55.010
15
19960
<p>After I copy say 50+ GB(30,000 files including different formats) of files from an internal hard drive to an external drive is there any way to find out if everything has been copied correctly? Also if I stop in between by canceling the operation and later say <strong>merge</strong> when continuing the operation will the correctness take a hit? </p> <p>I could use applications like <code>back-in-time</code> but I am very choosy in copying files and for the next time I intend to use <code>copy</code> operation and say <code>merge</code> instead of <code>replace</code>. Is it advisable when copying large number of files? </p>
4157
null
null
2017-08-30T19:05:37.907
Check the correctness of copied files
[ "10.10", "backup" ]
5
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T10:15:19.123", "id": "41502", "postId": "37483", "score": "2", "text": "you may find an [answer here](http://askubuntu.com/questions/12473/file-and-directory-comparison-tool).", "userDisplayName": null, "userId": "3940" } ]
{ "accepted": true, "body": "<p>I'm using <a href=\"http://md5deep.sourceforge.net/\" rel=\"noreferrer\">hashdeep</a> to verify backups/restores and occasionally to check for file system corruption in a RAID.</p>\n\n<p>The speed depends on which hash functions you use (some are more CPU intensive than others) as well as the read speed of your disks. On my system <code>hashdeep</code> can process or verify around 1 TB/hour with md5 and 300 MB/s read speed.</p>\n\n<hr>\n\n<p>Example on calculating checksums and storing them in a file:</p>\n\n<pre><code>cd my-data\nhashdeep -rlc md5 . &gt; ~/checksums.txt\n</code></pre>\n\n<p>Parameters: </p>\n\n<ul>\n<li><code>r</code> – recursive</li>\n<li><code>l</code> – use relative paths</li>\n<li><code>c</code> – specify hash function</li>\n<li><code>.</code> – recursive starting at the current directory</li>\n<li><code>&gt;</code> – redirect output to the specified file</li>\n</ul>\n\n<p>See the <a href=\"http://md5deep.sourceforge.net/hashdeep.html\" rel=\"noreferrer\">man page</a>.</p>\n\n<hr>\n\n<p>Example on verifying checksums and printing a list of differences:</p>\n\n<pre><code>$ cd /mnt/my-backup\n$ hashdeep -ravvl -k ~/checksums.txt .\nhashdeep: Audit passed\n Files matched: 40914\nFiles partially matched: 0\n Files moved: 0\n New files found: 0\n Known files not found: 0\n</code></pre>\n\n<p>Parameters: </p>\n\n<ul>\n<li><code>a</code> – audit (compare with the list of known checksums)</li>\n<li><code>v</code> – verbose (to get a listing of mismatches, multiple <code>v</code>s means more verbose)</li>\n<li><code>k</code> – file of known hashes</li>\n</ul>\n\n<p>Note that as of March 2016 <code>hashdeep</code> appears to be <a href=\"https://github.com/jessek/hashdeep/commits/master\" rel=\"noreferrer\">abandoned</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T19:09:49.480", "id": "37644", "lastActivityDate": "2017-08-30T19:05:37.907", "lastEditDate": "2017-08-30T19:05:37.907", "lastEditorDisplayName": null, "lastEditorUserId": "175814", "ownerDisplayName": null, "ownerUserId": "2337", "parentId": "37483", "postTypeId": "2", "score": "20" }
[ { "accepted": null, "body": "<p>It looks like the perfect task for <a href=\"http://rsync.samba.org/\" rel=\"noreferrer\">rsync</a>. Rsync is comparing and copying diffs.</p>\n\n<p>The <code>rsync</code> utility first popped into my mind when I saw your question. Doing something like below could quickly sh...
null
null
null
null
null
37485
1
null
2011-04-28T10:08:28.380
2
1125
<p>First of all I'm new in using linux and please forgive my bad english.</p> <p>I have an server with Edubuntu LTSP 10.10, a projector and 20 thin clients. On the server I had to install a video card (nvidia chipset driver 260.19.06) with two ports: DVI and VGA so I can connect the projector on the VGA port. After I installed the driver I managed to configure display settings in twinview clones. </p> <p>Till now everything is ok but now comes the strange part..until I had to install the video card when users login on thin clients their display was normal but now it is mirrored and upside down and I don't know what happened. Can anyone please tell what to do get display to normal?</p>
15194
235
2011-04-28T12:05:07.687
2012-01-03T22:42:02.570
Thin clients video in LTSP changed when adding a new video card to the server
[ "10.10", "nvidia", "ltsp" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T12:05:54.020", "id": "41521", "postId": "37485", "score": "0", "text": "Good question, possibly a bug. Unfortunately I have no idea +1 to question. Have you tried the open source driver?", "userDisplayName": null, "userId": "5768" } ]
null
[ { "accepted": null, "body": "<p>Disable Compiz and reboot everything.</p>\n\n<p><a href=\"http://ubuntuforums.org/showthread.php?t=1154859\" rel=\"nofollow\">Source</a> </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-12-10T21:47:51.870", "id": "98786", ...
null
null
null
null
null
37486
1
null
2011-04-28T10:08:47.000
1
4214
<p>I am a newbie in linux. Recently, I have installed postfix MTA in xubuntu. I just want to know where are all the emails stored in my postfix server. </p>
15185
null
null
2011-05-29T00:54:49.800
Where are all those emails stored in postfix, location of storage of emails so that I could backup?
[ "backup", "email", "postfix", "storage" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>As per the <a href=\"http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard#Directory_structure\" rel=\"nofollow\">Filesystem Hierarchy Standard</a>, mail is stored in <code>/var/mail/</code>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": ...
null
null
null
null
null
37491
1
null
2011-04-28T11:14:32.287
9
12696
<p>So I have an IBM Thinkpad X31, running natty and xmonad as the window manager. The keyboard is Italian. I wish to use an American English keyboard mapping, all the time. How do I do this? </p>
15197
235
2011-04-28T12:01:01.530
2014-12-15T09:54:25.550
How do I change my keyboard layout while using xmonad?
[ "11.04", "keyboard", "xmonad", "layout" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>To change your keyboard mapping to American English, you run the command <code>setxkbmap us</code>. To integrate it with Xmonad, you <a href=\"http://www.haskell.org/haskellwiki/Xmonad/Frequently_asked_questions#Startup_programs\" rel=\"nofollow\">add it to the startup hook</...
null
null
null
null
null
37496
1
37502
2011-04-28T11:34:58.507
3
7484
<p>I would like to be able to access the files in my desktop at home from anywhere over the Internet.</p> <p>I don't know much, but I think that would involve setting up a FTP server, right? Can you please point me in the right direction - some reference materials and tutorials?</p>
15198
null
null
2011-04-28T12:28:24.767
How to setup a file server over the Internet?
[ "server", "ftp", "files" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I would discourage you to use FTP, as it's a clear text protocol without any security. </p>\n\n<p>Instead, I suggest you use ssh. Then you get both secure remote shell access and file transfer, all in one service. <code>apt-get install openssh-server</code> and you are good to go. Then you can connect to your machine through for instance <em>Places -> Connect to server</em> on a Gnome desktop, <code>sftp</code> in a shell, or using <a href=\"http://winscp.net/eng/index.php\" rel=\"nofollow\">WinSCP</a> on Windows.</p>\n\n<p>To reach your machine, even with a dynamic ip, you could use a free dynamic dns service such as <a href=\"http://www.dyndns.com/\" rel=\"nofollow\">DynDNS</a> or <a href=\"http://freedns.afraid.org/\" rel=\"nofollow\">FreeDNS</a>, which will give you a hostname such as mybox.uni.cx.</p>\n\n<p>NAT is no issue either, as long as you forward the correct port to your machine. (tcp 22 in case of ssh)</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-28T11:45:50.957", "id": "41513", "postId": "37502", "score": "0", "text": "Remote shell access would be even better. Thank you for that suggestion!", "userDisplayName": null, "userId": "15198" }, { "creationDate": "2011-04-28T11:50:40.780", "id": "41514", "postId": "37502", "score": "0", "text": "DynDNS - that is great!", "userDisplayName": null, "userId": "15198" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T11:42:47.520", "id": "37502", "lastActivityDate": "2011-04-28T11:48:06.220", "lastEditDate": "2011-04-28T11:48:06.220", "lastEditorDisplayName": null, "lastEditorUserId": "13570", "ownerDisplayName": null, "ownerUserId": "13570", "parentId": "37496", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>You have to:\n1) Be connected to the internet with a static, global IP address. No NAT or VPN bridge or whatever. \n2) Set up an FTP server, the simpler - the better. Be sure not to allow anonymous access accidentaly. </p>\n", "commentCount": "2", "comments": [ ...
null
null
null
null
null
37505
1
37597
2011-04-28T11:53:03.350
1
1854
<p>On <a href="https://help.ubuntu.com/community/MacBookPro" rel="nofollow">Ubuntu MacBookPro support page</a>, I've found info about <a href="https://help.ubuntu.com/community/MacBookPro7-1/Maverick" rel="nofollow">10.10 on MBP 7,1</a> and some info about <a href="https://help.ubuntu.com/community/MacBookPro8-1/Natty" rel="nofollow">11.04 on MBP 8,1+</a>. But what I would like is information about 11.04 on MBP 7,1. The issues I'm most concerned about:</p> <ul> <li>does WiFi work? OotB?</li> <li>does external monitor work? OotB?</li> </ul> <p>EDIT: additional info</p> <p>wifi</p> <pre><code>Card Type: AirPort Extreme (0x14E4, 0x8D) Firmware Version: Broadcom BCM43xx 1.0 (5.10.131.36.1) </code></pre> <p>graphics card</p> <pre><code>Chipset Model: NVIDIA GeForce 320M </code></pre>
15196
15196
2011-04-28T12:10:20.770
2011-05-14T09:39:50.657
11.04 on MacBook Pro 7,1?
[ "11.04", "wireless", "macbook" ]
2
3
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T12:04:32.230", "id": "41520", "postId": "37505", "score": "0", "text": "audio and video chipsets would be useful...I have a sneaking suspicion it's a yes. the last problem i remember with debianized and macbookpro was some weirdness with an nvidia sata controller t...
{ "accepted": true, "body": "<p>I've just installed 11.04 on MBP, so I'm gonna answer my own question:</p>\n\n<p>WiFi works. Not exactly out-of-the-box though. The <a href=\"http://ubuntuforums.org/showthread.php?t=1606745\" rel=\"nofollow\">solution for 10.10</a> I've googled has helped in my case. </p>\n\n<p>The original solution: </p>\n\n<blockquote>\n <ol>\n <li>Go to <em>System>Administration>>Synaptic Package Manager</em> and in the search bar,\n type <code>bcm</code>.</li>\n <li>Make sure <code>broadcom-sta-common</code> and <code>broadcom-sta-source</code> are\n installed. If not, mark them for\n installation, close, and reload.</li>\n <li>Make sure <code>bcmwl-kernel-source</code> and <code>bcmwl-modaliases</code> are installed.\n If not install, reload, and then go\n back and mark them for reinstallation.\n Then reload.</li>\n <li>Restart your computer. It won't tell you that you need to restart, but\n it is necessary nonetheless.</li>\n <li>After you have restarted, click on the network icon at the top and click\n on \"Connect to Hidden Wireless\n Network...\"</li>\n <li>Enjoy your wifi connection...hopefully.</li>\n </ol>\n</blockquote>\n\n<p>Actually in my case I didn't have to install <code>bcmwl-modaliases</code>, nor did I have to use hidden network option (Ubuntu detected all networks perfectly).\n<hr>\nExternal monitor works, almost OotB. All you need is to install <code>disper</code> to actually activate it.</p>\n\n<pre><code>sudo add-apt-repository ppa:disper-dev/ppa\nsudo apt-get update &amp;&amp; sudo apt-get install disper\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T16:10:44.690", "id": "37597", "lastActivityDate": "2011-04-29T10:10:40.367", "lastEditDate": "2011-04-29T10:10:40.367", "lastEditorDisplayName": null, "lastEditorUserId": "15196", "ownerDisplayName": null, "ownerUserId": "15196", "parentId": "37505", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>I've just installed 11.04 on MBP, so I'm gonna answer my own question:</p>\n\n<p>WiFi works. Not exactly out-of-the-box though. The <a href=\"http://ubuntuforums.org/showthread.php?t=1606745\" rel=\"nofollow\">solution for 10.10</a> I've googled has helped in my case. </p>\n\...
null
null
null
null
null
37508
1
37538
2011-04-28T11:56:56.730
1
407
<p>Ubuntu 11.04 has been released.</p> <p>Is it worth to upgrade? </p> <p>My main usage is server side application development, are there interesting features for me in this release? </p>
5770
null
null
2011-04-28T13:16:21.560
What are the new features of Ubuntu 11.04 (Natty Narwhal)?
[ "11.04", "upgrade", "stable-release-updates" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The <a href=\"https://wiki.ubuntu.com/NattyNarwhal/ReleaseNotes\" rel=\"nofollow\">release notes</a> for Natty has just been released - it highlights the key features in the ubuntu server release.</p>\n\n<p>As to \"Is it worth to upgrade\" - that depends on whether the new stuff is what you need.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T13:16:21.560", "id": "37538", "lastActivityDate": "2011-04-28T13:16:21.560", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "37508", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>The <a href=\"https://wiki.ubuntu.com/NattyNarwhal/ReleaseNotes\" rel=\"nofollow\">release notes</a> for Natty has just been released - it highlights the key features in the ubuntu server release.</p>\n\n<p>As to \"Is it worth to upgrade\" - that depends on whether the new st...
null
null
null
null
null
37511
1
null
2011-04-28T12:01:25.553
4
207
<p>Will the next release of Ubuntu make use of the new gnome stuff or will it sill be based on gnome 2 like in 11.04?</p>
15203
235
2011-04-28T12:34:04.767
2011-04-28T21:12:17.550
Is Unity going to use the GNOME 3 stack?
[ "unity", "gnome" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The full details behind what will make it in 11.10 will be decided shortly. However, consider gnome3 backend stuff as close to 100% ! Whether it is gnome 3 or gnome 3.2 is another matter. Keep reading the blogs...</p>\n", "commentCount": "0", "comments": [], "c...
null
null
null
null
null
37514
1
37544
2011-04-28T12:07:32.553
0
6427
<p>My RAID drive was working well with Ubuntu 10.10, but after doing an upgrade I am no longer able to mount my RAID drive. I think it is due to a invalid RAID description similar to this problem: <a href="http://ubuntuforums.org/showthread.php?t=1503104" rel="nofollow">http://ubuntuforums.org/showthread.php?t=1503104</a></p> <p>Thing is, I never had mdadm installed as far as I can tell. How do I change it back so that my system recognizes the RAID drive. The RAID drive is configured from some sort of software RAID on my motherboard I think.</p> <p>blkid gives the output:</p> <pre><code>/dev/ramzswap0: TYPE="swap" /dev/sda: TYPE="promise_fasttrack_raid_member" /dev/sdb1: UUID="a-UUID-number" TYPE="ext4" /dev/sdb5: UUID="another-UUID-number" TYPE="swap" /dev/sdc1: UUID="another-UUID-number" TYPE="ntfs" /dev/sdd: TYPE="promise_fasttrack_raid_member" </code></pre> <p>Any help is much a appriciated.</p>
15204
null
null
2012-08-30T19:43:28.240
How do I recover my RAID partition after the Ubuntu 11.04 upgrade?
[ "raid" ]
2
4
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T12:18:25.707", "id": "41525", "postId": "37514", "score": "0", "text": "if it's done by your mobo it isn't software raid, it's hardware raid. if it didn't work after upgrade and you did the initial install with raid it's software. you may not have mdadm installed ...
{ "accepted": true, "body": "<p>This doesn't really fit the question/answer model of stackexchange, so you may want to create a thread over at ubuntuforums.org. You definitely have a fakeraid and should see <a href=\"http://help.ubuntu.com/community/FakeRaidHowto\" rel=\"nofollow\">http://help.ubuntu.com/community/FakeRaidHowto</a>. You also might want to read the man page for <code>dmraid</code> and see if the raid device shows up in <code>/dev/mapper/</code>. If it does not, you will need to try running <code>sudo dmraid -ay</code> and see why it refuses to activate the array. You might add <code>-vvvv -dddd</code> to get extremely verbose debugging output.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-04-28T13:45:13.233", "id": "41557", "postId": "37544", "score": "0", "text": "Thanks psusi! In /dev/mapper I have: `control`\nand nothing else. Doing dmraid -ay I get: `RAID set \"pdc_gjgbcdghd\" was not activated`\n\nDoing the debugging output:\n\n`NOTICE: added /dev/sdd to RAID set \"pdc_gjgbcdghd\"\nDEBUG: _find_set: searching pdc_gjgbcdghd\nDEBUG: _find_set: found pdc_gjgbcdghd\nNOTICE: added /dev/sda to RAID set \"pdc_gjgbcdghd\"\nDEBUG: checking pdc device \"/dev/sdd\"\nDEBUG: checking pdc device \"/dev/sda\"\nDEBUG: set status of set \"pdc_gjgbcdghd\" to 16\nRAID set \"pdc_gjgbcdghd\" was not activated`", "userDisplayName": null, "userId": "15204" }, { "creationDate": "2011-04-28T15:16:51.620", "id": "41592", "postId": "37544", "score": "0", "text": "@Paul please file a bug report at http://bugs.launchpad.net/ubuntu/+source/dmraid/+filebug. Please title it something like \"promise raid not recognized in Natty\". Also run sudo dmraid -rD. This will put some files in a directory named dmraid.pdc. Please tar this directory ( tar czf dmraid.pdc.tgz dmraid.pdc ) and attach the tar file to the bug report.", "userDisplayName": null, "userId": "8500" }, { "creationDate": "2011-04-28T16:00:03.003", "id": "41610", "postId": "37544", "score": "0", "text": "Thanks psusi. I have added it here: https://bugs.launchpad.net/ubuntu/+source/dmraid/+bug/772483\n\nHow long could this take before I can access my files do you think?", "userDisplayName": null, "userId": "15204" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T13:29:50.757", "id": "37544", "lastActivityDate": "2011-04-28T13:29:50.757", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8500", "parentId": "37514", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>This doesn't really fit the question/answer model of stackexchange, so you may want to create a thread over at ubuntuforums.org. You definitely have a fakeraid and should see <a href=\"http://help.ubuntu.com/community/FakeRaidHowto\" rel=\"nofollow\">http://help.ubuntu.com/c...
null
null
null
null
null
37519
1
37931
2011-04-28T12:17:25.270
6
12557
<p>I've started using Conky with 11.04 and want to remove its drop shadow. </p> <p>I've tried setting <code>any &amp; !(class=Conky)</code> in the <code>Shadow Windows</code> text box of the <code>Window Decoration</code> section. This works. However, every time I try and use either the global menu or an app indicator menu, compiz crashes. Not all the time, it seems quite random on which menu it chooses to crash on, but it happens enough to not use this method.</p> <p>So I was just wondering if there was any other way of removing the shadow from the Conky window.</p>
2373
527764
2017-11-19T19:43:09.543
2017-11-19T19:43:52.553
Removing conky drop shadow
[ "11.04", "compiz", "conky" ]
6
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>To solve these problems, don't paste the settings for opening in a new window, just delete the code.</p>\n\n<hr>\n\n<p>What to delete (usually if you copied the code, it has this): </p>\n\n<pre><code>#Create own window instead of using desktop (required in nautilus)\nown_window yes\nown_window_hints undecorated,below,skip_taskbar\nbackground no\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2022-01-27T02:31:02.757", "id": "2400500", "postId": "37931", "score": "0", "text": "`draw_shades = false,`", "userDisplayName": null, "userId": "339740" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T10:07:23.537", "id": "37931", "lastActivityDate": "2011-05-05T14:40:51.450", "lastEditDate": "2011-05-05T14:40:51.450", "lastEditorDisplayName": null, "lastEditorUserId": "2816", "ownerDisplayName": null, "ownerUserId": "15382", "parentId": "37519", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>I'm not sure how you're editing settings (the <code>Window Decoration</code> section of what?) but I have <code>draw_shades no</code> in my .conkyrc and no drop shadows. <a href=\"http://lifehacker.com/search/conky/\" rel=\"nofollow\">Lifehacker</a> has a whole thread of Conk...
null
null
null
null
null
37520
1
37542
2011-04-28T12:20:34.990
3
356
<p>I have managed to get a user-mode-linux kernel compiled. Now I can debug a kernel as a regular user process and track how it works. This I can do using gdb but I'm much more used to visual debuggers and want to see and work with the code without needing to learn gdb commands. Is there a good wrapper for gdb where I can control and see the code at the same time. I don't need an ide since I am not really changing the code. I have tried ddd but it is really slow and the interface is non-standard.</p>
7823
null
null
2011-06-15T04:02:15.383
best visual debugger for kernel
[ "kernel", "debugging" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can run gdb under emacs and it will track the source code in the other window. You can also open watch windows and such. It also has a bunch of other features that can make reviewing the code easier, such as tags tables which allow you to quickly jump directly to the definition of a given function, and the mark ring, which allows you to jump to one place, review the code a bit, then tap <code>C-x C-x</code> to jump back to where you came from.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T13:21:53.380", "id": "37542", "lastActivityDate": "2011-04-28T13:21:53.380", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8500", "parentId": "37520", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>You can run gdb under emacs and it will track the source code in the other window. You can also open watch windows and such. It also has a bunch of other features that can make reviewing the code easier, such as tags tables which allow you to quickly jump directly to the de...
null
null
null
null
null
37521
1
37533
2011-04-28T12:20:48.823
3
1097
<p>I recently hit the "Remember Currently Running Applications" button and unchecked "Automatically remember ..." and now I seem to be stuck with a lot of stuff on startup. None of it is listed under "Startup Programs" (and what is -- Pidgin, Skype -- launches twice). Is there a way to edit or review the "Currently Running Applications" that are remembered?</p>
13049
13049
2011-04-28T19:01:14.243
2011-04-28T19:01:14.243
Review / edit startup programs rembered by "Remember Currently Running Applications"
[ "10.04", "startup" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>All the applications \"remembered\" are stored in the following folder:</p>\n\n<p>~/.config/gnome-session/saved-session</p>\n\n<p>Use the file-manager to navigate to this folder - remember to use \"View - Show Hidden files\" to see the \".config\" folder.</p>\n\n<p>Use the instructions <a href=\"https://askubuntu.com/questions/32928/how-to-determine-what-is-causing-an-app-to-start-at-login\">here</a> if you want to remove all \"remembered\" applications.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-28T23:37:04.877", "id": "41776", "postId": "37533", "score": "0", "text": "For bonus kicks, what I did exactly was `vim ~/.config/gnome-session/saved-session/*` \n\nThen I emptied (with `:%d`) all the .desktop files I didn't want to keep, leaving slab (http://askubuntu.com/questions/37642/what-is-this-slab-that-i-am-seeing-in-my-session-file) and a couple of others in place. Then `find ~/.config/gnome-session/saved-session/ -size 0 -exec rm {} \\;` et voila. NOTE: don't run random commands unless you understand them, okay? Especially not ones with \"rm\" in them.", "userDisplayName": null, "userId": "13049" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T12:58:02.550", "id": "37533", "lastActivityDate": "2011-04-28T12:58:02.550", "lastEditDate": "2017-04-13T12:23:46.240", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "37521", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>All the applications \"remembered\" are stored in the following folder:</p>\n\n<p>~/.config/gnome-session/saved-session</p>\n\n<p>Use the file-manager to navigate to this folder - remember to use \"View - Show Hidden files\" to see the \".config\" folder.</p>\n\n<p>Use the in...
null
null
null
null
null
37525
1
null
2011-04-28T11:40:57.987
0
1763
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/37514/how-do-i-recover-my-raid-partition-after-the-ubuntu-11-04-upgrade">How do I recover my RAID partition after the Ubuntu 11.04 upgrade?</a> </p> </blockquote> <p>My RAID drive was working well with Ubuntu 10.10, but after doing an upgrade I am no longer able to mount my RAID drive. I think it is due to a invalid RAID description similar to this problem: <a href="http://ubuntuforums.org/showthread.php?t=1503104" rel="nofollow noreferrer">http://ubuntuforums.org/showthread.php?t=1503104</a></p> <p>Thing is, I never had mdadm installed as far as I can tell. How do I change it back so that my system recognizes the RAID drive. The RAID drive is configured from some sort of software RAID on my motherboard I think.</p> <p>blkid gives the output:</p> <pre><code>/dev/ramzswap0: TYPE="swap" /dev/sda: TYPE="promise_fasttrack_raid_member" /dev/sdb1: UUID="a-UUID-number" TYPE="ext4" /dev/sdb5: UUID="another-UUID-number" TYPE="swap" /dev/sdc1: UUID="another-UUID-number" TYPE="ntfs" /dev/sdd: TYPE="promise_fasttrack_raid_member" </code></pre> <p>Any help is much a appriciated.</p>
null
-1
2017-04-13T12:23:59.520
2011-04-28T13:19:46.000
How do I recover my RAID partition after the Ubuntu 11.04 upgrade?
[ "raid" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>If your RAID is configured on the motherboard and related to the information, that mdadm is'n installed (but i think it's installed, but you never used it?) so it looks like you are using the motherboards raid controller. That means you are useing an hardware RAID.</p>\n\n<p>...
null
null
2011-04-28T20:18:31.023
null
Paul
37530
1
null
2011-04-28T12:45:25.250
0
1708
<p>I have noticed that this version 10.04, all installations that I do .... always shown this error:</p> <p>"PM: Resume disk failed"</p> <p>Mesage This is shown by the command:</p> <pre><code>dmesg | grep-i failed (if i want to test on your system) </code></pre> <p>I've done a search and I know that PM is related to hibernation of the system ... Someone can tell me how to fix or tell me if this error has any impact on the system?</p> <p>Thanks, Fabio</p>
11938
235
2011-04-28T12:49:14.637
2011-07-10T05:39:30.653
"PM : Resume disk failed" error
[ "10.04", "power-management" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>It just means that you DIDN'T resume from hibernation. Ignore it ( unless you were TRYING to resume from hibernation ).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T...
null
null
null
null
null
37531
1
37536
2011-04-28T12:45:56.280
33
31734
<p>For a smooth upgrade from 10.04 to 10.10, I would like to remove all packages which are not in the default repositories (e.g. chromium PPA and third-party repositories). What is the easiest way (preferably CLI) to find and remove these packages?</p> <p>Edit: this question is not restricted to PPA's, I have a x2go repository as well, so I'm looking for a generic command to remove packages belonging to a certain repository. For PPA's, the question <a href="https://askubuntu.com/q/307/6969">How can PPAs be removed</a> has great answers.</p>
6969
-1
2017-04-13T12:23:23.123
2017-03-08T09:47:13.383
How do I remove all packages from a certain repository?
[ "package-management" ]
6
1
CC BY-SA 3.0
[ { "creationDate": "2012-05-05T17:23:07.763", "id": "157334", "postId": "37531", "score": "0", "text": "For those who want to remove all external packages, disable all PPAs and use http://code.google.com/p/apt-downgrade/", "userDisplayName": null, "userId": "6969" } ]
{ "accepted": true, "body": "<p>This script can list all packages from a particular server/branch (modifying the two declared variables):</p>\n\n<pre><code>#!/bin/bash\n\nserver=\"http://it.archive.ubuntu.com/ubuntu/\"\nbranch=\"maverick-updates/main\"\n\napt-cache policy $(dpkg -l | awk 'NR &gt;= 6 { print $2 }') |\n awk -v server=\"$server\" -v branch=\"$branch\" \\\n '/^[^ ]/ { split($1, a, \":\"); pkg = a[1] }\n nextline == 1 { nextline = 0; if ($2 == server &amp;&amp; $3 == branch) print pkg }\n /\\*\\*\\*/ { nextline = 1 }'\n</code></pre>\n\n<p>if you need to list all packages not coming from a particular server, independently from the branch, replace the next-to-last line with:</p>\n\n<pre><code>nextline == 1 { nextline = 0; if ($2 != server) print pkg }\n</code></pre>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-04-28T13:13:01.300", "id": "41545", "postId": "37536", "score": "1", "text": "Not what I'm exactly looking for, this script just displays the all packages from a specific repository entry. By replacing `$2 == server && $3 == branch` by `$2 != server`, my question is answered. Please put that in your answer :) (the `branch=` line can be removed) Note: it's assumed that all packages come from a single repository server.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2011-04-28T13:54:24.150", "id": "41560", "postId": "37536", "score": "1", "text": "This script (slightly modified per my last comment) works as expected. The `libvpx0` package existed in both the main repo as in the chromium-daily PPA. After removing the repositories from `/etc/apt/sources.list.d`, I had still a left-over package: `libvpx0`. I \"repaired\" this as follows: remove the library with dpkg, ignoring dependencies: `sudo dpkg --ignore-depends=libvpx0 --remove libvpx0`. Next, install it again from the main repo: `sudo apt-get install libvpx0`.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2011-04-28T14:10:36.747", "id": "41562", "postId": "37536", "score": "1", "text": "@Lekensteyn: probably you could have shortened your work with `sudo apt-get install libvpx0=$version_string`, supposing the two available packages have different version strings.", "userDisplayName": null, "userId": "2647" }, { "creationDate": "2011-04-28T14:24:50.710", "id": "41565", "postId": "37536", "score": "0", "text": "indeed, that was possible too and maybe better as well.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2014-01-21T23:12:52.633", "id": "526002", "postId": "37536", "score": "0", "text": "I just needed to check which packages are not installed from the default repos. The command `apt-cache policy $(dpkg -l | awk '/^ii/{print $2}') > policy.txt; awk '!/^ /{pkg=$1}check{print pkg, $2;check=0}/\\*\\*\\*/{check=1} ' policy.txt | grep -v archive.ubuntu` is a good start (add more `grep -v` to exclude certain PPAs). Package versions that are not known in any repo show up as `/var/lib/dpkg/status`.", "userDisplayName": null, "userId": "6969" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T13:07:57.827", "id": "37536", "lastActivityDate": "2013-01-09T01:20:32.100", "lastEditDate": "2013-01-09T01:20:32.100", "lastEditorDisplayName": null, "lastEditorUserId": "22949", "ownerDisplayName": null, "ownerUserId": "2647", "parentId": "37531", "postTypeId": "2", "score": "14" }
[ { "accepted": null, "body": "<p>To at least find them, start by disabling the PPA's and run <code>apt-get update</code>. Then install <code>apt-show-versions</code>. Running <code>apt-show-versions | grep 'No available'</code> will then give you a list of all your installed packages that cannot be found in ...
null
null
null
null
null
37539
1
37566
2011-04-28T13:17:30.593
1
590
<p>Does Cairo on Ubuntu use the X11 or the OpenGL backend?</p> <p>And if someone knows: Does the OpenGL backend render everything on the CPU and then just display it using OpenGL or does it use the shaders to do the rendering? And which OpenGL version/extensions does it require? Is it much faster?</p>
142
3940
2011-04-28T14:47:53.907
2011-11-19T14:08:00.420
Which backend does Cairo use on Ubuntu?
[ "graphics", "opengl", "cairo" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T14:51:41.703", "id": "41577", "postId": "37539", "score": "0", "text": "To get more answers please try to ask questions on a single topic only. You may consider to ask the OpenGL part in a second question.", "userDisplayName": null, "userId": "3940" } ]
{ "accepted": true, "body": "<p>The <a href=\"http://packages.ubuntu.com/maverick/libcairo2\" rel=\"nofollow\">Cairo</a> 2D vector graphics library uses X11 and the X renderer as backend. There are no dependencies on OpenGL.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T14:47:02.753", "id": "37566", "lastActivityDate": "2011-04-28T14:47:02.753", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "3940", "parentId": "37539", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>The <a href=\"http://packages.ubuntu.com/maverick/libcairo2\" rel=\"nofollow\">Cairo</a> 2D vector graphics library uses X11 and the X renderer as backend. There are no dependencies on OpenGL.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null...
null
null
null
null
null
37545
1
null
2011-04-28T13:31:29.883
0
1000
<p>I have an Acer 5720Z which has an S-Video out port. I have been using this port primarily to view videos on my television. This worked perfectly under 9.10, 10.04 and 10.10 but under 11.04 it does not work at all.</p> <p>Under 10.10 I would go into System -> Prefrences -> Monitors and it will pick up the external monitor connection and show a desktop on the TV perfectly. But after I performed an upgrade to 11.04 it would show the monitor in the Monitor preferences window but nothing on the TV. I thought something might have been mucking it up from the upgrade so I backed up my home directory on an external drive and did a clean install. </p> <p>Still nothing after installing and running updates. I thought it might be something with Unity mucking it up so I logged out and logged back in under Ubuntu Classic. Still nothing showing.</p> <p>I don't know if this is similar to this bug on launchpad: <a href="https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/723002" rel="nofollow">https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/723002</a></p> <p>It's not quite the same outcome of the bug but it did involve external monitors not functioning properly. </p> <p>Is there a fix for this issue?</p>
15211
6005
2012-06-12T15:43:43.017
2012-06-12T15:43:43.017
Why is S-Video Out Not Working on an Acer 5720Z
[ "11.04", "video", "multiple-monitors", "output" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T16:30:37.590", "id": "41629", "postId": "37545", "score": "0", "text": "This is not just on the Acer. There is a forum post I have added my issue to where a Dell user is having a similar issue.", "userDisplayName": null, "userId": "15211" }, { "creat...
null
[ { "accepted": null, "body": "<p>Apparently this is indeed a bug that has been registered on launchpad. It has something to do with xserver-xorg-video-intel </p>\n\n<p>The bug report can be found at <a href=\"https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/763688\" rel=\"nofollow\">ht...
null
null
null
null
null
37548
1
37569
2011-04-28T13:44:31.810
70
203483
<p>Is there any free software available on Ubuntu that can convert a pdf file to a .doc file?</p>
11396
169736
2014-05-10T13:49:06.670
2022-11-12T15:59:22.897
PDF to word conversion software?
[ "software-recommendation", "pdf", "format-conversion" ]
5
1
CC BY-SA 3.0
[ { "creationDate": "2016-11-20T16:40:36.597", "id": "1308960", "postId": "37548", "score": "0", "text": "I think the current accepted answer is not the right one because it does not work. Abiword works!", "userDisplayName": null, "userId": "25388" } ]
{ "accepted": true, "body": "<p><code>openoffice</code> (or alternatively the <code>libreoffice</code> fork) both have pdf import plugins and .doc export functionality... though both aspects suffer from conversion issues AFAIK. \nBy this I mean that the conversion fidelity isn't always 100%. </p>\n\n<p><strong>Abiword</strong> also works in a similar way, if OpenOffice doesn't work on your system.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2016-08-12T19:44:32.867", "id": "1227039", "postId": "37569", "score": "14", "text": "`libreoffice --invisible --convert-to docx:\"MS Word 2007 XML\" file.pdf` When I convert pdf to docx/doc it says \"convert /home/file.pdf -> /home/file.docx using filter : MS Word 2007 XML,\nError: Please verify input parameters... (SfxBaseModel::impl_store <file:///home/file.docx> failed: 0xc10)\"", "userDisplayName": null, "userId": "450844" }, { "creationDate": "2016-11-20T16:15:38.183", "id": "1308947", "postId": "37569", "score": "3", "text": "@mohit Your proposal does not work in Debian 8.5.", "userDisplayName": null, "userId": "25388" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T14:58:49.233", "id": "37569", "lastActivityDate": "2016-11-21T09:18:03.987", "lastEditDate": "2016-11-21T09:18:03.987", "lastEditorDisplayName": null, "lastEditorUserId": "14795", "ownerDisplayName": null, "ownerUserId": "14795", "parentId": "37548", "postTypeId": "2", "score": "29" }
[ { "accepted": true, "body": "<p><code>openoffice</code> (or alternatively the <code>libreoffice</code> fork) both have pdf import plugins and .doc export functionality... though both aspects suffer from conversion issues AFAIK. \nBy this I mean that the conversion fidelity isn't always 100%. </p>\n\n<p><str...
null
null
null
null
null
37552
1
null
2011-04-28T14:04:49.787
5
5172
<p>Does anyone know how to adjust the default width for shell window in Ubuntu, so that I don't have to re-size it every time I open it up?</p>
15218
8844
2011-09-06T17:20:58.070
2013-10-18T11:19:50.370
How do I adjust the terminal shell window width?
[ "gnome-terminal", "window" ]
4
2
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T15:04:10.253", "id": "41584", "postId": "37552", "score": "0", "text": "What do you mean by \"Shell Window\"?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2011-09-06T17:33:08.590", "id": "68916", "postId": "37552", "sco...
null
[ { "accepted": null, "body": "<p>Add this to <a href=\"https://github.com/l0b0/tilde/blob/master/.Xresources\" rel=\"nofollow\">~/.Xresources</a> (of course with whatever dimensions you want):</p>\n\n<pre><code>XTerm*VT100.geometry: 96x68\n</code></pre>\n\n<p>Then add this to <a href=\"https://github.com/l0b...
null
null
null
null
null
37554
1
37559
2011-04-28T14:12:36.020
5
1850
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/1441/why-not-use-64-bit-ubuntu">Why not use 64-bit Ubuntu?</a> </p> </blockquote> <p>11.04 is already available. But why 32bit is again recommended and what's "wrong" with x64 ?</p> <p>P.S. I know about <a href="https://askubuntu.com/questions/32402/amd64-i386-32bit-64bit-which-version-to-choose">this</a> question, but this is kinda different.</p>
5541
-1
2017-04-13T12:24:29.360
2011-04-28T14:46:46.780
Why (again) Ubuntu's recommended version (for 11.04) is 32bit, not 64bit?
[ "64-bit", "versions", "32-bit" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T14:37:22.527", "id": "41570", "postId": "37554", "score": "0", "text": "I have to admit that this one really puzzles me too. Perhaps most Ubuntu users have <4 GB RAM installed, perhaps Flash is still a problem, perhaps it's rampant conservatism. The Athlon 64 came o...
{ "accepted": true, "body": "<p>There are more 32-bit packages supported compared to the 64-bit set.<br>\nAnd, there is still a wider footprint of 32-bit platforms.<br>\nThis is the reason we still see 32-bit being 'recommended'. </p>\n\n<p>You might be interested in some history -- related to Ubuntu 10.04/10.10, <a href=\"https://askubuntu.com/q/1441/1352\">Why not use 64-bit Ubuntu</a>?<br>\nRefers to Launchpad <a href=\"https://bugs.launchpad.net/ubuntu-website-content/+bug/585940\" rel=\"nofollow noreferrer\"><strong>bug 585940</strong></a>, from 26th May 2010 titled,<br>\n<code>Text reads \"not recommended\" for 64-bit</code>.</p>\n\n<p>Guess, it is better to see a 'recommended' tag on 32-bit;<br>\nrather than a 'not recommended' tag on the 64-bit version :-)<br>\nMaybe that too will go away by the next LTS release... </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-28T14:55:38.683", "id": "41581", "postId": "37559", "score": "0", "text": "So, you mean that my laptop with CPU : dual core, 2.2GHz, 64bit and RAM 4GB, 1GB video - will run better with 32bit ? Or, at least, will not run worse ?", "userDisplayName": null, "userId": "5541" }, { "creationDate": "2011-09-10T04:24:19.013", "id": "69495", "postId": "37559", "score": "0", "text": "fwiw, I use the amd64 builds on all my 64-bit systems.", "userDisplayName": null, "userId": "1352" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T14:40:01.263", "id": "37559", "lastActivityDate": "2011-04-28T14:46:46.780", "lastEditDate": "2017-04-13T12:23:46.240", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1352", "parentId": "37554", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>There are more 32-bit packages supported compared to the 64-bit set.<br>\nAnd, there is still a wider footprint of 32-bit platforms.<br>\nThis is the reason we still see 32-bit being 'recommended'. </p>\n\n<p>You might be interested in some history -- related to Ubuntu 10.04...
null
null
2011-04-28T15:03:10.377
null
null
37555
1
54408
2011-04-28T14:14:13.937
3
1114
<p>I'm about to purchase a laptop with this graphics card (cheap deal) but I read that ATI cards have issues or may even not work with Natty. Is this true? Is there a way to fix the eventual problem? Are proprietary drivers needed or the included drivers will do fine? Thanks a lot for your advice, if I get the laptop and can't run Unity, it would be pretty much a waste of money to me.</p>
10446
235
2011-04-28T15:38:36.273
2011-07-25T01:49:04.120
Will Unity work with an ATI Mobility Radeon HD 4250?
[ "11.04", "unity", "ati" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T15:48:23.197", "id": "41600", "postId": "37555", "score": "0", "text": "My ATI Mobility Radeon HD 3560 works perfectly with unity, but I had to install the latest driver from the producer. After that minor issue, everything works flawlessly.", "userDisplayName":...
{ "accepted": true, "body": "<p>I am typing this on a laptop with a mobility radeon 4200. It is an AMD Nile chipset, and as of Natty, everything except wireless works out of the box. I had to upgrade to a kernel-ppa for 2.6.39, and then that also worked out of the box. in 2.6.39, unfortunately, the proprietary drivers do not seem to install. The open source drivers for the graphics card work, though at reduced performance and higher operating temperature. When I play Minecraft, it gets uncomfortably hot. I got an auxillary (25$) USB external cooler (two fans) for my laptop which has solved the problem for me for now. I hope that oneiric will either work with the proprietary drivers, or have much improved open ones. My laptop is 11.6 inches, very compact. This cooling problem will likely not affect larger formats. Anyways, with some caveats, it works.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-07-25T01:49:04.120", "id": "54408", "lastActivityDate": "2011-07-25T01:49:04.120", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "22177", "parentId": "37555", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I am typing this on a laptop with a mobility radeon 4200. It is an AMD Nile chipset, and as of Natty, everything except wireless works out of the box. I had to upgrade to a kernel-ppa for 2.6.39, and then that also worked out of the box. in 2.6.39, unfortunately, the propr...
null
null
null
null
null
37556
1
290336
2011-04-28T14:15:17.697
7
13853
<p>I would like to use Empathy for Internet voice chat, but I do not see an option under the Empathy Accounts menu to create a SIP account.</p> <p>How do I set up Internet voice calling in Empathy?</p>
4144
null
null
2013-05-03T22:21:51.143
How do I set up SIP voice calling in Empathy?
[ "empathy", "voip" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T14:31:04.843", "id": "41567", "postId": "37556", "score": "0", "text": "I think you need `telepathy-sofiasip` package installed", "userDisplayName": null, "userId": "1543" } ]
{ "accepted": true, "body": "<p>In 13.04 (and presumably 12.10), telepathy relies on rakia instead of sofiasip, and you need the Ubuntu account SIP module. In other words :</p>\n\n<pre><code>sudo apt-get install telepathy-rakia account-plugin-sip\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2013-05-29T18:06:58.203", "id": "379429", "postId": "290336", "score": "0", "text": "Thanks! I'm on 13.04 and this was definitely the solution.", "userDisplayName": null, "userId": "109169" }, { "creationDate": "2019-11-23T01:23:58.380", "id": "1992572", "postId": "290336", "score": "2", "text": "This still works on 18.04", "userDisplayName": null, "userId": "853283" }, { "creationDate": "2021-07-25T15:27:21.967", "id": "2316057", "postId": "290336", "score": "1", "text": "On Ubuntu 20.04 there is apparently no `account-plugin-sip` anymore, but if you only install `telepathy-rakia` it will pull the needed dependencies automagically for you and then it works (you can configure a SIP service).", "userDisplayName": null, "userId": "150568" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2013-05-03T22:21:51.143", "id": "290336", "lastActivityDate": "2013-05-03T22:21:51.143", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "155349", "parentId": "37556", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>According to <a href=\"https://live.gnome.org/Empathy/FAQ#How_can_I_connect_to_my_SIP_account.3F\" rel=\"nofollow\">https://live.gnome.org/Empathy/FAQ#How_can_I_connect_to_my_SIP_account.3F</a>\nyou need to install the <code>telepathy-sofiasip</code> from the Ubuntu Software ...
null
null
null
null
null
37558
1
null
2011-04-28T14:35:39.190
1
314
<p>The Natty betas never implemented Global Menus for LibreOffice. Have Global Menus been implemented in the stable release of Natty?</p>
15220
235
2011-04-28T14:42:16.547
2017-02-25T21:27:47.887
Global application menus implemented for LibreOffice in stable release?
[ "libreoffice", "appmenu" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>It's available but not by default, you need to install this package: </p>\n\n<pre><code>sudo apt-get install lo-menubar\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2...
null
null
null
null
null
37560
1
null
2011-04-28T14:40:17.267
1
3971
<p>When I suspend or hibernate my laptop, the <code>Ksoftirqd/0</code> or <code>Ksoftirqd/1</code> process runs on 100% continuously. I have to reboot or shutdown my laptop then. This happens in Ubuntu 10.04, 10.10, 11.04 and all variants.</p>
15223
25388
2012-03-30T22:43:57.487
2012-03-30T22:43:57.487
Why are Ksoftirqd -processes pushing my CPU-LOAD to 100%?
[ "11.04", "suspend", "hibernate", "process", "cpu-load" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The problem is very probable with the driver of your network card: Google reveals a lot of similar problems elsewhere: like in Finnish <a href=\"http://forums.gentoo.org/viewtopic-t-350202-start-0.html\" rel=\"nofollow\">this</a>.</p>\n\n<p>So simply disable the unnecessary d...
null
null
null
null
null
37563
1
null
2011-04-28T14:45:35.000
3
14550
<p>I have mid-2010 MBP, left of <kbd>1</kbd> it has <kbd>§±</kbd> key, apparently in some older models that are the only ones mentioned in <a href="https://help.ubuntu.com/community/AppleKeyboard" rel="nofollow noreferrer">Ubuntu docs</a>, there used to be the <kbd>`~</kbd> key there. In Ubuntu 11.04 with US-Mac keyboard layout I have them swapped. The issue occurs only with the built-in keyboard, with external one it works fine. Is there an easy way to fix that?</p> <p>The layout I have is same as this: <img src="https://i.stack.imgur.com/jgziL.jpg" alt=""></p>
15196
527764
2017-04-04T15:10:53.217
2017-04-04T15:11:59.377
MacBook keyboard layout – swapped keys § and `
[ "11.04", "keyboard-layout", "mac" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Try going to <strong>System > Preferences > Keyboards</strong> and check what layout is being used with the external keyboard. If it differs from the integrated keyboard that is giving you trouble, then just change the layout to the non-swapped one.</p>\n", "commentCount"...
null
null
null
null
null
37564
1
null
2011-04-28T14:46:11.193
2
490
<p>How can I enable sound in Natty? Everything is on but I get no sound.</p>
5955
14356
2011-09-04T20:14:45.360
2012-04-15T19:56:39.977
No sound on an ASUS 1018p
[ "11.04", "sound", "asus" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T17:14:34.907", "id": "41642", "postId": "37564", "score": "3", "text": "Nice work solving it yourself. Once you get the chance, I suggest that you self answer this so it can be marked as solved. :)", "userDisplayName": null, "userId": "6005" }, { "cr...
null
[ { "accepted": null, "body": "<p>Did you go to sound preferences and see if the laptops inbuilt speaker is default? .Also see if you enabled Ubuntu sounds</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-28T16:58:18.147", "id": "41639", "postId": "37...
null
null
null
null
null
37568
1
37573
2011-04-28T14:58:02.690
11
22778
<p>I can't find the new <code>11.04</code> version of the netbook edition on the ubuntu webpages. Also my <a href="http://www.nic.funet.fi/pub/mirrors/releases.ubuntu.com//natty/" rel="noreferrer">mirror</a> does not contain any netbook iso's.</p> <p>Has Ubuntu for Netbooks died?</p>
1418
14356
2012-05-05T10:10:44.277
2019-03-29T01:26:58.823
Where is the netbook edition?
[ "ubuntu-netbook" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>It's merged into the Desktop edition.</p>\n<p>From <a href=\"http://en.wikipedia.org/wiki/Ubuntu_Netbook_Edition\" rel=\"nofollow noreferrer\">wikipedia</a>:</p>\n<blockquote>\n<p>Beginning with version 10.10, Ubuntu Netbook Edition uses the Unity desktop as its desktop interface. The classic netbook interface was available in Ubuntu's software repositories as an option.</p>\n<p>Because Ubuntu's desktop edition has moved to the same Unity interface as the netbook edition, starting with Ubuntu 11.04 <strong>the netbook edition has been merged into the desktop edition.</strong></p>\n</blockquote>\n<hr />\n<p><a href=\"http://blog.canonical.com/?p=528\" rel=\"nofollow noreferrer\">Here is</a> a post from canonical blog which explains more:</p>\n<p><a href=\"http://blog.canonical.com/?p=528\" rel=\"nofollow noreferrer\">Ubuntu Netbook Edition folded into Ubuntu for next release</a></p>\n<blockquote>\n<p>One of the benefits of the direction that’s been taken with the next release of Ubuntu is that there is no longer a need for a separate netbook edition. The introduction of the new shell for Ubuntu means that we have a user interface that works equally well whatever the form factor of the PC. And the underlying technology works on a range of architectures including those common in netbook, notebooks, desktops or whatever you choose to run it on. Hence the need for a separate version for netbooks is removed...</p>\n</blockquote>\n<p>So, there won't be an Ubuntu Netbook edition for future cycles - if you want to install Ubuntu on your Netbook, the normal desktop install will work just fine.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T15:04:18.377", "id": "37573", "lastActivityDate": "2016-07-30T17:55:15.457", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "10494", "parentId": "37568", "postTypeId": "2", "score": "15" }
[ { "accepted": null, "body": "<p>Yes, it merged with the desktop version.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T15:01:37.087", "id": "37570", "lastActivityDate": "2011-04-28T15:01:37.0...
null
null
null
null
null
37571
1
null
2011-04-28T15:01:46.507
2
1712
<p>I am struggling to make a 32bit application (related to adobe AIR) work on my 64bit Ubuntu system. The application starts fine but there is no sound. After running the application from the terminal, I've noticed the following error messages:</p> <pre><code>/usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so: wrong ELF class: ELFCLASS64 Gtk-WARNING **: Failed to load type module: /usr/lib/gtk-2.0/2.10.0/menuproxies/libappmenu.so Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: wrong ELF class: ELFCLASS64 Gtk-WARNING **: Loading IM context type 'ibus' failed Gtk-WARNING **: /usr/lib/gtk-2.0/2.10.0/immodules/im-ibus.so: wrong ELF class: ELFCLASS64 Gtk-WARNING **: Loading IM context type 'ibus' failed </code></pre> <p>I suspect the following errors could be resolved by a careful update/downgrade of some specific libraries in the ia32 package. Since I am not a Linux expert I was wondering if someone could suggest me some ways to try to fix the above error messages. Thanks.</p>
13997
235
2011-05-01T19:03:16.717
2011-05-01T19:03:16.717
Resolving dependencies related to 32 bit libraries on 64 bit
[ "64-bit", "adobe-air" ]
0
3
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T16:09:57.547", "id": "41622", "postId": "37571", "score": "0", "text": "Actually, the error means that it tries to load a 64 bits library which is impossible for a 32 bits applications. 32 bits libraries should be present in `/usr/lib32`.", "userDisplayName": nu...
null
[]
null
null
2012-02-18T22:19:03.103
null
null
37572
1
null
2011-04-28T15:03:59.640
0
1986
<p>Short story: When doing a clean Natty install, is it possible to salvage the old desktop icon locations and bring them into the new user desktop?</p> <p>Long story: I accidentally the graphics driver earlier today, but thankfully, Natty came out and I can do a clean install. All the files are backed up and there would generally be no problem doing that, except there are two other users on this PC and they have very elaborate layouts of the desktop icons. This is also why they will only use the Classic desktop. Just shuffling the icons is not an option. I can't make a screenshot of the current layouts, because, well, the nvidia driver is no more.</p> <p>Is there a file where Nautilus stores desktop icon locations? A gconf entry perhaps?</p>
7693
null
null
2011-04-28T17:27:23.820
How would I store desktop icon placement?
[ "gnome", "nautilus", "backup", "re-installation" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2015-01-13T19:52:10.190", "id": "790865", "postId": "37572", "score": "0", "text": "See this question and it's accepted answer:\r\nhttp://askubuntu.com/questions/573348/desktop-icon-position-programmatically-access-and-manipulate", "userDisplayName": null, "userId": "2...
null
[ { "accepted": null, "body": "<p>You can backup the panel copying the folder <code>~/.gconf/apps/panel</code> or (a better way) </p>\n\n<pre><code>gconftool --dump /apps/panel &gt; /backupfolder/panelbackup.xml \n</code></pre>\n\n<p>And to restore: </p>\n\n<pre><code>gconftool --load /backupfolder/panelba...
null
null
null
null
null
37575
1
null
2011-04-28T15:08:16.053
4
2322
<p>My internet is pretty slow on one of my Ubuntu computers and it is running 10.10. I just want to know if I am able to update to 11.04 through my flash drive. I would like to know. Thank You.</p>
15226
null
null
2011-04-28T15:23:20.613
How to update to 11.04 through flash drive?
[ "10.10", "11.04", "flash", "updates", "drive" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>If you've spare disk space, you do not even need a flash drive.\nFollow the <a href=\"https://help.ubuntu.com/community/NattyUpgrades#Upgrading%20Using%20the%20Alternate%20CD/DVD\" rel=\"nofollow\">upgrade instructions from the Ubuntu Wiki</a>.</p>\n\n<ol>\n<li>Downloading th...
null
null
null
null
null
37580
1
null
2011-04-28T15:23:12.863
1
778
<p>I have a laptop configured with dual boot (Ubuntu and win7). Partition in which Ubuntu in installed is running out of space(alloted only 15 GB space earlier).I want to use one of my empty partition for Ubuntu. As far as I know I think I have two option to do that to increase the Ubuntu partition size first is to merg that free partition using gparted into it, but that will take lots of time since that free partition is located to the left of Ubuntu partition (comes before on disk addressing space) so gparted will have to shift whole 15 GB of existing data in Ubuntu partition towards left. Other option is to export one of my root director like /usr(or other that consumes lots of space) to that partition.</p> <p>So, I have following questions:</p> <ol> <li>Which option is safe, efficient and comfortable.</li> <li>If I were to export one of root dir(like /usr ) which one should I export and HOW. I think /usr should be the one since user programs are installed in it which constitute major portion of space.</li> <li>Any other better way of doing this??</li> </ol>
11645
null
null
2011-06-10T21:00:04.773
Increasing ubuntu partition space
[ "partitioning", "hard-drive", "gparted" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You should move your /home directory to the other partition. See <a href=\"https://askubuntu.com/questions/5484/how-can-i-move-my-home-directory-to-another-partition-if-its-already-part-of-th\">How can I move my /home directory to another partition if it&#39;s already part o...
null
null
null
null
null
37582
1
37592
2011-04-28T15:27:53.060
8
3280
<p>I just installed Natty on my laptop and I noted that my Tomboy applet is missing. I click over panel and choose <strong>Add to panel</strong> to try find it but it isn't there.</p> <p>Are there some way to restore this applet? I like it so much!</p>
15228
235
2011-04-28T18:10:13.590
2021-01-17T20:37:12.137
Where is the Tomboy panel applet?
[ "11.04", "gnome-panel", "applet", "tomboy" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I'm making the assumption you are running the Unity Interface - if you are using the classic Gnome interface then the following doesnt apply to you.</p>\n\n<p>In Unity, all the previous Gnome Panel applets will not work - except if they were Application Indicators. Unity doesnt allow you to \"right click\" and add to Panel anymore.</p>\n\n<p>If you start Tom-Boy from the Dash (click the top left 'circle of friends' icon and search from Tom) you should hopefully see the new Tom-Boy Application Indicator displayed in the top-left of the screen.</p>\n\n<p>Add Tom-Boy to the \"Startup Applications\" so that the Application Indicator is started when you next login.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-28T20:02:33.697", "id": "41685", "postId": "37592", "score": "0", "text": "I was using classic Gnome, thanks anyway. But now I decided use Unity.", "userDisplayName": null, "userId": "15228" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T15:52:38.810", "id": "37592", "lastActivityDate": "2011-04-28T15:52:38.810", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "37582", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>I'm making the assumption you are running the Unity Interface - if you are using the classic Gnome interface then the following doesnt apply to you.</p>\n\n<p>In Unity, all the previous Gnome Panel applets will not work - except if they were Application Indicators. Unity doe...
null
null
null
null
null
37584
1
37587
2011-04-28T15:32:56.363
10
3906
<p>I upgraded from 10.10 to 11.04 today, so I'm using Unity now, and Dropbox has disappeared from the indicator area. It still works, but it's hard to use now. </p> <p>I've already tried removing it and reinstalling from the site. I noticed that this readds the dropbox repository to the APT sources (the upgrade disabled it), but it's a maverick source.</p> <p>How can I get it back?</p>
2071
11069
2011-04-28T16:07:41.310
2013-02-19T22:22:21.987
Dropbox gone from indicator area after upgrade to 11.04
[ "11.04", "unity", "indicator", "dropbox" ]
3
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T15:41:53.563", "id": "41597", "postId": "37584", "score": "0", "text": "I have it running fine on a clean 11.04 install and I confirm it does still show a `maverick` repo installed, so you can at least rule that out as part of the problem.", "userDisplayName": n...
{ "accepted": true, "body": "<p>have you checked if it's actually running? possibly you run a non-current release of dropbox, and just the indicator has vanished. dropbox only recently added indicator-applet compatibility, which is needed for natty.</p>\n\n<p>upgrade dropbox by running</p>\n\n<pre><code>dropbox stop\nrm -r ~/.dropbox-dist\ndropbox start -i\n</code></pre>\n\n<p><em>edit: not that bug after all, thx jorge. Seems to be fixed with a new dropbox version, though:\n<a href=\"http://forums.dropbox.com/topic.php?id=37361&amp;replies=20#post-315358\">http://forums.dropbox.com/topic.php?id=37361&amp;replies=20#post-315358</a></em></p>\n", "commentCount": "11", "comments": [ { "creationDate": "2011-04-28T15:49:04.353", "id": "41601", "postId": "37587", "score": "0", "text": "Yes it's running. I'm also sure there was an indicator in 10.10, not a system tray icon. I have Dropbox 1.0.10", "userDisplayName": null, "userId": "2071" }, { "creationDate": "2011-04-28T15:53:40.203", "id": "41602", "postId": "37587", "score": "0", "text": "have you upgraded db yet? current general release version is 1.1.28, see https://www.dropbox.com/install", "userDisplayName": null, "userId": "11069" }, { "creationDate": "2011-04-28T15:57:30.103", "id": "41605", "postId": "37587", "score": "0", "text": "I assumed that having the Dropbox repo in there would upgrade it, but apparently not. Looks like only nautilus integration is in there, or something. Not very user friendly...", "userDisplayName": null, "userId": "2071" }, { "creationDate": "2011-04-28T15:59:31.957", "id": "41608", "postId": "37587", "score": "0", "text": "the repo is just for the nautilus integration component. db core updates are pulled directly from their server if you do what i posted above. (and per auto-update at the discretion of the db team, this should also work on linux. they are mega-cautious with that, though)", "userDisplayName": null, "userId": "11069" }, { "creationDate": "2011-04-28T16:05:16.913", "id": "41615", "postId": "37587", "score": "0", "text": "Yeah I just read that on their site. Anyway, I have 1.1.28 now.", "userDisplayName": null, "userId": "2071" }, { "creationDate": "2011-04-28T16:05:56.257", "id": "41616", "postId": "37587", "score": "0", "text": "so does it work correctly now? :-)", "userDisplayName": null, "userId": "11069" }, { "creationDate": "2011-04-28T16:06:15.837", "id": "41618", "postId": "37587", "score": "0", "text": "No, see my latest comment on the other answer :(", "userDisplayName": null, "userId": "2071" }, { "creationDate": "2011-04-28T16:13:12.050", "id": "41624", "postId": "37587", "score": "0", "text": "most probably this bug: https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/563632", "userDisplayName": null, "userId": "11069" }, { "creationDate": "2011-04-28T16:39:29.943", "id": "41637", "postId": "37587", "score": "0", "text": "A quick workaround for this bug could be to delay the dropbox start: In the startup applications dialog, change the entry from \"dropbox start\" to e.g. \"sleep 40s && dropbox start\". Can't test this though, still on 10.10.", "userDisplayName": null, "userId": "11069" }, { "creationDate": "2011-04-28T21:47:53.957", "id": "41724", "postId": "37587", "score": "0", "text": "I don't think that's the right bug, he's tagged it unity and unity doesn't use gnome-panel, could be something else.", "userDisplayName": null, "userId": "235" }, { "creationDate": "2011-05-07T13:14:50.727", "id": "44909", "postId": "37587", "score": "0", "text": "Upgrading Dropbox worked for me the first time I did it. Then I had to re-install Maverick again and upgraded to Natty today. Dropbox icon is not shown anymore. I tried again upgrading it and restarting but it does not work. Any idea?", "userDisplayName": null, "userId": "5151" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T15:42:11.323", "id": "37587", "lastActivityDate": "2011-05-02T07:16:37.693", "lastEditDate": "2011-05-02T07:16:37.693", "lastEditorDisplayName": null, "lastEditorUserId": "11069", "ownerDisplayName": null, "ownerUserId": "11069", "parentId": "37584", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>have you checked if it's actually running? possibly you run a non-current release of dropbox, and just the indicator has vanished. dropbox only recently added indicator-applet compatibility, which is needed for natty.</p>\n\n<p>upgrade dropbox by running</p>\n\n<pre><code>dro...
null
null
null
null
null
37589
1
37609
2011-04-28T15:44:43.333
10
24730
<p>Everything was working great about 3 hours ago on my maverick machine.Then an issue cropped up.</p> <p>I ran the command <code>chown -R someuser:somegroup .*</code>, and before I had noticed the <code>.</code>, I hit <kbd>Enter</kbd>, and this mistake made that half my system was owned by <code>someuser</code> before I could stop it.</p> <p>I managed to get everything back to root (namely, <code>/sbin</code>, <code>/etc</code>, <code>/lib</code>, and some stuff under <code>/usr</code>). I <code>apt-get --reinstall install</code>ed a pile of packages, including ALSA. </p> <p>Unfortunately, ALSA doesn't work for non-root users. That is, <code>sudo aplay /usr/share/sounds/alsa/Noise.wav</code> works fine, but as an unprivileged user, it spits out </p> <pre><code>"cannot find card '0'"` </code></pre> <p>Although adding my users to the audio group might work, I'd read many places that this is no longer the solution to these problems.</p> <p>So that leaves me with the question - where should I look to find my hosed permissions?</p>
14909
829702
2019-12-20T10:05:00.230
2021-08-15T21:47:35.383
ALSA permissions
[ "permissions", "alsa" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Okay, I got lucky, and noticed that the ACLs weren't set in /dev/snd</p>\n<p>Just in case anyone happens upon a similar problem, I managed to fix it:</p>\n<pre><code>sudo setfacl -m u:$USER:rw /dev/snd/*\n</code></pre>\n<p>If anyone sees a problem with this, please respond in the comments, I want to make sure I did this right...</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2014-12-27T23:39:47.680", "id": "779129", "postId": "37609", "score": "2", "text": "As pointed out in a (now deleted) answer this command may not work because the user is not in the 'audio' group. Adding the user to the 'audio' group works around this.", "userDisplayName": null, "userId": "44179" }, { "creationDate": "2017-06-19T22:24:13.700", "id": "1466254", "postId": "37609", "score": "0", "text": "I had to add my user to the 'audio' group, to get it work. Thank you, Seth !", "userDisplayName": null, "userId": "336408" }, { "creationDate": "2019-07-21T13:59:40.563", "id": "1931622", "postId": "37609", "score": "0", "text": "After long search this was the solution also for me. Now looking on how to get ACL settings on `/dev` permanent or how to disable ACL completely.", "userDisplayName": null, "userId": "413199" }, { "creationDate": "2020-06-11T01:22:11.027", "id": "2107535", "postId": "37609", "score": "0", "text": "Thank you very much. Just recently installed 20.04 and I had a similar problem. This solution solves the issue. Regards", "userDisplayName": null, "userId": "9598" }, { "creationDate": "2020-12-01T06:09:03.067", "id": "2203215", "postId": "37609", "score": "1", "text": "Unfortunately, I've tried this and it doesn't work in my case. My user is already added to the audio group, so that's not it. The interesting part is that I do get a sound for a couple of seconds (say if I watch a video) and then it starts to slowly turn down until it's fully muted.", "userDisplayName": null, "userId": "115601" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-04-28T16:58:41.387", "id": "37609", "lastActivityDate": "2021-08-15T21:47:35.383", "lastEditDate": "2021-08-15T21:47:35.383", "lastEditorDisplayName": null, "lastEditorUserId": "6537", "ownerDisplayName": null, "ownerUserId": "14909", "parentId": "37589", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>Okay, I got lucky, and noticed that the ACLs weren't set in /dev/snd</p>\n<p>Just in case anyone happens upon a similar problem, I managed to fix it:</p>\n<pre><code>sudo setfacl -m u:$USER:rw /dev/snd/*\n</code></pre>\n<p>If anyone sees a problem with this, please respond in...
null
null
null
null
null
37590
1
null
2011-04-28T15:50:22.023
34
109338
<p>Tonight I upgraded to 11.04. Problems. Once I had finished the upgrade, I restarted my computer as it told me too. When I got past the ubuntu 11.04 (purple background orange dots), it simply went to the terminal and asked me to log in. I tried to restart the X server with "sudo service gdm restart" but no display popped up. I happened to have a few NVIDIA drivers in my downloads file also so I gave these a try, but the "install script" failed. </p> <p>After all this I booted Ubuntu in graphic failsafe mode. I then decided to see what would happen if I removed the proprietary driver. Upon doing this and rebooting my Ubuntu booted into graphical mode "yay!". So without the Nvidia drivers I can finally see something other than terminal, but, I need those NVIDIA drivers for my work. So what can I do? I have tried installing the new NVIDIA linux drivers from the NVIDIA website, and have tried Installing the recommended driver via "additional drivers", but both have resulted in my being stuck in terminal.</p> <p>If you can help or give me some advice PLEASE DO! I am really in a very bad situation...</p>
3330
235
2011-05-03T00:13:18.293
2017-02-14T04:58:20.180
NVIDIA drivers not working after upgrade. Why can I only see terminal?
[ "11.04", "xorg", "nvidia" ]
7
4
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T15:57:08.497", "id": "41604", "postId": "37590", "score": "2", "text": "Did you remove the /etc/X11/xorg.conf file first, then reboot, then try to activate the Additional Drivers version of the NVIDIA driver?", "userDisplayName": null, "userId": "14356" },...
null
[ { "accepted": null, "body": "<p>You will need to boot into recovery mode, then issue <code>apt-get remove --purge nvidia-current</code> on the root terminal, followed by <code>apt-get install nvidia-current</code> - to rebuild the nvidia driver for the new kernel. I had this problem as well when I upgraded....
null
null
null
null
null
37591
1
37598
2011-04-28T15:51:15.057
5
288
<p>If unity is shipped by default, and using CompizConfigSettings is recommended for configuration, shouldn't CompizConfigSettings Manager be installed along with it?</p>
15233
1992
2011-06-06T23:39:20.033
2011-06-07T00:10:46.330
Why isn't CompizConfigSettings Manager installed along side Unity?
[ "unity", "compiz", "settings" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-06-07T00:10:46.330", "id": "52355", "postId": "37591", "score": "0", "text": "Acually you don't need ccsm these days to configure unity there are settings in gconf2 or the newer dconf-tools from the software centre. If you want a gui then you can use confity see http://ww...
{ "accepted": true, "body": "<p>As said by Mark Shuttleworth in the Bug Report that I filed asking the exact same thing,</p>\n\n<blockquote>\n <p>No, ccsm should not be installed by default. There are no options in Unity\n through CCSM which are encouraged for\n end-user experimentation. Anything\n there can and will be altered and\n removed. It's there to help us explore\n options and gather testing feedback.\n So please do not install ccsm by\n default.</p>\n</blockquote>\n\n<p><em>(From the <a href=\"https://bugs.launchpad.net/bugs/744267\" rel=\"nofollow\">Bug Report</a>)</em></p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-04-28T16:20:41.200", "id": "41626", "postId": "37598", "score": "0", "text": "Personally, I wouldn't have shipped it without a configuration tool, but that's not my call.", "userDisplayName": null, "userId": "15233" }, { "creationDate": "2011-04-28T16:32:41.480", "id": "41631", "postId": "37598", "score": "0", "text": "@astjohn Agreed. However, it's on track for 11.10.", "userDisplayName": null, "userId": "6005" }, { "creationDate": "2011-06-07T00:00:29.733", "id": "52272", "postId": "37598", "score": "0", "text": "Elsewhere -- in another bug report on Launchpad, I believe -- I recall Shuttleworth commenting that some of the options would cause Unity to crash. The overall impression is that Compiz config settings manager is, for the purposes of configuring Unity, only a kludge, to be replaced by a proper tool.", "userDisplayName": null, "userId": "14663" }, { "creationDate": "2011-06-07T01:15:24.707", "id": "52284", "postId": "37598", "score": "0", "text": "Unity crashes pretty frequently without changing ccsm setings ...", "userDisplayName": null, "userId": "1217" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T16:11:44.750", "id": "37598", "lastActivityDate": "2011-04-28T16:11:44.750", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "6005", "parentId": "37591", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>As you have found, Canonical decided, either there wasnt enough space on the CD, or that they didnt consider this option as essential. Can I suggest you make this suggestion via their <a href=\"https://lists.ubuntu.com/#Development+Lists\" rel=\"nofollow\">Mailing Lists</a>?...
null
null
null
null
null
37596
1
37863
2011-04-28T16:09:47.413
0
1790
<p>i'm using Realtek audio card in MSI GX620 Laptop</p> <pre><code>$ cat /proc/asound/card0/codec#* | grep Codec Codec: Realtek ALC1200 Codec: Motorola Si3054 Codec: Nvidia MCP78 HDMI $ uname -a Linux machine 2.6.32-31-generic-pae #61-Ubuntu SMP Fri Apr 8 20:00:13 UTC 2011 i686 GNU/Linux </code></pre> <p>I'm using Ubuntu 10.04</p> <p>Unfortunately i cannot catch any microphone true input. USB ones work perfectly. Internal one too.</p> <p>Anny suggestions?</p> <p>I've tried GNOME alsa mixer. No luck. </p>
8825
8825
2011-04-29T07:00:34.137
2011-05-30T00:55:20.873
Realtek ALC1200 Sound input
[ "10.04", "sound", "alsa", "realtek", "input" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I've succeed! I' just needed to mess around with:</p>\n\n<pre><code>$ alsamixer -c 0\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T07:00:10.173", "id": "37863", "lastActivityDate": "2011-04-29T07:00:10.173", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8825", "parentId": "37596", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I've succeed! I' just needed to mess around with:</p>\n\n<pre><code>$ alsamixer -c 0\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T07:00:10.173", "id": ...
null
null
null
null
null
37600
1
null
2011-04-28T16:29:13.020
10
15012
<p>Everything I read said that the GNOME 3 PPA for Natty would be very experimental, cause sudden death, etc until April 28th. Well, today is April 28th, so if I start using GNOME 3 from the PPA will it work entirely correctly now?</p>
15240
6005
2011-04-28T23:01:54.160
2011-05-22T13:59:56.167
Gnome 3 ppa was unstable until April 28th, so is it ok now?
[ "11.04", "ppa", "gnome" ]
3
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T23:07:05.053", "id": "41760", "postId": "37600", "score": "1", "text": "I think it will still break Unity.", "userDisplayName": null, "userId": "13755" } ]
null
[ { "accepted": null, "body": "<p>I read (<a href=\"https://askubuntu.com/questions/34750/how-to-install-gnome-3-without-breaking-unity\">source</a>) that GNOME 3 will break Unity in 11.04 and the issue won't be fixed until 11.10.</p>\n\n<p>If you don't mind losing Unity, there probably is a way to get GNOME ...
null
null
null
null
null
37601
1
37673
2011-04-28T16:29:56.113
1
2830
<p>Btrfs currently lacks fsck, risking corruption if there's a power failure. To what extent, if at all, would creating a btrfs filesystem within a RAID5 array mitigate this?</p>
15237
null
null
2017-07-31T08:48:32.223
Resilience of Btrfs inside RAID5
[ "raid", "btrfs", "fsck" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>AFAIK it would make no difference. </p>\n\n<p>RAID is an abstraction layer for physical disks, it makes multiple disks/partitions look like a single \"block device\" to the file system. Some RAID levels (including RAID1 and RAID5) can handle physical disk failures transparently: Remove a disk, and for the file system it looks like nothing has changed.</p>\n\n<p>But the file system works on top of the \"block device\" abstraction layer. Using a RAID5 as the block device helps dealing with physical disk failures, but it does nothing for the file system itself, so the risk of file system corruption remains the same.</p>\n\n<p>RAID blocks (mdadm 'chunks' with default size 64kB) differ from file system blocks (ext4 default size 4kB) and are designed to detect a different kind of corruption. </p>\n\n<p>RAID5 works by splitting data from the file system and writing one chunk to each of N-1 disks and a checksum to the Nth disk. RAID5 is designed to detect \"corrupt data\" in the sense of bad sectors, in which case the original can be restored from the checksum and the N-2 remaining good chunks. </p>\n\n<p>But if the FS updates the metadata and dies before it has time to write the files, the file system may be corrupt without the RAID being any wiser: What was written to disk is the same as what is read back from disk, as evidenced by the checksums matching. The RAID cannot know that important pieces are missing from the perspective of a higher level application.</p>\n\n<p>See <a href=\"http://www.raidinc.com/assets/documents/Whitepaper-Silent-Data-Corruption.pdf\" rel=\"nofollow\">this paper (pdf)</a> for examples of corruption that goes undetected by RAID. In the context of file system corruption, I guess \"torn writes\" (only some of the data that were supposed to be written actually are) is particularly relevant.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-28T21:39:33.817", "id": "41720", "postId": "37673", "score": "0", "text": "That was my initial thought too, but RAID5 will also compensate for bad blocks not just bad disks, and if an area is unclean area because of a power-off during a write, it should be restored during recovery. From the wiki: \"When you have multiple copies of data, you can use data scrubbing to actively scan for corrupt data and clean up the corruption by replacing the corrupt data with correct data from a surviving copy.\" The question is how this recovery would interact with the filesystem journaling and the kind of corruption that could occur.", "userDisplayName": null, "userId": "15237" }, { "creationDate": "2011-04-28T22:20:05.473", "id": "41735", "postId": "37673", "score": "1", "text": "@Mark See my updated answer. In short, the RAID error recovery is designed for bad physical sectors and can recover if what is read back from disk is different from what was written. But no RAID level knows about file systems and journaling and the kind of corruption that can happen there - RAID can't help if what was written was wrong or incomplete in the first place.", "userDisplayName": null, "userId": "2337" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T20:10:11.010", "id": "37673", "lastActivityDate": "2011-04-28T22:33:58.523", "lastEditDate": "2011-04-28T22:33:58.523", "lastEditorDisplayName": null, "lastEditorUserId": "2337", "ownerDisplayName": null, "ownerUserId": "2337", "parentId": "37601", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>AFAIK it would make no difference. </p>\n\n<p>RAID is an abstraction layer for physical disks, it makes multiple disks/partitions look like a single \"block device\" to the file system. Some RAID levels (including RAID1 and RAID5) can handle physical disk failures transparent...
null
null
null
null
null
37602
1
37615
2011-04-28T16:31:43.897
10
7762
<p>Is there something equivalent to <code>gnome-gmail-notifier</code> for Unity and Unity 2D on Ubuntu 11.04/11.10?</p> <p>'equivalent' means that it must notify about new emails from multiple normal GMail and Google Apps GMail accounts.</p>
15155
15155
2011-10-20T22:48:36.163
2012-08-19T20:40:38.020
Is there a Gmail notifier that works with multiple accounts?
[ "11.04", "unity", "11.10", "unity-2d", "gmail" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Ok, self answering my question.</p>\n\n<p><code>gnome-gmail-notifier</code> works on Unity and Unity 2D too if you follow these steps:</p>\n\n<ol>\n<li>type in Terminal:<br>\n<code>gsettings set com.canonical.Unity.Panel systray-whitelist \"['all']\"</code></li>\n<li>log out</li>\n<li>log in</li>\n</ol>\n\n<p><em>Edit:</em></p>\n\n<p>if you are using <strong>Unity 2D</strong> <a href=\"https://bugs.launchpad.net/ubuntu/+source/unity-2d/+bug/847525\" rel=\"nofollow\">this bug</a> makes <code>'all'</code> not working. A patch has been approved for Oneiric but not released yet.<br>\nWorkaround:<br>\n<code>gsettings set com.canonical.Unity.Panel systray-whitelist \"['Gnome-gmail-notifier']\"</code><br>\n(Capital <code>G</code> is needed.)</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2013-09-13T16:51:39.997", "id": "441940", "postId": "37615", "score": "0", "text": "Note that you probably shouldn't just give your password to any software that asks for it.", "userDisplayName": null, "userId": "324" }, { "creationDate": "2014-01-16T09:56:15.907", "id": "521865", "postId": "37615", "score": "1", "text": "@mlissner Gmail allows application-specific passwords for this reason.", "userDisplayName": null, "userId": "5995" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T17:20:05.803", "id": "37615", "lastActivityDate": "2011-10-20T22:44:49.697", "lastEditDate": "2011-10-20T22:44:49.697", "lastEditorDisplayName": null, "lastEditorUserId": "15155", "ownerDisplayName": null, "ownerUserId": "15155", "parentId": "37602", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>You can install the package <a href=\"https://launchpad.net/ubuntu/+source/gm-notify\" rel=\"nofollow\">gm-notify</a> [<a href=\"http://apt.ubuntu.com/p/gm-notify\" rel=\"nofollow\">Install gm-notify</a>]</p>\n\n<p>Otherwise, open up the Software Center (on the launcher), the...
null
null
null
null
null
37603
1
37606
2011-04-28T16:36:46.527
0
97
<p>Gnome-Do just drove my CPU to 100% for over a minute for no apparent reason. Had to kill the process to stop the fans from blowing themselves apart.</p> <p>I had other problems with Gnome-Do - sometimes it doesn't recognize any command. I have to restart it so that it can become of any use. I really like the idea and vast array of plugins, but shouldn't it be more reliable? Are there any alternatives to this software?</p> <p>Another thing - I have never reported a bug. What should I read so that my report is useful to the developers?</p>
15198
null
null
2011-08-15T02:36:33.380
Gnome-Do - shouldn't it be more stable?
[ "bug-reporting", "gnome-do" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>This is probably this already existing bug report - chime in there..\n<a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-do/+bug/626308\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gnome-do/+bug/626308</a></p>\n\n<p>A good alternative would be Synapse - <a href=\"http://www.omgubuntu.co.uk/2010/11/synapse-gnome-do-launcher-app-review-ubuntu/\" rel=\"nofollow\">http://www.omgubuntu.co.uk/2010/11/synapse-gnome-do-launcher-app-review-ubuntu/</a>\nI'm not sure, though, how relevant all these launchers will be after one starts using unity - I think there's much duplicated functionality.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T16:42:36.490", "id": "37606", "lastActivityDate": "2011-04-28T16:42:36.490", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "11069", "parentId": "37603", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>This is probably this already existing bug report - chime in there..\n<a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-do/+bug/626308\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gnome-do/+bug/626308</a></p>\n\n<p>A good alternative would be Synapse -...
null
null
null
null
null
37604
1
37634
2011-04-28T16:37:41.287
1
6700
<p>I need to upload a file to a server.</p> <p>The server uploads using SFTP. After authentication, any command execution is forbidden, so I cannot SSH directly in, I need to get directly into the SFTP subsystem.</p> <p>For instance.</p> <p><code>ssh -N user@example.com</code> works fine, except I can't SFTP anything.</p> <p>However, I can do <code>sftp user@example.com</code> just fine.</p> <p><strong>Problem:</strong> I need to automate this, the authentication is keyboard-interactive, not key-based. I don't own the server I'm connecting to, they simply said <em>"Here's the password, upload the files every week."</em> And nobody over there knows anything about keys or stuff like that. </p> <p><code>sftp -b</code> Batch scripts won't allow keyboard interactive auth.</p> <p>I'm sick of manually uploading the file. They sent the 8-charecter password over unencrypted email and it contains 3 of the same numbers at the end and one dictionary word (ie "Words777") -- lets pretend security really isn't an issue here.</p> <p>Can I make the SSH key from just the password? Remember, I don't have access to the other server. Can I script this some way? I've attempted using different packages, and even <code>rsync</code> to do the upload, but they all want to access SSH directly instead of directly getting into the SFTP subsystem.</p>
11239
null
null
2013-08-02T12:45:15.133
SFTP upload script, there is no key
[ "ssh", "scripts", "cron", "sftp" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Install <a href=\"http://expect.sourceforge.net/\" rel=\"nofollow\">Expect</a> that lets you script for situations like this.</p>\n\n<p><code>sudo apt-get install expect</code></p>\n\n<p>Set up a shell script</p>\n\n<pre><code>#!/bin/bash\nHOST=\"\"\nUSER=\"\"\nPASS=\"\"\n\n# Sorry for the offensive \"assword\", it's to cope with \"Password\" and \"password\".\n\nVAR=$(expect -c \"\n spawn sftp $USER@$HOST\n\n expect \\\"assword:\\\"\n send \\\"$PASS\\r\\\"\n\n expect \\\"\\\\\\\\$\\\"\n send \\\"ls\\r\\\"\n\n expect -re \\\"$USER.*\\\"\n send \\\"exit\\\"\n\")\n\necho \"===============\"\necho \"$VAR\"\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T18:39:31.180", "id": "37634", "lastActivityDate": "2013-08-02T12:45:15.133", "lastEditDate": "2013-08-02T12:45:15.133", "lastEditorDisplayName": null, "lastEditorUserId": "11239", "ownerDisplayName": null, "ownerUserId": "11239", "parentId": "37604", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>I think that if you create a ssh key <em>without</em> protecting it with a \"passphrase\", you can skip the keyboard interactive part and thus easily create the upload script you need. <a href=\"http://www.electrictoolbox.com/article/linux-unix-bsd/create-rsa-dsa-keys-ssh/\" ...
null
null
null
null
null
37608
1
37728
2011-04-28T16:46:39.170
15
687
<p>When I plug an external monitor into my laptop, the laptop screen is still considered my <em>primary display</em>. Since my laptop is on the right of my external monitor, I now have the Launcher sort of "in the middle". </p> <p>How do I get the Launcher and the BFB onto my external monitor?</p>
1067
null
null
2011-11-28T21:23:40.973
How can I put the Launcher on the other display?
[ "11.04", "unity", "multiple-monitors" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>currently there is no way to chose which monitor the launcher shows up on. there is an open bug about this issue <a href=\"https://bugs.launchpad.net/unity/+bug/742544\" rel=\"nofollow\">on launchpad</a>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-02T14:59:01.937", "id": "43089", "postId": "37728", "score": "1", "text": "Incredible. It took me about 3 seconds to notice, and it actually drove me away from unity, which I wanted to give a chance. I didn’t know that multi-screen setups where _so_ advanced.", "userDisplayName": null, "userId": "8373" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T22:15:15.750", "id": "37728", "lastActivityDate": "2011-04-28T22:15:15.750", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5104", "parentId": "37608", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>currently there is no way to chose which monitor the launcher shows up on. there is an open bug about this issue <a href=\"https://bugs.launchpad.net/unity/+bug/742544\" rel=\"nofollow\">on launchpad</a>.</p>\n", "commentCount": "1", "comments": [ { "cre...
null
null
null
null
null
37611
1
39092
2011-04-28T17:02:08.057
1
225
<p>are there open source apps eqivalent to Cursor FX? </p>
12846
null
null
2011-05-02T05:32:33.453
Open source cursor animations apps
[ "11.04" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Try xcursorgen, it let's you create both static and animated cursors for Linux. A good guide which utilizes xcursorgen is located <a href=\"http://www.ehow.com/how_5026012_make-cursors-file-ubuntu.html\" rel=\"nofollow\">here!</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-02T05:32:33.453", "id": "39092", "lastActivityDate": "2011-05-02T05:32:33.453", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "13498", "parentId": "37611", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Try xcursorgen, it let's you create both static and animated cursors for Linux. A good guide which utilizes xcursorgen is located <a href=\"http://www.ehow.com/how_5026012_make-cursors-file-ubuntu.html\" rel=\"nofollow\">here!</a></p>\n", "commentCount": "0", "comment...
null
null
null
null
null
37612
1
37613
2011-04-28T17:02:14.877
8
266
<p>I have been running 10.10 on my laptop and like it. I would like to upgrade my 10.04 LTS box at home by just enabling normal releases in update manager. </p> <p>Should this work, or have I caused a problem by waiting past the 11.04 release? </p>
49
null
null
2011-04-28T17:03:57.853
Now that 11.04 is out will 10.04 still upgrade to 10.10?
[ "10.10", "10.04", "upgrade" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Your box will still prompt you for 10.10. </p>\n\n<p>If you skip a release you have to upgrade to that first before going on to the next one. The one exception where skipping works is LTS-to-LTS upgrades.</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/34430/how-to-upgrade-from-ubuntu-10-04-or-10-10-to-11-04\">Can I skip over releases when upgrading?</a></li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T17:03:57.853", "id": "37613", "lastActivityDate": "2011-04-28T17:03:57.853", "lastEditDate": "2017-04-13T12:23:28.223", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "37612", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Your box will still prompt you for 10.10. </p>\n\n<p>If you skip a release you have to upgrade to that first before going on to the next one. The one exception where skipping works is LTS-to-LTS upgrades.</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/34430/how-to...
null
null
null
null
null
37617
1
null
2011-04-28T17:30:03.457
3
1409
<p>This question might be answered, but I would like to get an answer. I should have 11.04 Beta 2, but because I have updated the packages, then I guess I have 11.04 "Retail". And I have an ATI Radeon HD 4800 video card. When I was using Ubuntu 10.10, then effects, for example the Wobbly Windows, were very fast and looked great. But now, they are quite laggy.</p> <p>Is there anything to do to help that?</p>
15247
null
null
2011-04-28T22:47:50.093
My ATI Radeon Video Card still has quite bad performance in Ubuntu 11.04
[ "11.04", "ati" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T19:14:26.220", "id": "41660", "postId": "37617", "score": "0", "text": "I'm facing the exact same problem. I tried updating drivers, changing Compiz settings and even disabling Unity, still no luck. Used to work like a charm on 10.10 and 10.04.", "userDisplayNam...
null
[ { "accepted": null, "body": "<p>Try installing the latest ati catalyst - <a href=\"http://www.webupd8.org/2011/04/amd-ati-catalyst-114-released-just-in.html\" rel=\"nofollow\">ati-catalyst-114</a> or try the steps given in this blog - <a href=\"http://www.linoob.com/2011/04/installing-hardware-drivers-in-ub...
null
null
null
null
null
37618
1
43791
2011-04-28T17:37:11.063
42
84387
<p>I recently purchased a laptop with a sandy bridge CPU that is supposed to have <a href="http://en.wikipedia.org/wiki/Intel_Turbo_Boost">turbo boost</a>. Is turbo boost supported in 11.04? How can I tell if it's working?</p> <p>I tried <a href="http://code.google.com/p/i7z/">this</a> but it seems to only detect <a href="http://en.wikipedia.org/wiki/Nehalem_%28microarchitecture%29">Nehalem</a> CPUs.</p>
693
158442
2018-01-03T13:40:53.233
2021-06-02T07:20:01.900
Is Turbo Boost Working?
[ "intel", "turbo-boost" ]
7
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>11.04 runs the 2.6.38 kernel which is supposed to work well with Sandy Bridge CPUs.</p>\n<p>You can open a terminal and run <code>grep MHz /proc/cpuinfo</code>. Then open a second terminal tab and run a loop like <code>while :; do :; done</code>. In the first terminal, run <code>grep MHz /proc/cpuinfo</code> again. You should see one of the cores has a higher frequency now:</p>\n<pre><code>$ grep MHz /proc/cpuinfo \ncpu MHz : 1600.000\ncpu MHz : 1600.000\ncpu MHz : 1600.000\ncpu MHz : 1600.000\ncpu MHz : 1600.000\ncpu MHz : 3701.000\ncpu MHz : 1600.000\ncpu MHz : 1600.000\n</code></pre>\n<p>You can also try <a href=\"http://apt.ubuntu.com/p/powertop\" rel=\"noreferrer\">powertop</a> and <code>turbostat</code> from the <a href=\"http://apt.ubuntu.com/p/linux-tools-common\" rel=\"noreferrer\">linux-tools-common</a> package (run <code>sudo modprobe msr</code> before <code>sudo turbostat</code>). The Git version of <a href=\"https://github.com/ajaiantilal/i7z\" rel=\"noreferrer\">i7z</a> is supposed to work for Sandy Bridge (and it works for me with a desktop i7).</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-05-20T23:03:42.753", "id": "48466", "postId": "43791", "score": "1", "text": "Thanks for that. It appears that turbo boost is *not* working for me. I have the 8,1 macbook pro. and it maxes out at 2.7ghz which is the advertised base clock speed, while the turbo boost speed is advertised at 3.4ghz. I'll probably start a new question on this . . .", "userDisplayName": null, "userId": "693" }, { "creationDate": "2011-11-01T18:03:57.750", "id": "84420", "postId": "43791", "score": "0", "text": "I am somewhat confused: using your technique Turbo Boost does not seem to work. However if I use i7z script is tells me that Turbo Boost is enabled.", "userDisplayName": null, "userId": "48525" }, { "creationDate": "2011-12-14T14:36:10.533", "id": "100030", "postId": "43791", "score": "0", "text": "@R3s3t, the 3701 really means 3700 with turbo boost enabled, to be activated at the discretion of the motherboard.", "userDisplayName": null, "userId": "8500" }, { "creationDate": "2013-07-25T16:49:00.270", "id": "412603", "postId": "43791", "score": "0", "text": "This is weird my processor hase a base clock speed of 1.8 GHz with turbo boost up to 2.6 GHz but I this only shows me 800MHZ to 1.8GHz. No wonder Ubuntu feels a bit laggy... :(", "userDisplayName": null, "userId": "172081" }, { "creationDate": "2014-07-24T06:06:53.430", "id": "674028", "postId": "43791", "score": "9", "text": "This answer appears to be only partially true. _All_ the info in `/proc/` and `/sys/device/system/cpu/` is _always_ limited to regular frequencies by design; see https://www.kernel.org/doc/Documentation/cpu-freq/boost.txt Also, the CPU Freq Mons rely on this information, so they will not show boosts. But `turbostat` and other tools will. Special care should be taken for AMD processors with integrated graphics, see http://askubuntu.com/a/501599/308343 @king_julien Your assumption is probably wrong.", "userDisplayName": null, "userId": "308343" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2011-05-19T05:25:15.490", "id": "43791", "lastActivityDate": "2020-11-21T18:24:02.290", "lastEditDate": "2020-11-21T18:24:02.290", "lastEditorDisplayName": null, "lastEditorUserId": "46198", "ownerDisplayName": null, "ownerUserId": "16134", "parentId": "37618", "postTypeId": "2", "score": "37" }
[ { "accepted": true, "body": "<p>11.04 runs the 2.6.38 kernel which is supposed to work well with Sandy Bridge CPUs.</p>\n<p>You can open a terminal and run <code>grep MHz /proc/cpuinfo</code>. Then open a second terminal tab and run a loop like <code>while :; do :; done</code>. In the first terminal, run <c...
null
null
null
null
null
37619
1
null
2011-04-28T17:37:42.090
1
445
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/35277/install-on-toshiba-ac100">Install on Toshiba ac100</a> </p> </blockquote> <p>I have an ac100 and know that there is the possibility to flash a custom kernel and boot Ubuntu that way. Also, there are several kernel-versions around that work only in certain circumstances. </p> <p>What I want to know now is what versions there are and where to get them. I'll ask another question for how to install them, what the install options are (internal eMMC and/or SD-Card/USB-flashdrive).</p> <p>EDIT: It looks like everything is changing too fast to get a satisfying answer.</p>
4670
-1
2017-04-13T12:25:03.983
2011-07-05T13:59:24.733
What kernels exist for Toshiba's ac100 and where to get them?
[ "installation", "kernel", "arm", "ac100" ]
0
0
CC BY-SA 3.0
[]
null
[]
null
0
2012-11-03T09:46:43.770
null
null
37622
1
null
2011-04-28T17:47:52.057
3
686
<p>I just installed Natty 64 bit. I love those Notify-OSD notifications in Rhythmbox but in Banshee they are not here. I guess that this is because of we can't minimize apps to tray (only to launcher). </p> <p>So I installed Rhythmbox again... Notify OSD notifications works fine here but in this case I can't see Rhythmbox icon in the launcher. Any idea?</p>
15243
6005
2011-04-28T22:55:14.670
2011-09-12T19:38:26.923
Banshee doesn't support bubble notifications? (libnotify)
[ "11.04", "unity", "rhythmbox", "banshee", "notify-osd" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T22:52:56.093", "id": "41752", "postId": "37622", "score": "2", "text": "It should work. Check your Banshee extensions.", "userDisplayName": null, "userId": "6005" } ]
null
[ { "accepted": null, "body": "<p>It should be working. Check your Banshee extensions.</p>\n\n<p>Open Banshee. Go to Edit > Preferences > In the General Tab select Show Banshee in Sound Menu under Miscellaneous.</p>\n\n<p>Also under the Extensions tab check if you have Sound Menu Integration checked. If not c...
null
null
null
null
null
37626
1
null
2011-04-28T18:18:46.513
5
1955
<p>Is there a way of installing elementary theme in natty?</p>
15253
235
2011-04-28T18:22:26.977
2012-10-12T10:21:29.417
How do I install the Elementary theme?
[ "11.04", "themes", "elementary-theme" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You can find it <a href=\"http://gnome-look.org/content/show.php/elementary_pbr_unity?content=141135\" rel=\"nofollow\">here</a> along with the explanation I'm quoting here :</p>\n\n<blockquote>\n <ol>\n <li>Backup and/or rename the original Ambiance theme.</li>\n <li>If y...
null
null
null
null
null
37629
1
null
2011-04-28T18:25:34.077
23
29188
<p>Unity won't run on my new Ubuntu 11.04 install (with a Nvidia GeForce GO 7400). Ubuntu classic desktop works though, I tried all different drivers provided in the repositories. </p> <p>Doing <kbd>System</kbd> → <kbd>Administration</kbd> → <kbd>Additional Drivers</kbd> gives me a warning : </p> <blockquote> <p>This driver is activated but not currently in use.</p> </blockquote> <p>I even tried the Nvidia driver from the official Homepage.</p> <p>After some googling, I found the tool <code>/usr/lib/nux/unity_support_test -p</code> which tells me that my card is blacklisted. The other tests show a green yes.</p> <p>Is this a bug? Or is my card too old which would be pretty surprising for me :P ?</p> <p>Thanks.</p>
15256
170070
2014-05-23T05:57:48.503
2014-05-23T05:57:48.503
Geforce Go 7300/7400 Blacklisted, Can I Still Run Unity?
[ "11.04", "unity", "nvidia" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>You can actually try unity-2D:</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/21686/how-do-i-install-the-unity-2d-desktop\">How do I install and switch to the Unity 2D desktop?</a></li>\n</ul>\n", "commentCount": "1", "comments": [ { "creatio...
null
null
null
null
null
37630
1
37631
2011-04-28T18:26:09.373
2
520
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/22747/how-to-upgrade-from-ubuntu-10-10-to-11-04">How to upgrade from Ubuntu 10.10 to 11.04?</a> </p> </blockquote> <p>I wonder, is it safe upgrade 10.10 to 11.04, probably sometimes upgrade gives problems...</p>
3005
-1
2017-04-13T12:23:09.107
2011-04-28T19:22:02.547
Upgrade 10.10 to 11.04
[ "11.04", "upgrade" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>In general, the answer is yes. For most people the update process will work seamlessly.</p>\n\n<p>There are however always risks. A driver in the new version could be not working as good with your hardware as the previous version. Or something in the upgrade process could be going wrong.</p>\n\n<p>For package conflicts you don't have to worry. If they occur, the upgrade will just stop and restore your system.</p>\n\n<p>If you are talking about a great number of pc's (so, in a company) it is off course smart to test it on your hardware configurations and in your environment instead of blindly updating the first day.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T18:35:00.963", "id": "37631", "lastActivityDate": "2011-04-28T18:35:00.963", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1418", "parentId": "37630", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>In general, the answer is yes. For most people the update process will work seamlessly.</p>\n\n<p>There are however always risks. A driver in the new version could be not working as good with your hardware as the previous version. Or something in the upgrade process could be ...
null
null
2011-10-09T00:45:57.080
null
null
37632
1
null
2011-04-28T18:35:16.680
81
150124
<p>Are there any alternatives to Microsoft Office Visio for Ubuntu?</p>
3005
169736
2013-11-29T17:00:39.577
2020-12-09T09:10:06.683
Is there an alternative to Microsoft Office Visio?
[ "software-recommendation", "visio" ]
14
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Install <a href=\"http://packages.ubuntu.com/Dia\" rel=\"nofollow noreferrer\">Dia</a> <a href=\"http://apt.ubuntu.com/p/Dia\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"Install Dia\"></a> using the Ubuntu Software Centre.</p>\n", "co...
null
null
null
null
null
37639
1
37675
2011-04-28T19:00:42.613
1
1804
<p>I tried to upgrade 10.04 -> 11.04. Long story short, i had to terminate the upgrade process, and now i can't start it again. It says different stuff about broken packages, dependencies, and i have no idea how to fix this. Here's what i've tried:</p> <pre><code>You have 2 broken packages on your system! Use the "Broken" filter to locate them. </code></pre> <p>Ok, i located them, tried to mark for reinstall, removal, etc, but i cannot apply changes:</p> <pre><code>Could not apply changes! Fix broken packages first. </code></pre> <p>What should i do now? </p> <p>Also i tried:</p> <pre><code>ilya@ilya-X38-DQ6:~$ sudo apt-get upgrade -f Reading package lists... Done Building dependency tree Reading state information... Done Correcting dependencies... failed. The following packages have unmet dependencies: libc6 : Depends: libc-bin (= 2.12.1-0ubuntu10.2) but 2.13-0ubuntu13 is installed libnih1 : Depends: libc6 (&gt; 2.13~) but 2.12.1-0ubuntu10.2 is installed E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages. E: Unable to correct dependencies </code></pre>
14462
235
2011-04-28T21:31:57.877
2011-04-28T21:31:57.877
Tried to upgrade from 10.04 -> 11.04, how to fix broken packages?
[ "upgrade" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You said that you tried to upgrade from 10.04 straight to 11.04. Please can you confirm that you upgraded to 10.10 first before upgrading to 11.04? If you didn't, then this is you key problem. The correct upgrade path is 10.04 --> 10.10 --> 11.04.</p>\n\n<p>If you havent upgraded through the correct upgrade path, then restore from a backup image. If you havent got a backup then boot from a live CD and copy to a USB stick the most valuable data from your hard-drive. Then reinstall a fresh 11.04 image.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-29T03:57:49.080", "id": "41839", "postId": "37675", "score": "0", "text": "Yes, 10.10 was skipped. Do I have to format partition and perform clean install, or i can just install 11.04 over 10.04 and hope my data will be safe?", "userDisplayName": null, "userId": "14462" }, { "creationDate": "2011-04-29T07:52:04.237", "id": "41875", "postId": "37675", "score": "0", "text": "Ilya - Unless you partitioned your drive previously with a separate /home partition, your data will not be safe. Backup via a live CD to a USB stick/drive is strongly recommended. When installing AND assuming ubuntu is the only OS, when prompted, dont do a side-by-side install. Use the option to erase the entire disk.", "userDisplayName": null, "userId": "14356" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T20:30:23.560", "id": "37675", "lastActivityDate": "2011-04-28T20:45:38.093", "lastEditDate": "2011-04-28T20:45:38.093", "lastEditorDisplayName": null, "lastEditorUserId": "14356", "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "37639", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You said that you tried to upgrade from 10.04 straight to 11.04. Please can you confirm that you upgraded to 10.10 first before upgrading to 11.04? If you didn't, then this is you key problem. The correct upgrade path is 10.04 --> 10.10 --> 11.04.</p>\n\n<p>If you havent u...
null
null
null
null
null
37641
1
37649
2011-04-28T19:05:56.503
5
92
<p>I'm using Launchpad to host the code for my masters project and would like to host file that are ancillary to the project, such as documentation in PDF format, alongside the code. I've been looking around my project page but have been unable to find anything that looks like it will do this. Is there a 'file upload' mechanism built into Launchpad, or do I simply have to push them out as a branch of their own?</p>
null
1992
2011-09-14T22:02:13.547
2011-09-14T22:02:13.547
Hosting files, such as PDFs, alongside your code on Launchpad
[ "programming", "development", "launchpad" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Just push them as you would any regular file. I don't know of any file hosting mechanism on Launchpad, but then, it's not likely to find such a thing on any other code hosting site either.</p>\n\n<p>If you create a new branch though, you can push just about any file type there.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T19:15:47.250", "id": "37649", "lastActivityDate": "2011-04-28T19:15:47.250", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "37641", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Just push them as you would any regular file. I don't know of any file hosting mechanism on Launchpad, but then, it's not likely to find such a thing on any other code hosting site either.</p>\n\n<p>If you create a new branch though, you can push just about any file type ther...
null
null
null
null
user2405
37642
1
37646
2011-04-28T19:08:11.010
0
76
<p>I'm going through the contents of <code>.config/gnome-settings/saved-session</code> per <a href="https://askubuntu.com/questions/37521/review-edit-startup-programs-rembered-by-remember-currently-running-applicatio/37533#37533">Review / edit startup programs rembered by &quot;Remember Currently Running Applications&quot;</a> and for the most part, I know what I'm looking at: Skype, Firefox, Thunderbird, Pidgin, Compiz. There's a .desktop that launches <code>slab</code> however that is total greek to me:</p> <pre><code>Name=slab Comment=Client 10569c3d37c1bbff11303905894371800000041980039 which was automatically saved Icon=system-run Type=Application StartupNotify=true X-GNOME-Autostart-startup-id=10569c3d37c1bbff11303905894371800000041980039 Exec=slab --sm-config-prefix /slab-uQ6GWK/ --sm-client-id 10569c3d37c1bbff11303905894371800000041980039 --screen 0 </code></pre> <p>I tried looking around in the Ubuntu Package Manager for a hint, but there's no package named "slab" there. So I'm wondering: what is this?</p>
13049
-1
2017-04-13T12:24:11.043
2017-02-25T21:39:51.543
What is this "slab" that I am seeing in my session file?
[ "10.04", "startup", "session" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Just a guess but did you per chance install <a href=\"https://launchpad.net/ubuntu/+source/gnome-main-menu\" rel=\"nofollow noreferrer\">gnome-main-menu</a> at some point? It was known as \"the slab\" and depends on libslab.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-28T19:15:27.760", "id": "41661", "postId": "37646", "score": "0", "text": "I did indeed, I'm sure that's it.", "userDisplayName": null, "userId": "13049" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T19:11:28.660", "id": "37646", "lastActivityDate": "2017-02-25T21:39:51.543", "lastEditDate": "2017-02-25T21:39:51.543", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "37642", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Just a guess but did you per chance install <a href=\"https://launchpad.net/ubuntu/+source/gnome-main-menu\" rel=\"nofollow noreferrer\">gnome-main-menu</a> at some point? It was known as \"the slab\" and depends on libslab.</p>\n", "commentCount": "1", "comments": [...
null
null
null
null
null
37648
1
null
2011-04-28T19:15:02.213
1
880
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/9865/how-can-i-configure-unitys-launcher-auto-hide-behavior">How can I configure Unity&#39;s launcher auto-hide behavior?</a> </p> </blockquote> <p>Hey,</p> <p>I alway will see may menu bar on the left site. So I can switch faster between programms. In the Ubuntu Netbookremix 10.04 it was no prblem. But now the status bar is hide by default and i cant find a way to change it. so is there a way to change?</p>
15267
-1
2017-04-13T12:23:28.223
2011-04-28T19:24:41.220
How can I set up that the menu bar on the left is always shown?
[ "11.04", "unity", "launcher" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Install CCSM (CompizConfig Settings Manager) from the Software Center. Open it and find the Unity plugin. There's a section in the Unity settings called Hide Launcher which is set to \"Dodge Windows\" by default. You can set it to \"Never\"</p>\n", "commentCount": "0", ...
null
null
2011-04-28T20:17:46.890
null
null
37651
1
37727
2011-04-28T19:16:05.250
2
10831
<p>I previously had ubuntu 10.10 installed and upgraded to 11.04. However, desktop is same 10.10 (gnome) as despite the upgrade. How can I disable the Gnome and activate Unity instead?</p>
15261
41
2011-04-29T14:58:27.730
2011-06-26T21:39:51.330
How can I activate Unity?
[ "11.04", "unity", "gnome", "nvidia" ]
4
8
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T19:26:16.057", "id": "41665", "postId": "37651", "score": "0", "text": "I've been giving 11.04 a test run this evening. I was pleasantly surprised to see that it's just good old GNOME that I've come to know and love!", "userDisplayName": null, "userId": "124...
{ "accepted": true, "body": "<p>You should be able to activate the NVIDIA Driver in the Additional Drivers Window available when you login as Ubuntu Classic and navigate to System > Administrator > Additional Drivers</p>\n\n<p><img src=\"https://i.stack.imgur.com/BTZmm.png\" alt=\"enter image description here\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T22:12:20.110", "id": "37727", "lastActivityDate": "2011-05-02T02:58:33.803", "lastEditDate": "2011-05-02T02:58:33.803", "lastEditorDisplayName": null, "lastEditorUserId": "3889", "ownerDisplayName": null, "ownerUserId": "14356", "parentId": "37651", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Unity is a plugin for Compiz Fusion. It works well with Gnome, actually I don't think it works with anything rather than Gnome (someone might want to follow up on this).</p>\n\n<p>To enable Unity, you have to enable the plugin in your Compiz settings. I'd suggest an app calle...
null
null
null
null
null
37654
1
37668
2011-04-28T19:20:34.237
13
25970
<p>I tried turning the shadows off with CCSM, but it does not work ;/ </p> <p>System info:</p> <p>Ubuntu 11.04 NN x64 desktop, HP ProBook 4520s, Unity</p>
2905
235
2012-01-25T17:35:50.513
2016-09-02T05:23:55.063
How can I remove window shadows in Unity?
[ "unity", "compiz" ]
7
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>I think you have to choose a theme other than Ambiance or Radiance, because those override compiz's shadow settings.</p>\n\n<p>If you <em>really</em> want to use the Ambiance borders without shadows:</p>\n\n<ol>\n<li>Create a copy of Ambiance: <code>cp -R /usr/share/themes/Ambiance ~/.themes</code></li>\n<li>open <code>~/.themes/Ambiance/metacity-1/metacity-theme-1.xml</code> and remove all of the <code>&lt;shadow&gt;</code> tags. </li>\n<li>Open up appearance preferences and select your new, duplicate \"Ambiance\" theme.</li>\n<li>Disable shadows in CCSM</li>\n</ol>\n\n<p><strong>Update</strong> 2015-01-21 In recent versions of Ubuntu you'll need to use Ubuntu Tweak Tool in step 3, since recent versions of the control center don't support custom themes.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T19:50:14.573", "id": "37668", "lastActivityDate": "2015-01-21T22:40:00.847", "lastEditDate": "2015-01-21T22:40:00.847", "lastEditorDisplayName": null, "lastEditorUserId": "194", "ownerDisplayName": null, "ownerUserId": "194", "parentId": "37654", "postTypeId": "2", "score": "15" }
[ { "accepted": null, "body": "<ul>\n<li><p>Install <strong>CompizConfig Settings Manager</strong></p>\n<p><code>sudo apt-get install compizconfig-settings-manager</code></p>\n</li>\n<li><p>Launch it by searching from the dash in\n<strong>Unity</strong>, or <strong>Preferences &gt; CompizConfig Settings Manag...
null
null
null
null
null
37656
1
37667
2011-04-28T19:24:07.320
34
11754
<p>When I press the X button in Banshee's title bar, it hides, but the music continues playing. However, from time to time I need to quit Banshee completely. How can I do that? (pressing "close" from the menu bar doesn't help)</p> <p>I know I could go for running <code>killall banshee</code> but that's not an elegant solution. Any other ideas? Is it even possible?</p> <p>EDIT: After first few answers I noticed I must underline, I do <strong>not</strong> want to stop the music playback, I do <strong>not</strong> want to hide Banshee's window. What I want is to quit <strong>Banshee</strong> totally, in order f.e. to start JACK audio server (and for example restart Banshee).</p>
705
705
2011-04-28T21:30:22.750
2013-04-18T18:18:58.580
How do I quit Banshee?
[ "sound", "banshee", "indicator-sound" ]
5
2
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T22:43:51.733", "id": "41746", "postId": "37656", "score": "3", "text": "I reworded my answer a bit to make it more clear. Because of the Sound Menu specification, you need to pause Banshee, then press 'close' -- which is why everyone is telling you to press pause. ...
{ "accepted": true, "body": "<p>This behavior -- which came about as a result of <a href=\"https://bugzilla.gnome.org/show_bug.cgi?id=634895\">this bug report</a> -- is a design decision based on the <a href=\"https://wiki.ubuntu.com/SoundMenu#Music_player_section\">Ubuntu Sound Menu specification</a>. To quote from the spec:</p>\n\n<blockquote>\n <p>A compliant player should also keep playing if you close its window while it is playing; exit if you close its window while it is not playing...</p>\n</blockquote>\n\n<p>If you have Banshee's sound menu integration turned on, pressing the 'x' won't quit the program while music is playing. <strong>To quit Banshee, you must first pause the music.</strong></p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-04-28T21:24:34.673", "id": "41713", "postId": "37667", "score": "1", "text": "I do know that! It's cool it hides instead of closing, but in some cases I need to quit the application totally.", "userDisplayName": null, "userId": "705" }, { "creationDate": "2011-04-28T22:32:07.203", "id": "41738", "postId": "37667", "score": "0", "text": "Re-read the last line of my answer (I'll make it bold so it's more clear). You can't quit Banshee while music is playing, so first you need to pause the music, then press the 'x'.", "userDisplayName": null, "userId": "2079" }, { "creationDate": "2011-04-29T18:18:22.847", "id": "42015", "postId": "37667", "score": "1", "text": "That's it! I missed the fact the playback must be paused first. Great thanks, that solved my problem entirely :)", "userDisplayName": null, "userId": "705" }, { "creationDate": "2011-04-29T18:48:12.597", "id": "42029", "postId": "37667", "score": "0", "text": "No worries. It's my fault for giving you a long-winded answer full of background information, and hiding the actual solution in the last sentence. :) Anyway, glad I could help.", "userDisplayName": null, "userId": "2079" }, { "creationDate": "2011-07-15T05:38:51.307", "id": "59500", "postId": "37667", "score": "2", "text": "I think that there should still be an option to quit. Ctrl-W and the close-button (x) close the window, but IMHO, the quit menu item and Ctrl-Q shortcut should remain...", "userDisplayName": null, "userId": "983" }, { "creationDate": "2011-07-15T13:15:24.453", "id": "59553", "postId": "37667", "score": "1", "text": "@Simon, I agree completely. I think it's confusing to have the same button/menu-item behave differently in different situations (music playing vs music paused).", "userDisplayName": null, "userId": "2079" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T19:45:26.047", "id": "37667", "lastActivityDate": "2011-07-15T13:18:41.297", "lastEditDate": "2011-07-15T13:18:41.297", "lastEditorDisplayName": null, "lastEditorUserId": "2079", "ownerDisplayName": null, "ownerUserId": "2079", "parentId": "37656", "postTypeId": "2", "score": "28" }
[ { "accepted": null, "body": "<p>See the little sound icon on your top right in the panel? Click on it and hit pause ;)</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-04-28T21:27:02.863", "id": "41717", "postId": "37660", "score": "0", ...
null
null
null
null
null
37662
1
45894
2011-04-28T19:36:00.717
2
3311
<p>In October 2010, Otto Greenslade of the Canonical Design Team has published the so called Ubuntu emoticons in <a href="http://design.canonical.com/2010/10/ubuntu-emoticons/" rel="nofollow">a post on the Design Blog</a>.</p> <p><a href="http://www.omgubuntu.co.uk/2010/10/ubuntu-style-emoticons-for-pidgin/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3a%20d0od%20%28Omg!%20Ubuntu!%29" rel="nofollow">In a post on OMG! Ubuntu!</a> it was explained how you could set them for Pidgin, which is not the default IM client in Ubuntu 11.04 at least.</p> <p>How can I do the same for Empathy so that the program uses this set of emoticons?</p>
5592
null
null
2011-08-12T14:47:46.437
How do I install the Ubuntu emoticons in Empathy?
[ "empathy", "pidgin", "design", "instant-messaging" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>First, download the .png version of the Ubuntu emoticons from the first link you have provided. Save them wherever you want, though here I will assume they will be in your Downloads folder. Extract after downloading by right-clicking the tar.gz you downloaded and selecting \"Extract here\".</p>\n\n<p>Next, hit <kbd>Alt</kbd>+<kbd>F2</kbd> and type in <code>gksudo nautilus</code>. You will need to provide your password at the prompt. Once Nautilus starts, navigate to the <code>/usr/share/icons/gnome/16x16/emotes</code> directory. You should see all of the default emoticons if you go to the right place.</p>\n\n<p>Open your extracted Ubuntu emoticons in another tab or window, and create a backup of the originals (right-clicking to copy and then pasting back into the same folder should create .png's renamed as copies, which should be enough). Delete the original icons you want to replace, then copy and paste the new icons into the emotes directory. Lastly, rename them so that they have the names of the original icons. To test, start an Empathy chat window and try typing in your new emotes!</p>\n\n<p>Note that the Ubuntu emoticons provided in that blog post are not a complete replacement for all of the default GNOME icons. You will have to pick and choose which ones you want to use, or you can create additional ones on your own as needed. </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-29T19:00:52.360", "id": "45894", "lastActivityDate": "2011-08-12T14:47:46.437", "lastEditDate": "2011-08-12T14:47:46.437", "lastEditorDisplayName": null, "lastEditorUserId": "19490", "ownerDisplayName": null, "ownerUserId": "18612", "parentId": "37662", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>First, download the .png version of the Ubuntu emoticons from the first link you have provided. Save them wherever you want, though here I will assume they will be in your Downloads folder. Extract after downloading by right-clicking the tar.gz you downloaded and selecting \"...
null
null
null
null
null
37663
1
null
2011-04-28T19:40:20.420
3
7172
<p>I just installed 11.04 (with updates/ubuntu extras installed).</p> <p>I am using a Dell Dimension 3000, and it is apparently not capable of running Unity.</p> <p>There was no flickering during the install, but once I rebooted and logged in, it was so bad that everything on the screen was unreadable. Clicking on a menu will cause it to open, but it flickers so as to be unreadable. If you hover over the options, they will be visible for a moment, but it will them continue flickering.</p> <p>If I immediately open Firefox upon login and touch nothing else (no menus, panels, or other windows), then I am able to use Firefox without the flickering, but the panels look fragmented and corrupted.</p> <p>Here are a couple screenshots, which I hope have turned out okay (since as soon as I take the screenshot everything will begin flickering :P).</p> <p><a href="https://i.stack.imgur.com/QzCzG.jpg" rel="nofollow noreferrer">https://i.stack.imgur.com/QzCzG.jpg</a></p> <p>Note that in this second image that the 'Take screenshot' window is actually no longer open--the image just sticks to the screen anyway.</p> <p>My graphics card: </p> <blockquote> <p>00:02.0 VGA compatible controller: Intel Corporation 82865G Integrated Graphics Controller (rev 02)</p> </blockquote> <p>Things I have tried:</p> <ul> <li><p>As soon as I saved the second screenshot, my whole machine froze up. After absolutely no response to anything after ~10 minutes, I unplugged the machine (shudder) and started it up again. Thankfully, Firefox saved my post, and I was able to submit it.</p></li> <li><p>This flickering happens in Ubuntu Classic as well ,and menus flicker.</p></li> <li><p>Adding the phrase "i915.modeset=0" immediately before "quiet splash" did stop the flickering. However, it also changed my Princeton monitor's resolution to 640x460. Should I follow the instructions <a href="http://www.ubuntugeek.com/how-change-display-resolution-settings-using-xrandr.html" rel="nofollow noreferrer">here</a>?</p></li> </ul> <p>Note: my monitor is marked as "Unknown" in the Monitor Settings window. There aren't any other resolutions available in the dropdown.</p> <p>I have succeeded in making the change persistent. I will let you know how fixing the resolution goes.</p> <p>Edit4: The instructions didn't work. Here's the terminal output:</p> <pre><code>jacob@hawaiian-punch:~$ xrandr xrandr: Failed to get size of gamma for output default Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480 default connected 640x480+0+0 0mm x 0mm 640x480 0.0* 1280x1024_60.00 (0xf9) 109.0MHz h: width 1280 start 1368 end 1496 total 1712 skew 0 clock 63.7KHz v: height 1024 start 1027 end 1034 total 1063 clock 59.9Hz jacob@hawaiian-punch:~$ cvt 1280 1024 # 1280x1024 59.89 Hz (CVT 1.31M4) hsync: 63.67 kHz; pclk: 109.00 MHz Modeline "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync jacob@hawaiian-punch:~$ xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync xrandr: Failed to get size of gamma for output default X Error of failed request: BadName (named color or font does not exist) Major opcode of failed request: 150 (RANDR) Minor opcode of failed request: 16 (RRCreateMode) Serial number of failed request: 19 Current serial number in output stream: 19 jacob@hawaiian-punch:~$ </code></pre> <p>Just tried</p> <pre><code>jacob@hawaiian-punch:~$ xrandr --rmmode "1280x1024_60.00" xrandr: Failed to get size of gamma for output default </code></pre> <p>Tried a lower resolution, that did not work either</p> <pre><code>jacob@hawaiian-punch:~$ xrandr xrandr: Failed to get size of gamma for output default Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480 default connected 640x480+0+0 0mm x 0mm 640x480 0.0* 1280x1024_60.00 (0x10d) 109.0MHz h: width 1280 start 1368 end 1496 total 1712 skew 0 clock 63.7KHz v: height 1024 start 1027 end 1034 total 1063 clock 59.9Hz 1024x768_60.00 (0x110) 63.5MHz h: width 1024 start 1072 end 1176 total 1328 skew 0 clock 47.8KHz v: height 768 start 771 end 775 total 798 clock 59.9Hz jacob@hawaiian-punch:~$ cvt 1024 768 # 1024x768 59.92 Hz (CVT 0.79M3) hsync: 47.82 kHz; pclk: 63.50 MHz Modeline "1024x768_60.00" 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync jacob@hawaiian-punch:~$ xrandr --newmode "1024x768_60.00" 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync xrandr: Failed to get size of gamma for output default X Error of failed request: BadName (named color or font does not exist) Major opcode of failed request: 150 (RANDR) Minor opcode of failed request: 16 (RRCreateMode) Serial number of failed request: 19 Current serial number in output stream: 19 jacob@hawaiian-punch:~$ </code></pre> <p><strong>I found a workaround.</strong></p> <p>I undid the change to GRUB, and installed Unity 2d. There is no flickering of any kind in Unity 2d, and the resolution is just right. However, feel free to ask me anything else if someone would like to know more about the bug.</p>
15263
15263
2011-04-29T00:52:07.553
2012-02-26T15:42:05.733
Screen, windows, and menus are flickering horribly
[ "11.04", "display", "flicker" ]
2
7
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T19:59:58.520", "id": "41682", "postId": "37663", "score": "0", "text": "Please can you edit your question with the following answers: Suggest change your session to ubuntu classic (bottom of the screen on logon page). Do you have flickering menus? What is your gra...
null
[ { "accepted": null, "body": "<p>OK - that is an old graphics card which will not support Unity. Dont worry though, you can try unity by installing Unity-2d through the Software Center. </p>\n\n<p>More of a problem though is the flickering with ubuntu classic.</p>\n\n<p>This is a worth a try -</p>\n\n<p>Re...
null
null
null
null
null
37669
1
null
2011-04-28T19:50:57.250
0
165
<p>I asked this <a href="https://askubuntu.com/questions/37580/increasing-ubuntu-partition-space">question</a> earlier. I opted for mearging the Ubuntu partition with the free partition, since I was not sure with the size for /home. Thing went bad GRUB got corrupted, may be because Ubuntu partition UUID was changed due to partition deletion. After googling for some time I got that problem fixed using <a href="http://www.daniweb.com/community-center/it-professionals-lounge/threads/85926/417880#post417880" rel="nofollow noreferrer">this</a> post but now I am not able to view my win7 partition in linux.</p> <p>Here is my Partition table configuration(from gpartd):</p> <p><img src="https://i.stack.imgur.com/TVSHw.png" alt="enter image description here"></p> <p>Now when I try to mount win7 drive I get following error:</p> <blockquote> <p>Error mounting: mount exited with exit code 1: helper failed with: mount: according to mtab, /dev/sda5 is already mounted on / mount failed</p> </blockquote> <p>Another problem that I am at loss of 3GB of space on sda5 (ubuntu) partition. gparted is showing its a 35 GB partition but Disk utility shows its a 38 GB partition as shown bellow: <img src="https://i.stack.imgur.com/pa9n7.png" alt="enter image description here"> Why is it so.How do I recover it.</p> <p><strong>EDIT:</strong></p> <p>Contents of /etc/fstab: <img src="https://i.stack.imgur.com/D45rT.png" alt="enter image description here"></p>
11645
-1
2017-04-13T12:24:19.513
2011-04-29T04:06:46.373
Problem mounting Drive
[ "partitioning", "gparted" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T20:04:58.003", "id": "41686", "postId": "37669", "score": "0", "text": "Would you mind putting up a print out of /etc/fstab? The `GParted` graphic above says that the mount points for both Ubuntu and Win7 are /. You can't mount them both there simultaneously, but yo...
null
[ { "accepted": null, "body": "<p>I think you can fix it with <a href=\"http://apt.ubuntu.com/p/mountmanager\" rel=\"nofollow\">Mount-Manager</a>.<br>\nBut first backup your fstab (<code>sudo cp /etc/fstab /etc/fstab.bak</code>). </p>\n\n<p>You have not lost 3GB, this is how each software interpret the space...
null
null
null
null
null
37676
1
37694
2011-04-28T20:32:18.587
4
729
<p>I am currently learning Python and I would like to study the source code of a well written all Python application. Can you point me in the right direction?</p> <p>I am particularly interested in database access and Web programming.</p>
15198
1067
2011-04-28T20:49:30.973
2011-04-28T21:11:25.693
Good python application for source code studying
[ "python" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2017-03-24T10:13:58.190", "id": "1403858", "postId": "37676", "score": "0", "text": "Could you please explain how your question relates to Ubuntu? Otherwise it’s off topic on Ask**Ubuntu**. General programming question would be better over on [SO].", "userDisplayName": nul...
{ "accepted": true, "body": "<p>You may want to check out Django, a very popular content management system. Plenty of web application and database access code to study in that app, including good practices like database agnosticism and modularity.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-28T21:22:47.543", "id": "41712", "postId": "37694", "score": "0", "text": "Django - I should have thought of that! Thank you very much!", "userDisplayName": null, "userId": "15198" }, { "creationDate": "2011-04-29T16:21:21.450", "id": "41973", "postId": "37694", "score": "0", "text": "You can add great documentation and great test cases to the mix. I use django at work daily, and reading its source code to resolve some doubt is a joy: clear, commented, well structured...", "userDisplayName": null, "userId": "211" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T21:11:25.693", "id": "37694", "lastActivityDate": "2011-04-28T21:11:25.693", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15280", "parentId": "37676", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>You may want to check out Django, a very popular content management system. Plenty of web application and database access code to study in that app, including good practices like database agnosticism and modularity.</p>\n", "commentCount": "2", "comments": [ { ...
null
null
2017-03-26T12:47:07.057
null
null
37682
1
null
2011-04-28T20:50:30.587
0
689
<p>I had a win 7 (32 bit) on dell vostro 1500(T9300cpu). Now I installed natty and restart but no grub were displayed.</p> <p>I give 8Gb to root and 2Gb to swap and about 8.5Gb to home section. Root and home are ext4 partition format.</p> <p>What's the problem? How can I fix it?</p>
15276
235
2011-04-28T21:34:15.410
2013-02-06T15:07:52.577
No grub display after installing aside Windows 7
[ "11.04", "installation", "windows-7", "grub2" ]
3
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T20:54:58.930", "id": "41704", "postId": "37682", "score": "0", "text": "Do you remember where you installed GRUB? Was it to the MBR?", "userDisplayName": null, "userId": "12473" } ]
null
[ { "accepted": null, "body": "<p>Try editing the main GRUB configuration file (<code>/etc/default/grub</code>) and changing <code>GRUB_TIMEOUT</code> to a different value.</p>\n\n<p>One way to edit the file is to run:</p>\n\n<pre><code>gksu gedit /etc/default/grub\n</code></pre>\n\n<p>You can also try tappin...
null
null
null
null
null
37687
1
37697
2011-04-28T21:04:35.400
3
259
<p>I want to configure a shared computer to display public updates from a specific Twitter account and hashtag. How can I do this without having to grant Gwibber write permissions to my own Twitter account?</p> <p>What I want to avoid is this:</p> <p><img src="https://i.stack.imgur.com/7Tr4a.png" alt="Gwibber"></p> <p><img src="https://i.stack.imgur.com/21tuh.png" alt="Twitter"></p>
1859
1859
2011-05-04T02:23:56.317
2011-05-04T02:23:56.317
Can I receive Twitter updates without granting write permissions for my Twitter account?
[ "11.04", "gwibber", "notify-osd", "twitter" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Currently there is no Read Only (via the API) for Gwibber and Twitter. Gwibber uses the OAuth method to associate your twitter account and push/pull data to and from Twitter.</p>\n\n<p>If you page isn't protected you can use your RSS feed and a Desktop <a href=\"/questions/tagged/rss\" class=\"post-tag\" title=\"show questions tagged 'rss'\" rel=\"tag\">rss</a> Aggregator for Read Only mode.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T21:11:58.610", "id": "37697", "lastActivityDate": "2011-04-28T21:11:58.610", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "37687", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Gwibber is a full featured twitter client and does not currently have a \"read only\" mode.</p>\n\n<p>You will need to find another application that has a read only mode (I know of a web app that is read only, but no desktop apps). Or, you can ask gwibber developers to add th...
null
null
null
null
null
37688
1
null
2011-04-28T21:06:43.747
1
374
<p>Help! I deleted the application launcher in Unity, along with the Files and Folders launcher! How do I get them back?</p>
15281
235
2011-05-01T19:08:11.327
2017-02-25T21:56:09.680
Erased Application and Files from the launcher, how do I get them back?
[ "11.04", "unity", "lenses" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The only way you can remove those two launchers (which are called lenses) is to remove their packages.</p>\n\n<p>You need to ensure that these packages are installed (use <code>apt-get</code> or find them in Software Center:</p>\n\n<ul>\n<li><a href=\"https://launchpad.net/ub...
null
null
null
null
null
37690
1
null
2011-04-28T21:08:00.593
0
2492
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/11993/how-do-i-install-bcm4312-wireless-drivers">How do I install BCM4312 wireless drivers?</a> </p> </blockquote> <p>Below are the results for <code>sudo lshw -c network</code> command. I believe "UNCLAIMED" refers to missing drivers. </p> <pre><code>*-network UNCLAIMED description: Network controller product: BCM4311 802.11b/g WLAN vendor: Broadcom Corporation physical id: 0 bus info: pci@0000:0c:00.0 version: 01 width: 32 bits clock: 33MHz capabilities: pm msi pciexpress bus_master cap_list configuration: latency=0 resources: memory:f1ffc000-f1ffffff *-network description: Ethernet interface product: NetXtreme BCM5755M Gigabit Ethernet PCI Express vendor: Broadcom Corporation physical id: 0 bus info: pci@0000:09:00.0 logical name: eth0 version: 02 serial: 00:1c:23:2f:06:45 capacity: 1Gbit/s width: 64 bits clock: 33MHz capabilities: pm vpd msi pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=tg3 driverversion=3.116 firmware=5755m-v3.29 latency=0 link=no multicast=yes port=twisted pair resources: irq:45 memory:f1ef0000-f1efffff </code></pre>
15279
-1
2017-04-13T12:24:49.530
2011-06-09T01:59:23.367
Can't get wireless card to be recognized - Dell D630 - Broadcom BCM4311
[ "11.04", "drivers", "dell", "broadcom" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The STA driver in 11.04 doesn't work due to a kernel issue. You will have to install the B43xx firmware. Just install firmware-b43-installer from the software center or synaptic. </p>\n\n<p>You can also do it from the command line.</p>\n\n<p>sudo apt-get install firmware-b4...
null
null
2011-06-09T02:00:10.007
null
null
37691
1
null
2011-04-28T21:09:29.110
12
5744
<p>How do I remove top bar on secondary monitor??</p>
2900
235
2011-10-21T01:39:33.697
2019-05-26T05:26:43.207
How do I remove top panel on dual screen on secondary monitor?
[ "unity", "multiple-monitors" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>This is currently not supported. I think it's supposed to be an feature due to the global menu thing.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-08-22T17:26:04.100", "id": "66308", "postId": "38724", "score...
null
null
null
null
null
37692
1
37852
2011-04-28T21:09:45.237
12
39288
<p>I've got a brand new laptop with a 128GB SSD drive. I read that aligning the partitions to match the Erase Block Size of the SSD is important. I followed William Scott's guide <a href="http://williamscott.me/blog/2010/12/ssd-tweaks-linux-align-partitions/">SSD Tweaks in Linux and Aligning Partitions</a> and my partitions ended up being:</p> <pre><code>$ sudo fdisk -lu /dev/sda Disk /dev/sda: 128.0 GB, 128035676100 bytes 32 heads, 32 sectors/track, 244208 cylinders, total 250069680 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00037bd2 Device Boot Start End Blocks Id System /dev/sda1 * 1024 206847 102912 83 Linux /dev/sda2 206848 16985087 8389120 82 Linux swap / Solaris /dev/sda3 16985088 250068991 116541952 83 Linux </code></pre> <p>Then I installed Ubuntu Natty and specified the partitions manually so that <code>/dev/sda1</code> became the <code>/boot</code> partition formatted with ext2, <code>/dev/sda2</code> the swap and <code>/dev/sda3</code> the <code>/</code> formatted with ext4. After the installation the thing didn't boot, and I ended up in the grub-rescue console which doesn't make any sense to me. It's giving me:</p> <pre><code>error: invalid arch independent ELF magic. grub rescue&gt; </code></pre> <p>Have I done some mistakes during my installation? How do I solve the issue with grub-recovery?</p>
15275
15275
2012-05-04T10:10:44.453
2012-10-14T13:27:15.310
GRUB: "invalid arch independent ELF magic" after install on SSD
[ "grub2", "partitioning", "filesystem", "ssd" ]
2
3
CC BY-SA 3.0
[ { "creationDate": "2011-04-29T06:02:54.780", "id": "41856", "postId": "37692", "score": "0", "text": "can you seperate the answer from your question?", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2011-04-29T06:14:19.787", "id": "41859", "postId": "3769...
{ "accepted": true, "body": "<p>Boot into Live CD and run:</p>\n\n<pre><code>sudo mount /dev/sda3 /mnt\nsudo mount /dev/sda1 /mnt/boot\nsudo grub-install --root-directory=/mnt /dev/sda\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-07-19T04:04:45.177", "id": "60135", "postId": "37852", "score": "3", "text": "For EFI machines, you'll need to install grub-efi while booted in the live-CD, otherwise you'll get some puzzling errors.", "userDisplayName": "user1614", "userId": null }, { "creationDate": "2012-06-22T09:52:55.060", "id": "187295", "postId": "37852", "score": "1", "text": "Just want to point out that `--boot-directory` (`b` instead of `r`) as written elsewhere does *not* work. Just got kicked into a different looking grub shell.", "userDisplayName": null, "userId": "10371" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T06:38:02.113", "id": "37852", "lastActivityDate": "2011-04-29T06:38:02.113", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15275", "parentId": "37692", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>Boot into Live CD and run:</p>\n\n<pre><code>sudo mount /dev/sda3 /mnt\nsudo mount /dev/sda1 /mnt/boot\nsudo grub-install --root-directory=/mnt /dev/sda\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-07-19T04:04:45.177", ...
null
null
2014-01-22T20:22:24.977
null
null
37693
1
37720
2011-04-28T21:10:53.707
8
5212
<p>Please can someone explain how to add a launcher icon in Unity (along the left side) for Vim - or any other terminal-based application?</p> <p>I press alt+f2, type <code>vim</code>, and drag the icon to the left ... but the launcher does not accept the dragged item.</p> <p>Assuming that to launch vim in a terminal I should launch <code>gnome-terminal -e vim</code>, my question is how do I get this command as a button in the Unity launcher?</p>
5995
5995
2011-04-28T21:19:29.983
2015-10-28T01:51:57.007
Add Vim to Unity launcher?
[ "unity", "launcher", "vim" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<h2>Create Launcher for Terminal Application</h2>\n<p>Right click on the desktop and select <em>Create Launcher</em> from the menu:</p>\n<p><img src=\"https://i.stack.imgur.com/zYvHa.png\" alt=\"enter image description here\" /></p>\n<p>Choose <em>Application in Terminal</em> and give the desired name and command to run (in this case <code>vim</code>).</p>\n<p>Then simply drag and drop this icon on the Unity Launcher:</p>\n<p><img src=\"https://i.stack.imgur.com/1Ugs4.png\" alt=\"enter image description here\" /></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-04-28T22:05:35.793", "id": "41729", "postId": "37720", "score": "0", "text": "It seems that the icon is always the terminal icon, is there a way to change it to the standard Vim icon?", "userDisplayName": null, "userId": "5995" }, { "creationDate": "2011-04-28T22:54:19.963", "id": "41754", "postId": "37720", "score": "0", "text": "@Greg: for now I have not yet found a way to use another icon (edited my answer).", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-04-28T22:56:22.990", "id": "41755", "postId": "37720", "score": "1", "text": "@Greg you can choose an icon by clicking the button with the bouncy launcher icon on it. A file dialog will open asking you to choose the image.", "userDisplayName": null, "userId": "667" }, { "creationDate": "2011-04-29T07:20:26.943", "id": "41869", "postId": "37720", "score": "0", "text": "@dv3500ea: we do know that - this fixes the icon on the desktop but still on the Unity Launcher the bouncy icon keeps to be displayed. Replace Unity, reboot, change localization of .desktop file, using a different (svg) icon does not help. Unity Launcher seems to remember that this was a custom launcher and refuses to use another icon. :(", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-04-29T08:49:05.947", "id": "41885", "postId": "37720", "score": "0", "text": "That's strange, it works for me. You should probably file a bug about this.", "userDisplayName": null, "userId": "667" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T21:45:12.363", "id": "37720", "lastActivityDate": "2011-04-28T22:52:35.487", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "3940", "parentId": "37693", "postTypeId": "2", "score": "10" }
[ { "accepted": null, "body": "<p>This one should work</p>\n\n<p><code>gnome-terminal -e vim</code></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-28T21:18:24.337", "id": "41710", "postId": "37702", "score": "0", "text": "what do I d...
null
null
null
null
null
37695
1
null
2011-04-28T21:11:27.633
0
1297
<p>I'm trying to change contrast/brightness on my monitor, thus I downloaded Gnome Color Manager. It says there is no color profile for my monitor. Then I inserted the monitor's driver CD and imported some color profiles from it. However, Gnome Color Manager told me that the profiles I imported are missing information for whole-screen color correction. I tried searching the web for colour profiles with not much luck.</p> <p>On Windows I could easily change the brightness/contrast using the ATI Catalyst Control Center. What can I do with this on Natty? Is there another option? The OSD options of my monitor don't do what I want, they work awkwardly. Measuring color with an expensive device is out of question.</p> <p>The monitor is a Xerox XA3-17.</p>
15282
235
2012-02-04T19:24:36.490
2012-02-04T19:24:36.490
Colour profiles in Gnome Color Manager
[ "11.04", "color-management" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>I use the proprietary ATI driver on Natty. It comes with a Catalyst Control Center that allows me to control brightness, contrast etc. </p>\n\n<p>If you have an ATI graphics card the driver should be easy to install if you go to 'Additional Drivers' in Ubuntu.</p>\n\n<p>I don...
null
null
null
null
null
37696
1
null
2011-04-28T21:11:47.440
2
10331
<p>My aim is to make my Ubuntu machine be a wireless accesspoint using wifi. Of course I found two AskUbuntu questions already treating that; <a href="https://askubuntu.com/questions/19710/setting-up-ubuntu-as-a-wireless-accesspoint">this one</a> and <a href="https://askubuntu.com/questions/1385/how-to-set-up-ubuntu-as-wireless-accesspoint">that one</a>.</p> <p>Nevertheless, as far as I am concerned I would like to set up such a network in the Graphical User Interface (GUI) way. Please avoid solutions with the command line. So a solution suggesting to use Network Manager would be really welcomed.</p> <p>Please name and describe very precisely each step, so I can easily find the equivalent in my own language.</p> <p>Thank you for your answers!</p> <hr> <p>If useful for any, here is the output of <code>sudo lshw -c network</code>:</p> <pre><code> *-network description: Wireless interface product: WiFi Link 5100 vendor: Intel Corporation physical id: 0 bus info: pci@0000:07:00.0 logical name: wlan0 version: 00 serial: XX:XX:XX:XX:XX:XX width: 64 bits clock: 33MHz capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless configuration: broadcast=yes driver=iwlwifi driverversion=3.2.0-24-generic firmware=8.83.5.1 build 33692 ip=192.168.1.127 latency=0 link=yes multicast=yes wireless=IEEE 802.11abgn resources: irq:45 memory:c0800000-c0801fff *-network description: Ethernet interface product: AR8131 Gigabit Ethernet vendor: Atheros Communications Inc. physical id: 0 bus info: pci@0000:09:00.0 logical name: eth0 version: c0 serial: XX:XX:XX:XX:XX:XX capacity: 1Gbit/s width: 64 bits clock: 33MHz capabilities: pm msi pciexpress vpd bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=atl1c driverversion=1.0.1.0-NAPI firmware=N/A latency=0 link=no multicast=yes port=twisted pair resources: irq:47 memory:c0300000-c033ffff ioport:2000(size=128) </code></pre>
5592
-1
2017-04-13T12:24:13.887
2012-11-13T03:52:54.423
How to set Ubuntu as wireless accespoint in the GUI way?
[ "wireless", "network-manager", "gui", "wireless-access-point" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2014-02-20T09:10:40.140", "id": "547879", "postId": "37696", "score": "0", "text": "http://wiki.ubuntuusers.de/WLAN_Router explicitly says that you might want to disable the Networkmanager GUI. There is a german description on how to keep Networkmanager running and have an AP ...
null
[ { "accepted": null, "body": "<p>You can very easily create an ad-hoc WiFi network using NetworkManager, so if the other system you want to connect to it supports that, it's most likely the easiest solution:</p>\n\n<p>Click the NetworkManager icon in the menu, and look for the equivalent of <strong>Create Ne...
null
null
null
null
null
37700
1
37704
2011-04-28T21:12:35.057
7
7698
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/9135/best-way-to-backup-all-settings-list-of-installed-packages-tweaks-etc">Best way to backup all settings, list of installed packages, tweaks, etc?</a> </p> </blockquote> <p>I've heard that I can dump the dpkg package list of currently installed applications, then after I re-install, re-import that list and have apt or dpkg do all the heavy lifting for me getting my apps re-installed. </p> <p>How do i do this?</p>
6807
-1
2017-04-13T12:24:55.353
2011-06-04T15:46:18.323
dump dpkg package list for fresh installation
[ "upgrade", "apt", "dpkg" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>To dump the list of currently installed applications: </p>\n\n<pre><code>dpkg --get-selections &gt;output-file \n</code></pre>\n\n<p>To re-import: </p>\n\n<pre><code>sudo dpkg --set-selections &lt;output-file \nsudo apt-get dselect-upgrade \n</code></pre>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-04-29T01:54:13.580", "id": "41819", "postId": "37704", "score": "1", "text": "The one reason I hate doing this is it messes up the \"automatically installed\" feature of apt where unneeded dependencies can be removed but that may not be a big deal to normal users.", "userDisplayName": null, "userId": "1579" }, { "creationDate": "2015-01-09T17:15:19.997", "id": "788016", "postId": "37704", "score": "0", "text": "Why would it mess it up?", "userDisplayName": null, "userId": "208696" }, { "creationDate": "2015-01-09T18:30:27.943", "id": "788076", "postId": "37704", "score": "3", "text": "@matt because all packages installed with the third command result as manually installed, even if they were automatically installed in the original machine. The command `apt-mark` could be of help here.", "userDisplayName": null, "userId": "2647" }, { "creationDate": "2015-01-09T23:27:59.497", "id": "788218", "postId": "37704", "score": "0", "text": "@enzotib how exactly do you suggest using apt-mark? does this not assume one remembers which packages were automatically installed in the first place?", "userDisplayName": null, "userId": "208696" }, { "creationDate": "2015-01-10T08:01:47.200", "id": "788388", "postId": "37704", "score": "1", "text": "@matt: no, the information about the manual/automatic state of the packages is maintained somewhere in apt files. Also, in one of the answer to the question of which this is supposed to be a duplicate (see at top of page) is indicated `apt-clone` as a better solution to the whole problem we are facing: http://askubuntu.com/questions/9135/how-to-backup-settings-and-list-of-installed-packages/486634#486634", "userDisplayName": null, "userId": "2647" }, { "creationDate": "2015-01-10T14:25:38.210", "id": "788589", "postId": "37704", "score": "0", "text": "Wow, I wonder why apt-clone isn't the most commonly cited answer to being with...", "userDisplayName": null, "userId": "208696" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T21:21:39.713", "id": "37704", "lastActivityDate": "2011-04-29T01:37:25.617", "lastEditDate": "2011-04-29T01:37:25.617", "lastEditorDisplayName": null, "lastEditorUserId": "12943", "ownerDisplayName": null, "ownerUserId": "2647", "parentId": "37700", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>To dump the list of currently installed applications: </p>\n\n<pre><code>dpkg --get-selections &gt;output-file \n</code></pre>\n\n<p>To re-import: </p>\n\n<pre><code>sudo dpkg --set-selections &lt;output-file \nsudo apt-get dselect-upgrade \n</code></pre>\n", "comment...
null
null
2011-06-05T19:50:08.057
null
null
37706
1
null
2011-04-28T21:25:31.677
2
2617
<p>Ubuntu One just released an update to the music app for Android and it says that it will now show embedded album art. I'd like to try this out, but I can't figure out how to embed the album art while ripping the cd. I use Sound Juicer, is there anyway to get this to work?</p>
15285
null
null
2011-04-28T22:57:49.900
Embedding Album Art While Ripping
[ "ubuntu-one", "cd-ripping" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>I don't know if soundjuicer can do it, but if not, I suggest using musicbrainz picard (which is in Ubuntu,) to embed the album art <em>after</em> ripping. Picard is mainly for fixing the music metadata by looking up the files on musicbrainz.org, but you can enable a switch to...
null
null
null
null
null
37707
1
37723
2011-04-28T21:27:20.817
8
1769
<p>Example:</p> <p><img src="https://i.stack.imgur.com/kYVhN.png" alt="enter image description here"> </p> <p>My question is simple. What are the different colors representing in the unity launcher background for each icon. I mean, it seems consistent (firefox is always orange), but it's not jumping out at me what the pattern is. On my screen, it's:</p> <ul> <li>Firefox: <strong>Orange</strong></li> <li>Chrome: <strong>Yellow</strong></li> <li>Terminal: <strong>Grey</strong></li> <li>RDP App: <strong>Blue</strong></li> <li>KeyPassX: <strong>Green</strong></li> <li>NetBeans: <strong>Blue</strong></li> </ul> <p><strong>I'd like to turn it off if possible</strong>, but first I'd like to understand more about it.</p> <p>Any launcher experts?</p>
7056
114
2011-04-28T21:35:09.017
2017-02-25T22:15:31.687
What are the different colors on the unity launcher icons?
[ "unity", "launcher", "colors" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can turn off the backlight by firing up <a href=\"https://launchpad.net/ubuntu/+source/compizconfg-settings-manager\" rel=\"nofollow noreferrer\">compizconfg-settings-manager</a> and turning off the backlight or toggling it:</p>\n\n<p><img src=\"https://i.stack.imgur.com/7kkIs.png\" alt=\"enter image description here\"></p>\n\n<p>More information 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", "commentCount": "2", "comments": [ { "creationDate": "2011-04-29T16:16:09.317", "id": "41970", "postId": "37723", "score": "1", "text": "Thanks for the details, also for the term \"Backlight\" which helps me search for this thing. Including a lot of list discussion about why it's cluttered and probably needs a bit of an overhaul. Thanks!", "userDisplayName": null, "userId": "7056" }, { "creationDate": "2013-08-22T08:28:12.783", "id": "427807", "postId": "37723", "score": "0", "text": "That's really good. Still I hope they improve the color in the future. Win7 just nailed it right, Ubuntu doesn't have to follow but shouldn't make the icon border and background too prominent.", "userDisplayName": null, "userId": "172958" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T21:52:02.550", "id": "37723", "lastActivityDate": "2017-02-25T22:15:31.687", "lastEditDate": "2017-04-13T12:24:11.043", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "37707", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Those are just the colors that are supposed to be representing the application and they are extracted for the app's icon using some algorythm.</p>\n\n<p>You can turn it off in the Unity plugin configuration on compizconfig-settings-manager</p>\n", "commentCount": "2", ...
null
null
null
null
null
37711
1
null
2011-04-28T21:34:52.450
3
1565
<p>I've noticed that sound becomes unavailable to me when someone else is logged into my machine and playing music (or has facebook open) in the other account. I've had to ask them to unlock their account and turn it off so I can get sound in my own stuff. Even in sound preferences, the hardware itself disappears and output is "dummy sound".</p> <p>Is there a way to prevent this from happening?</p> <p>What would be <strong>really</strong> good is if I could turn down the volume (or mute entirely) all the sounds on all other accounts on a per-user basis from my sound preferences without affecting whatever setting they have - essentially saying whenever user A is logged in, all sounds from user B's account are muted and anything from user C's account is at 50% while I can still have my own at full volume.</p>
9215
235
2012-03-11T17:52:30.183
2013-04-18T20:41:39.620
Sound works for only one user at a time
[ "10.10", "sound" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>Maybe a partial fix for your problem I found in an older Fedora thread about pulse audio:\n<a href=\"http://fedoraforum.org/forum/showthread.php?t=190954\" rel=\"nofollow noreferrer\">&quot;Pulseaudio - Multiple Users&quot;</a></p>\n<p>Post nr. 5 says:</p>\n<blockquote>\n<p>A...
null
null
null
null
null
37713
1
37724
2011-04-28T21:38:30.927
0
2379
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/34182/can-i-edit-which-icons-appear-in-the-unity-dash">Can I edit which icons appear in the Unity dash?</a> </p> </blockquote> <p>For example, substitute "check email" with empathy, or shotwell with gthumb? Can we do it?</p>
15287
-1
2017-04-13T12:23:46.240
2011-06-07T02:32:35.543
Is it possible to customize shortcuts in Unity dash?
[ "unity", "unity-dash" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Setup your default applications using <code>gnome-default-applications-properties</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-29T15:31:46.877", "id": "41954", "postId": "37724", "score": "0", "text": "so it isn't possible substitute the shotwell link with a link to empathy, for example... ok, thanks ;)", "userDisplayName": null, "userId": "15287" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T21:52:12.060", "id": "37724", "lastActivityDate": "2011-04-28T21:52:12.060", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15265", "parentId": "37713", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Setup your default applications using <code>gnome-default-applications-properties</code></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-29T15:31:46.877", "id": "41954", "postId": "37724", "score": "0", ...
null
null
2011-04-29T01:30:11.203
null
null
37714
1
null
2011-04-28T21:38:33.730
4
2175
<p>I have just moved to Natty from Maverick and suddenly my terminal is invisible.</p> <p>I can type commands and they get executed, but I don't see a thing - only cursor changes when the terminal area is active. What might be wrong and how can I fix it?</p>
238
6005
2011-04-28T22:55:10.817
2011-09-02T03:39:39.513
My terminal is invisible
[ "11.04", "command-line" ]
1
7
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T22:53:37.470", "id": "41753", "postId": "37714", "score": "5", "text": "A screenshot would be useful here.", "userDisplayName": null, "userId": "667" }, { "creationDate": "2011-04-29T06:12:58.230", "id": "41858", "postId": "37714", "score...
null
[ { "accepted": null, "body": "<ol>\n<li><p>Install <strong>CompizConfig SettingsManager</strong></p>\n\n<p><code>sudo apt-get install compizconfig-settings-manager</code></p></li>\n<li><p>Launch it by searching from the dash in <strong>Unity</strong>, or <strong>Preferences > CompizConfig Settings Manager</s...
null
0
null
null
null
37722
1
null
2011-04-28T21:50:43.193
19
7927
<p>I am very impressed by the new Unity GUI--it's a bold move. </p> <p>However, there is one glaring oversight, from the point of view of someone who uses Ubuntu for professional programming work. I frequently want to have more than a dozen emacs windows open as I'm writing code. </p> <p>In classic Ubuntu, I could easily choose which one I want from the name of the file in the bottom task bar, but this does not seem to have an equivalent in Unity. When I have so many open, it's difficult to find which window I want. For this, even the 10.10 Unity was better because I could <kbd>Alt</kbd><kbd>Tab</kbd> through and see their names; no more in 11.04. It would be great if the new task bar had one emacs box (for example) covering all instances of emacs windows open. Right click on the box and have the option to see a list of the names of all open instances. </p> <p>Presently, the usefulness of right clicking on these taskbar boxes seems very limited anyways. I think a simple change of this nature would greatly improve Unity's utility.</p> <p>I already use multiple workspaces (6) and often have something like a terminal window and many emacs windows per workspace, and I'm already using keyboard shortcuts. So far, none of these get at the heart of the problem, I don't think an 'open file list' is a tall order.</p> <p><kbd>Super</kbd>+<kbd>W</kbd> does the exact opposite of what I'm suggesting. There are already too many windows open on a single workspace to easily find the one I'm looking for - viewing all windows on all workspaces just clutters the view even more.</p> <p><kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>&uparrow;</kbd> does not help. If I have a dozen emacs windows open on a single workspace, doing this shows all the open windows on the workspace all at once, but spaces them out and shrinks them down to little icons. How am I supposed to figure out at first glance which one I want? They are indistinguishable.</p>
15291
527764
2017-03-17T07:05:50.460
2017-03-18T06:58:28.257
Hard to find one window among many
[ "unity" ]
9
2
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T22:32:22.580", "id": "41739", "postId": "37722", "score": "5", "text": "If you perceive this as a problem, please file this as a bug against Unity by running `ubuntu-bug unity`. If you have an idea of how to solve this problem, please put the idea on [Ubuntu Brainst...
null
[ { "accepted": null, "body": "<p>Clicking on the the launcher icon of the application whose windows you want to view a second time will initiate a spread mode, where you can see all of the open windows for that application, and pick the the one you want. This also works via the keyboard shortcut for that app...
null
null
null
null
null
37726
1
null
2011-04-28T22:06:06.713
18
1838
<p>Will I face any problems by installing the lo-menubar to give libreoffice global menus in Natty?</p> <p>I'm wondering why it isn't installed by default. Are there stability problems or anything?</p>
15294
235
2011-09-12T20:20:57.480
2012-03-09T22:09:48.893
Why isn't lo-menubar installed by default in LibreOffice?
[ "libreoffice", "appmenu" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>From what I've read, there may be cases where it does not work correctly. For now, at least, it is not enabled by default:</p>\n\n<ul>\n<li><a href=\"https://bugs.launchpad.net/lo-menubar/+bug/760879\">https://bugs.launchpad.net/lo-menubar/+bug/760879</a></li>\n<li><a href=\"...
null
null
null
null
null
37729
1
38561
2011-04-28T22:18:03.780
1
204
<p>I just upgraded from Maverick to Natty. My main account still runs Firefox 3.6. However, I know that Firefox 4 is installed, because I created a new user and it runs Firefox 4.</p> <p>How do I get my main user account to run Firefox 4 from Unity?</p> <p>Thanks, Tim</p>
8779
null
null
2011-04-30T19:56:58.470
Primary user won't run Firefox 4 after upgrade to Natty
[ "11.04", "firefox" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Sorry about not adding my solution. I tried several times, but I was fighting with the stupid captcha applet.</p>\n\n<p>Anyway, I discovered that there was an old, manually installed Firefox 3.6 in /opt/firefox. This is what the icon was trying to start. I deleted that folder, then the icon wouldn't start anything.</p>\n\n<p>So, I uninstalled and reinstalled FF 4 using aptitude. Then, I found that I could start FF 4 from the terminal, but the icon was still looking for /opt/firefox.</p>\n\n<p>I could not find out how to fix that in Unity, so I logged into Gnome Classic and changed the Properties of both the icon and the menu item for Firefox. Then, when I logged back into Unity, the icon worked.</p>\n\n<p>Tim</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-30T19:56:58.470", "id": "38561", "lastActivityDate": "2011-04-30T19:56:58.470", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "8779", "parentId": "37729", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p><strong>First method</strong></p>\n\n<p><kbd>Super</kbd>+<kbd>A</kbd>, type <code>system</code>, click on <code>System Settings</code> -> <code>Personal section</code> -> <code>Preferred Applications</code> -> <code>Internet tab</code> -> <code>Web Browser</code>, choose <cod...
null
null
null
null
null
37734
1
null
2011-04-28T22:38:22.847
0
781
<p>I am using ubuntu natty and a dual screen set up with my laptop screen 1280x800 and an external monitor with hdmi connection 1920x1080 both at 60hz refresh rate. Fonts on the external screen are blurry. How can I configure them correctly?</p>
1177
null
null
2012-02-01T22:08:15.197
Dual screen different font resolution
[ "11.04", "multiple-monitors", "fonts", "hdmi" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2012-02-25T20:10:12.213", "id": "125863", "postId": "37734", "score": "0", "text": "Which is your video card?", "userDisplayName": null, "userId": "12943" } ]
null
[ { "accepted": null, "body": "<p>JUst click the menu button directly in your external screen, then go to select inputs and select HDMI PC, probably now is selected the HDMI AV and thats why you see the blurry fonts.</p>\n\n<p>Oscar\nSantiago, Chile.</p>\n", "commentCount": "0", "comments": [], "c...
null
null
null
null
null
37735
1
37748
2011-04-28T22:40:43.020
6
8995
<p>I am using Ubuntu Server 10.10 in a VirtualBox. I need to install a single GUI program (RubyMine) on it.</p> <p>I checked out installing <code>ubuntu-desktop</code> with <code>apt-get</code>, and it wants me to install 430 new packages (including OpenOffice). I installed the server in the first place to keep the install as clean as possible!</p> <p>How do I do a minimal install of (all packages <em>needed</em>) to run that single GUI program?</p> <p>I created a file <code>/etc/apt/apt.conf</code> and added the following:</p> <pre><code>APT::Install-Recommends "0"; APT::Install-Suggests "0"; </code></pre> <p>But <code>sudo apt-get install ubuntu-desktop</code> still says:</p> <pre><code>0 upgraded, 430 newly installed, 1 to remove and 9 not upgraded. Need to get 155MB of archives. After this operation, 542MB of additional disk space will be used. Do you want to continue [Y/n]? n </code></pre>
6069
25863
2012-11-21T21:52:32.773
2012-11-21T21:52:32.773
How to install one GUI program on Ubuntu Server?
[ "server", "package-management" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You can install X without a complete desktop environment but to be upfront and honest, installing <code>ubuntu-desktop</code> is probably the quickest and config-free method of doing what you want.</p>\n\n<p>For our media centre, I use a simple stack of: <code>nodm</code> → <code>xserver-xorg</code> → <code>openbox</code>. It's <em>very</em> raw but it allows me (with a bit of scripting) to have the system boot to X and then launch the media centre application (Boxee here). I could probably have gone without <code>openbox</code> but it's nice to have some sort of Window Manager just in case I do want to run something else.</p>\n\n<p>When I was doing it, I followed a whole raft of different documentation but the bulk of it is <a href=\"http://www.facebook.com/note.php?note_id=417853742697\">summed up here</a>. In short you should be aiming to:</p>\n\n<ol>\n<li>Install <code>nodm</code>, X, etc.</li>\n<li>Configure <code>nodm</code> by telling it what user to run as (I do suggest creating a non-root user)</li>\n<li><p>Create a <code>~/.xsession</code> file to boot whatever application you want to be running. In my case this is:</p>\n\n<pre><code>#!/bin/sh\n\nexec /home/oli/uberboxee\n</code></pre>\n\n<p>You'd just swap out <code>/home/oli/uberboxee</code> for your launcher.</p></li>\n</ol>\n\n<p>Just as a side note, if you install something that requires, for example, GTK, you'll find it might pull in a <em>massive</em> number of recommended packages. To keep things light, I strongly consider you run your <code>apt-get install</code>s with the <code>--no-install-recommends</code> flag.</p>\n\n<p>The <a href=\"https://help.ubuntu.com/community/Installation/LowMemorySystems\">Low Memory System page on help.ubuntu.com</a> is a good resource for finding alternatives to the Gnome desktop. Installing a desktop suite is going to bring a lot of stuff but it might save you a little bit of configuration.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-04-28T23:30:07.770", "id": "41768", "postId": "37748", "score": "0", "text": "Thanks for your insights..I am infact looking at the ubuntu help for low memory systems; also i did try `--no-install-recommends` but it doesn't seem to work (says no such option). I'm looking into using Damn Small Linux now.", "userDisplayName": null, "userId": "6069" }, { "creationDate": "2012-02-24T10:12:01.733", "id": "125057", "postId": "37748", "score": "0", "text": "Sorry, I can't access facebook: http://www.facebook.com/note.php?note_id=417853742697 :( Could you add add different link to this information? thx", "userDisplayName": null, "userId": "47841" }, { "creationDate": "2012-02-24T10:14:09.517", "id": "125058", "postId": "37748", "score": "0", "text": "Also, found this link on how to configure `nodm`: http://staff.blog.ui.ac.id/jp/2010/07/06/creating-your-own-booth-in-gnulinux-ubuntu-lucid-nodm/", "userDisplayName": null, "userId": "47841" }, { "creationDate": "2012-02-24T11:49:13.547", "id": "125085", "postId": "37748", "score": "0", "text": "ok, after a few hours of struggling I figured out I didn't have `xinit` installed (I'm using ubuntu server.) `sudo apt-get install xinit` solved that problem. Reboot and now it's working!", "userDisplayName": null, "userId": "47841" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T23:15:23.963", "id": "37748", "lastActivityDate": "2011-04-28T23:15:23.963", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "37735", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>You just need to install a clean desktop environment, try Gnome or KDE for starters this will give you a graphical interface without the extra software each distribution is coming with.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-0...
null
null
null
null
null
37746
1
null
2011-04-28T23:11:33.887
4
5341
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/33976/is-there-a-hardware-temperature-sensor-indicator">Is there a hardware temperature sensor indicator?</a> </p> </blockquote> <p>Hi everyone! In oldest versions of Ubuntu I used sensors applet that shows temperature of my Hard disk and Processor on my panel. In Ubuntu 11.04 I cant use that. So, is there something for unity maybe that will show me the temperature? Or is there another way to do this? Thanks in advance!</p>
8001
-1
2017-04-13T12:23:09.107
2011-04-29T15:45:41.977
Sensors applet (temperature) for Ubuntu 11.04?
[ "unity", "temperature", "sensors" ]
0
1
CC BY-SA 3.0
[ { "creationDate": "2011-05-01T17:37:13.640", "id": "42714", "postId": "37746", "score": "0", "text": "On my HP laptop, the old temperature sensor has stopped working even under \"Ubuntu Classic\".", "userDisplayName": null, "userId": "1217" } ]
null
[]
null
null
2011-05-02T23:05:09.260
null
null
37747
1
37856
2011-04-28T23:14:17.757
18
4131
<p>Is there some way to modify the Applications lens in Unity so that we can remove the <strong>"Apps Available for Download"</strong> section?</p> <p>The section is really annoying for normal use. We don't have to know why we can download some random games every time we want to start an application.</p> <p>Also, it may make the lens even faster as it will only have to display installed applications rather than creating some random list.</p>
15306
14356
2012-02-27T20:32:01.073
2012-11-04T18:39:16.647
How to remove "Apps Available for Download" from the applications lens?
[ "unity", "unity-dash", "lenses" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Unfortunately, I'm afraid this is not possible in 11.04 or 11.10, but <a href=\"https://askubuntu.com/a/100396/235\">it is possible</a> in 12.04.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T06:45:07.403", "id": "37856", "lastActivityDate": "2012-02-01T02:24:35.810", "lastEditDate": "2017-04-13T12:23:52.877", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "12036", "parentId": "37747", "postTypeId": "2", "score": "7" }
[ { "accepted": true, "body": "<p>Unfortunately, I'm afraid this is not possible in 11.04 or 11.10, but <a href=\"https://askubuntu.com/a/100396/235\">it is possible</a> in 12.04.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "cr...
null
null
null
null
null
37749
1
38541
2011-04-28T23:18:04.693
0
432
<p>I just update to Ubuntu 11.04 And then i login to my UbuntuOne account via the ubuntuone client. Sync works, but I says this error 'There is no Ubuntu One pairing record.'</p> <p><img src="https://i.stack.imgur.com/10Q9h.png" alt="enter image description here"></p>
10051
235
2011-04-28T23:26:31.277
2011-04-30T19:12:26.723
There is no Ubuntu One pairing record
[ "11.04", "ubuntu-one" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Could you please try the following command from the terminal while ubuntuone-preferences window is open (all in one line, quotes should be included):</p>\n\n<pre><code>dbus-send --print-reply --dest=com.ubuntu.sso /credentials com.ubuntu.sso.ApplicationCredentials.login_to_get_credentials \"string:Ubuntu One\" \"string:Workaround for LP:657850\" int64:0\n</code></pre>\n\n<p>Please let us know if this works.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-30T19:39:26.450", "id": "42435", "postId": "38541", "score": "0", "text": "Ok. It says 'method return sender=:1.1426 -> dest=:1.1425 reply_serial=2' after running the command. \nbut it stile says 'There is no Ubuntu One pairing record'.\nOn my desktop there not a error...", "userDisplayName": null, "userId": "10051" }, { "creationDate": "2011-05-02T16:52:05.240", "id": "43129", "postId": "38541", "score": "0", "text": "I just check my laptop again and now the red error i gone!! So thank ;)", "userDisplayName": null, "userId": "10051" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-30T19:12:26.723", "id": "38541", "lastActivityDate": "2011-04-30T19:12:26.723", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2962", "parentId": "37749", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Could you please try the following command from the terminal while ubuntuone-preferences window is open (all in one line, quotes should be included):</p>\n\n<pre><code>dbus-send --print-reply --dest=com.ubuntu.sso /credentials com.ubuntu.sso.ApplicationCredentials.login_to_ge...
null
null
null
null
null
37753
1
37754
2011-04-28T23:20:48.783
234
360165
<p>Downloading from the main Ubuntu archive is slow even when it's not release day, how can I get apt-get to automatically use a mirror that is close to me?</p>
129
235
2012-04-26T06:11:18.143
2020-03-26T06:29:33.733
How can I get apt to use a mirror close to me, or choose a faster mirror?
[ "apt", "repository", "mirrors" ]
8
1
CC BY-SA 3.0
[ { "creationDate": "2012-04-06T19:13:30.297", "id": "142152", "postId": "37753", "score": "0", "text": "Related: http://askubuntu.com/questions/39922/how-do-you-select-the-fastest-mirror-from-the-command-line", "userDisplayName": null, "userId": "235" } ]
{ "accepted": true, "body": "<p>apt-get <a href=\"http://mvogt.wordpress.com/2011/03/21/the-apt-mirror-method/\">now supports</a> a 'mirror' method that will automatically select a good mirror based on your location. Putting:</p>\n\n<pre><code>deb mirror://mirrors.ubuntu.com/mirrors.txt precise main restricted universe multiverse\ndeb mirror://mirrors.ubuntu.com/mirrors.txt precise-updates main restricted universe multiverse\ndeb mirror://mirrors.ubuntu.com/mirrors.txt precise-backports main restricted universe multiverse\ndeb mirror://mirrors.ubuntu.com/mirrors.txt precise-security main restricted universe multiverse\n</code></pre>\n\n<p>on the top in your <code>/etc/apt/sources.list</code> file should be all that is needed to make it automatically pick a mirror for you based on your geographical location.</p>\n\n<p>Lucid (10.04), Maverick (10.10), Natty (11.04), And Oneiric (11.10) users can replace <code>precise</code> with the appropriate name.</p>\n", "commentCount": "16", "comments": [ { "creationDate": "2012-03-22T07:25:16.113", "id": "136072", "postId": "37754", "score": "7", "text": "Just to clarify, is this *instead* of the usual lines or aswell as?", "userDisplayName": null, "userId": "150" }, { "creationDate": "2012-04-27T21:22:59.797", "id": "151249", "postId": "37754", "score": "15", "text": "That works when you're lucky. I've disabled it on our desktops now because it would often return broken mirrors (the kind that give you 403 occasionally).", "userDisplayName": null, "userId": "1667" }, { "creationDate": "2012-07-06T23:25:09.647", "id": "195658", "postId": "37754", "score": "4", "text": "@HamishDowner This is beside the lines. At the top of the file.", "userDisplayName": null, "userId": "54298" }, { "creationDate": "2013-06-29T17:04:29.957", "id": "397540", "postId": "37754", "score": "8", "text": "Great tip. Just note that after making the change you need to run `sudo apt-get update` before doing any `apt-get install` for it to use your closest mirror.", "userDisplayName": null, "userId": "141511" }, { "creationDate": "2013-07-30T05:16:55.030", "id": "415178", "postId": "37754", "score": "0", "text": "@ the first apt-get update it didn't work but at the second apt-get update it did.", "userDisplayName": null, "userId": "22676" }, { "creationDate": "2014-04-25T11:11:06.947", "id": "598422", "postId": "37754", "score": "0", "text": "i didnt even need to use apt-get update, i think it depends on if you have anything running that might do this for you, make sure you disable any software managers if you are doing this low-level so your settings don't get overwritten :)", "userDisplayName": null, "userId": "123666" }, { "creationDate": "2015-02-23T09:37:53.587", "id": "817558", "postId": "37754", "score": "0", "text": "I tried this method but surprisingly it did not work :( . mirrors.ubuntu.com/mirrors.txt gives me two entries. http://np.archive.ubuntu.com/ubuntu/\nhttp://archive.ubuntu.com/ubuntu/ . But when i do `apt-get update` and subsequent installations, it would only fetch from http://archive.ubuntu.com/ubuntu . Any idea ?", "userDisplayName": null, "userId": "41197" }, { "creationDate": "2015-04-09T07:15:32.640", "id": "849873", "postId": "37754", "score": "2", "text": "Is this ```mirror://``` thing documented somewhere? I could not find anything in ```sources.list(5)``` or ```/usr/share/doc/apt```.", "userDisplayName": null, "userId": "313855" }, { "creationDate": "2015-04-09T07:22:43.893", "id": "849877", "postId": "37754", "score": "1", "text": "Only found the [commit](https://anonscm.debian.org/cgit/apt/apt.git/commit/?id=b5cabd30cc1be1c6c1ca675ceb359bab577c1905 \"merge of the debian-expermental-ma branch\") (from 2010!) where ```mirror://``` had been introduced, but nothing else.", "userDisplayName": null, "userId": "313855" }, { "creationDate": "2015-08-02T00:46:26.500", "id": "942630", "postId": "37754", "score": "0", "text": "Also, ```apt-file``` [doesn't understand this](https://bugs.launchpad.net/ubuntu/+source/apt-file/+bug/1395988 \"apt-file cannot resolve mirror://mirrors.ubuntu.com/mirrors.txt\") yet :-\\", "userDisplayName": null, "userId": "313855" }, { "creationDate": "2016-02-19T23:09:39.930", "id": "1094345", "postId": "37754", "score": "0", "text": "Does this work for Debian as well ?", "userDisplayName": null, "userId": "458315" }, { "creationDate": "2016-04-19T23:07:45.573", "id": "1133801", "postId": "37754", "score": "3", "text": "This worked for me with the trusty release (server)", "userDisplayName": null, "userId": "532300" }, { "creationDate": "2017-09-21T09:39:32.540", "id": "1529521", "postId": "37754", "score": "0", "text": "currently (21/09/2017) the file at the address mirrors.ubuntu.com/mirrors.txt contains only one line, which reads `http://archive.ubuntu.com/ubuntu/`. I'm not sure this is useful", "userDisplayName": null, "userId": "68074" }, { "creationDate": "2021-03-29T22:39:07.723", "id": "2263357", "postId": "37754", "score": "0", "text": "does this work for `arm` architectures? I have installed ubuntu on an android device, the default urls are `http://ports.ubuntu.com/ubuntu-ports`", "userDisplayName": null, "userId": "625587" }, { "creationDate": "2021-08-12T10:21:09.700", "id": "2324539", "postId": "37754", "score": "0", "text": "For Ubuntu 20 version, search and replace \"precise\" by \"groovy\".", "userDisplayName": null, "userId": "507470" }, { "creationDate": "2024-03-29T15:18:14.920", "id": "2647668", "postId": "37754", "score": "0", "text": "@pqnet: Currently(2024/3/29) this file returns the mirror URLs of my local region(probably based on the client's IP address-geolocation lookup result), for your case the system might not be able to determine your region and thus falling back to the default.", "userDisplayName": null, "userId": "474660" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T23:21:17.567", "id": "37754", "lastActivityDate": "2012-05-30T03:38:41.863", "lastEditDate": "2012-05-30T03:38:41.863", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "129", "parentId": "37753", "postTypeId": "2", "score": "227" }
[ { "accepted": true, "body": "<p>apt-get <a href=\"http://mvogt.wordpress.com/2011/03/21/the-apt-mirror-method/\">now supports</a> a 'mirror' method that will automatically select a good mirror based on your location. Putting:</p>\n\n<pre><code>deb mirror://mirrors.ubuntu.com/mirrors.txt precise main restric...
null
null
null
null
null
37755
1
38055
2011-04-28T23:23:37.550
3
8814
<p>I've updated my system, the system boots but I never get to the graphic interface. It seems to hang. </p> <p>I get a black screen, at the end of the screen, I got my cursor <code>_</code> blinking and I don't know what to do. </p> <p>I believe the system is OK somehow, because I notice the screen saver activation after a while but nothing more. If I press any key, the screen savers vanishes but I just don't know how to leave from this state.</p> <p>I've tried <kbd>Ctrl</kbd> + <kbd>C</kbd>, entering <code>exit</code> but I just get the letters there, nothing happens.</p> <p>At the end, my <code>/var/log/Xorg.0.log</code> has:</p> <blockquote> <p>DRI Initialization failed kernel module (fglrx.ko) may be missing or incompatible 2D and 3D acceleration disabked</p> <p>glesx __g1ESXExtensionInit: No GL ES2.0 Capable screen found!</p> <p>Caught signal 11 (Segmentation fault). Server Aborting Please consult the X.org Foundadion Support (EE) fglrx(0): fireg1_SetSuspendeResumeState FAILED -9 </p> <p>ddxSigGiveUp: closing log</p> </blockquote> <p><strong>UPDATE:</strong></p> <p>I've done:</p> <pre><code>sudo apt-get remove --purge fglrx </code></pre> <p>after which I've rebooted. Now I got nothing on my screen. Not even the command line.</p> <p>What can I do? How can I fix this problem?</p>
1446
2732
2011-05-15T21:09:35.903
2011-05-18T04:21:19.223
fglrx fails to load causing black screen on boot
[ "11.04", "drivers", "fglrx" ]
3
13
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T23:26:39.317", "id": "41766", "postId": "37755", "score": "1", "text": "The `udev` message is almost certainly a dead end. `udev` spews out all sorts of stuff on perfectly working machines. Same with `ureadahead`. The content of `~/.xsession-errors` and `/var/log/Xo...
{ "accepted": true, "body": "<p>You shouldn't have purged <code>flgrx</code>, really.</p>\n\n<p>I experienced exactly same problem after updating to 11.04 (booted fine with old kernel 2.6.35, but trying to boot with default kernel of 11.04 I had blank screen and blinking cursor)<br>\nAll I had to do is add <code>radeon.modeset=0</code> to grub options (along with <code>quiet splash</code>)\nonce you can add this option pressing <kbd>E</kbd> in grub menu for permanently editing and updating grub.</p>\n\n<p>If anything, you can edit grub options doing</p>\n\n<pre><code>gksudo gedit /etc/default/grub\n</code></pre>\n\n<p>The line will look like something <code>... =\"radeon.modeset=0 quiet splash\"</code>.</p>\n\n<p>Save the grub file then update the grub config using <code>sudo update-grub</code>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T16:01:40.993", "id": "38055", "lastActivityDate": "2011-05-15T21:05:19.127", "lastEditDate": "2011-05-15T21:05:19.127", "lastEditorDisplayName": null, "lastEditorUserId": "2732", "ownerDisplayName": null, "ownerUserId": "15449", "parentId": "37755", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You shouldn't have purged <code>flgrx</code>, really.</p>\n\n<p>I experienced exactly same problem after updating to 11.04 (booted fine with old kernel 2.6.35, but trying to boot with default kernel of 11.04 I had blank screen and blinking cursor)<br>\nAll I had to do is add ...
null
null
null
null
null
37756
1
null
2011-04-28T23:24:04.350
1
3349
<p>I've got a 2nd generation Intel i5 processor with integrated graphics. In live usb mode, Ubuntu uses this one and Unity works fine. After installation with automatical updates and 3rd party software installation, I can't use Unity, and Ubuntu seems to use the nVidia grahpics card. Though Jockey tells me the driver would be activated but not in use. </p> <p>Right after Login, it tells me I lack 3d support for Compiz. After removing the driver, Unity works again. Even after installing the Nouveau driver it works. I'd be really happy if someone could tell me why that happens and how I'm able to use Unity with the official nVidia driver, because it still is much better than Nouveau.</p>
15309
235
2011-04-29T20:46:00.693
2011-05-24T23:14:31.443
How comes I can't use Unity with the propietary nVidia driver for my Geforce 410M?
[ "unity", "nouveau", "nvidia-optimus" ]
3
6
CC BY-SA 3.0
[ { "creationDate": "2011-04-28T23:29:36.643", "id": "41767", "postId": "37756", "score": "0", "text": "Seems like [this might be relevant to your interests](http://askubuntu.com/questions/37629/geforce-go-7300-7400-blacklisted-can-i-still-run-unity). Let me know if it works and I'll close this as...
null
[ { "accepted": null, "body": "<p>try the steps in this blog - <a href=\"http://www.linoob.com/2011/04/installing-hardware-drivers-in-ubuntu/\" rel=\"nofollow\">installing-hardware-drivers-in-ubuntu</a> and if its still not working get <strong><em>unity-2d</em></strong> from software centre (its almost like u...
null
null
null
null
null
37757
1
37760
2011-04-28T23:29:24.323
3
1269
<p>My <kbd>alt</kbd>+<kbd>F2</kbd> app is screwed and I can't find compiz. How do I start it? (Don't think I'm an idiot just haven't used it and my computer is more than a little screwed up.)</p>
14748
17739
2011-10-18T17:30:29.327
2011-11-18T22:16:38.143
Where is ccsm found on my application menu?
[ "compiz" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p><code>ccsm</code> (or <code>compizconfig-settings-manager</code>) isn't installed by default in Natty (11.04).</p>\n\n<p>To install it, run the following from a terminal</p>\n\n<p><code>sudo apt-get install compizconfig-settings-manager</code></p>\n\n<p>Once's that's done, it's <code>ccsm</code> from a terminal and <code>CompizConfig Settings Manager</code> in the menu (System → Preferences if you're not using Unity yet)</p>\n\n<ul>\n<li>Warning: <a href=\"https://askubuntu.com/questions/80589/what-are-some-of-the-issues-with-ccsm-and-why-should-i-not-use-it\">What are some of the issues with CCSM and why would I want to avoid it?</a></li>\n</ul>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-28T23:36:16.500", "id": "37760", "lastActivityDate": "2011-11-18T22:16:38.143", "lastEditDate": "2017-04-13T12:24:13.887", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "37757", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p><code>ccsm</code> (or <code>compizconfig-settings-manager</code>) isn't installed by default in Natty (11.04).</p>\n\n<p>To install it, run the following from a terminal</p>\n\n<p><code>sudo apt-get install compizconfig-settings-manager</code></p>\n\n<p>Once's that's done, it...
null
null
null
null
null
37761
1
null
2011-04-28T23:41:46.243
4
28466
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4662/where-is-the-x-org-config-file-how-do-i-configure-x-there">Where is the X.org config file? How do I configure X there?</a> </p> </blockquote> <p>I am not able to manually configure since I can't find my xorg.conf under /etc/X11/ I read in a forum that it got depricated. Any insights?</p>
1177
-1
2017-04-13T12:24:29.360
2011-08-06T22:32:34.390
xorg.conf in ubuntu Natty 11.04
[ "11.04", "xorg" ]
0
1
CC BY-SA 3.0
[ { "creationDate": "2011-12-03T23:48:12.200", "id": "96434", "postId": "37761", "score": "0", "text": "When a question is closed as \"duplicate\", could we get a link to the original?", "userDisplayName": null, "userId": "9503" } ]
null
[]
null
0
2011-08-06T22:32:24.407
null
null
37766
1
37772
2011-04-29T00:25:20.280
1
2292
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/37707/what-are-the-different-colors-on-the-unity-launcher-icons">What are the different colors on the unity launcher icons?</a> </p> </blockquote> <p>Unity automatically colors the background of each icon to resemble the colors of that icon. I find this disorienting and annoying. Is there any way to disable this behavior and attain a uniform icon background coloring (i.e., no background color).</p>
145
-1
2017-04-13T12:23:46.240
2011-04-29T00:47:45.173
Uniformizing Unity icon background color
[ "unity" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<ol>\n<li>Open the \"CompizConfig Settings Manager\" application</li>\n<li>Select the \"Ubuntu Unity Plugin\"</li>\n<li>On the \"Experimental\" tab, you can adjust the backlight mode. Based on your question, you want \"Always Off\"</li>\n</ol>\n\n<p>If you don't have CompizConfig installed you can install it via this question:\n<a href=\"https://askubuntu.com/questions/37757/where-is-ccsm-found-on-my-application-menu\">Where is ccsm found on my application menu?</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T00:34:36.307", "id": "37772", "lastActivityDate": "2011-04-29T00:47:45.173", "lastEditDate": "2017-04-13T12:25:03.983", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "15312", "parentId": "37766", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<ol>\n<li>Open the \"CompizConfig Settings Manager\" application</li>\n<li>Select the \"Ubuntu Unity Plugin\"</li>\n<li>On the \"Experimental\" tab, you can adjust the backlight mode. Based on your question, you want \"Always Off\"</li>\n</ol>\n\n<p>If you don't have CompizConf...
null
null
2011-04-29T01:17:03.987
null
null
37767
1
37775
2011-04-29T00:26:21.730
323
1679003
<p>I only have access to the command line.<br> I need to backup my data (on the user folder) to a pen (USB DOK). </p> <ul> <li>How can I mount a flash drive manually?</li> <li>What should be the copy command?</li> </ul>
1446
544264
2017-07-25T11:21:23.327
2021-09-21T22:18:50.787
How to access a usb flash drive from the terminal?
[ "command-line", "mount", "usb-drive" ]
7
1
CC BY-SA 3.0
[ { "creationDate": "2022-08-18T19:06:04.733", "id": "2479854", "postId": "37767", "score": "0", "text": "This was helpful for me to see a list of files and their sizes: https://www.askdavetaylor.com/access-usb-flash-thumb-drive-in-ubuntu-linux-gui-command-line-cli/", "userDisplayName": null, ...
{ "accepted": true, "body": "<h3>1. Find what the drive is called</h3>\n\n<p>You'll need to know what the drive is called to mount it. To do that fire off one of the following (ranked in order of my preference):</p>\n\n<pre><code>lsblk\nsudo blkid\nsudo fdisk -l\n</code></pre>\n\n<p>You're looking for a partition that should look something like: <code>/dev/sdb1</code>. The more disks you have the higher the letter this is likely to be. Anyway, find it and remember what it's called.</p>\n\n<h3>2. Create a mount point (optional)</h3>\n\n<p>This needs to be mounted into the filesystem <em>somewhere</em>. You can usually use /mnt/ if you're being lazy and nothing else is mounted there but otherwise you'll want to create a new directory:</p>\n\n<pre><code>sudo mkdir /media/usb\n</code></pre>\n\n<h3>3. Mount!</h3>\n\n<pre><code>sudo mount /dev/sdb1 /media/usb\n</code></pre>\n\n<p>When you're done, just fire off:</p>\n\n<pre><code>sudo umount /media/usb\n</code></pre>\n\n<hr>\n\n<p>This answer is almost 6 years old and while the core of it still works, things like <code>fdisk -l</code> aren't the most user-friendly options. There are also new mechanisms in higher stacks for mounting devices in a sane and standard way which might not always be available.</p>\n\n<p>So I've added some polish from the other answers. While you're reading this footnote and you're doing this on a desktop system, there definitely are arguments for <a href=\"https://askubuntu.com/a/865453/449\">using <code>udisksctl</code>, per wecac's answer</a>. This mounts in the same way the desktop does —creating your own <code>/media/$USER/device</code> directory— but I think there are still arguments for a static mountpoint, especially when you don't want the path to change.</p>\n\n<p>Udisks also relies on D-Bus, so might not be available everywhere.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2018-05-30T19:49:11.113", "id": "1697794", "postId": "37775", "score": "2", "text": "the main disadvantage of this method is that it mounts the device as root. if the device is FAT formatted then the user won't be able to write to it. the /media/$USER/device mountpoint will also always be the same", "userDisplayName": null, "userId": "461736" }, { "creationDate": "2020-05-18T04:31:49.870", "id": "2090587", "postId": "37775", "score": "1", "text": "All answers assume that there magically appears a /dev/sdX after putting in the USB stick. What if it doesn't? I see in the logs that it is detected, but no new /dev. lsusb show all the gory details too. Ie `sudo lsusb -vs 15:2 | grep id` gives `idVendor 0x090c Silicon Motion, Inc. - Taiwan (formerly Feiya Technology Corp.)`\n `idProduct 0x1000 Flash Drive`", "userDisplayName": null, "userId": "493223" }, { "creationDate": "2022-02-09T02:26:25.880", "id": "2406429", "postId": "37775", "score": "1", "text": "Still works in 2022 with Ubuntu 20.x", "userDisplayName": null, "userId": "987333" }, { "creationDate": "2022-11-10T06:12:43.360", "id": "2512422", "postId": "37775", "score": "0", "text": "@CarloWood I have faced a similar situation. In some logs, i think `dmesg` or something, I found that the drive was unable to power itself up. I just ended up using a different port for the drive. As far as i know there is not a way to mount a drive, whose device driver hasnt created a device file in `/dev/`", "userDisplayName": null, "userId": "607487" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T00:43:33.160", "id": "37775", "lastActivityDate": "2017-07-25T12:58:36.493", "lastEditDate": "2017-07-25T12:58:36.493", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "37767", "postTypeId": "2", "score": "456" }
[ { "accepted": true, "body": "<h3>1. Find what the drive is called</h3>\n\n<p>You'll need to know what the drive is called to mount it. To do that fire off one of the following (ranked in order of my preference):</p>\n\n<pre><code>lsblk\nsudo blkid\nsudo fdisk -l\n</code></pre>\n\n<p>You're looking for a par...
null
null
null
null
null
37771
1
37816
2011-04-29T00:33:01.030
3
6303
<p>I'm planning to have an Ubuntu 11.4 / OpenSUSE 11.4 or maybe an Ubuntu 11.4 / Fedora 15 beta dual boot (or the three of them).</p> <p>Will they dual boot just after installation? or I have to install them in a certain order or do some special configuration?</p> <p>(Right now I'm using Ubuntu 10.10)</p>
8583
null
null
2011-09-04T18:54:40.463
Dual boot with Ubuntu 11.04, OpenSUSE 11.4 and/or Fedora 15 beta. Does the order matters?
[ "dual-boot" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Be careful with OpenSUSE - they still use GRUB as their bootloader, while Ubuntu uses GRUB2. (As of 11.4 there is an option to go with GRUB2 however.) If you're using Ubuntu as your primary OS and replace GRUB2 with GRUB during an OpenSUSE install, it might cause problems. (At the very least, some of the command line structure is different, so it might make it hard to follow a how-to, for example.)</p>\n\n<p>I haven't done an install with 11.4 but I do have 11.3 installed on a second hard drive. If they haven't made major changes, one of the options when installing OpenSUSE is to install no bootloader at all. After the install you need to run sudo update-grub from Ubuntu to add OpenSUSE to the bootloader. (This was the option I went with, since I wanted to keep Ubuntu's bootloader.) The only downside to doing it this way is that whenever OpenSUSE updates their kernel, you have to update the grub manually (from within Ubuntu - at least that's the easiest way IMO).</p>\n\n<p>I think Fedora 15 uses GRUB2 as well; if you install Fedora second you'll get a Fedora theme for the bootloader but there's otherwise no difference.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-04-29T05:15:07.167", "id": "41851", "postId": "37816", "score": "0", "text": "so basically I have two choices: to select GRUB2 while I'm inside openSUSE 11.4's installation CD or to not to install bootloader at all?", "userDisplayName": null, "userId": "8583" }, { "creationDate": "2011-04-30T20:56:30.613", "id": "42474", "postId": "37816", "score": "0", "text": "Probably - I'm not really sure how to install GRUB2 in openSUSE. You could install GRUB, and it'll detect Ubuntu and let you boot it, but then maybe you'd have to use openSUSE to manage the grub. I'd suggest asking on the openSUSE forums about using GRUB2 in a dual-boot setup, unless you want to do what I did and stick with Ubuntu's bootloader.", "userDisplayName": null, "userId": "13901" }, { "creationDate": "2011-05-28T08:28:46.277", "id": "50121", "postId": "37816", "score": "0", "text": "@janoChen, do it this way - openSUSE GRUB2, Fedora, then Ubuntu. With openSUSE using GRUB2 there won't be a need to update manually. And installing Ubuntu last will just land you with the no background GRUB menu of Ubuntu.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-06-19T01:40:50.673", "id": "54766", "postId": "37816", "score": "1", "text": "I can confirm Fedora 15 uses Grub Legacy, *not* Grub 2. And it doesnt detect Ubuntu. So maybe installing Ubuntu last is the best choice. The wallpaper can be configured in Ubuntu's Grub 2. Its tricky, but not too hard", "userDisplayName": null, "userId": "11015" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T04:13:37.363", "id": "37816", "lastActivityDate": "2011-04-29T04:13:37.363", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "13901", "parentId": "37771", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>Nope, the order won't matter. They all use GRUB as the default bootloader, so there is nothing to be written over like when dealing with Windows.</p>\n\n<p>You can choose which one you want to boot up automatically in (or whether you want GRUB to wait and make you choose ever...
null
null
null
null
null
37776
1
80399
2011-04-29T00:43:40.513
27
10490
<p>I would like to not show the trash icon at the bottom of the Unity launcher.</p> <p>Is this possible without having to recompile anything? :P</p>
10360
18612
2012-09-17T19:41:29.890
2016-09-05T20:02:38.977
How can I remove the Trash icon from the Unity launcher?
[ "unity", "launcher" ]
3
3
CC BY-SA 3.0
[ { "creationDate": "2011-11-30T22:38:39.130", "id": "95493", "postId": "37776", "score": "1", "text": "Are you using Unity2D? Then no compile is needed, compile is needed for Unity3D but its possible (and not complicated). Drop a comment if you are still interested.", "userDisplayName": null,...
{ "accepted": true, "body": "<p>In the desktop interface, the Dash icon and the Trash icon use the top and bottom slots of the launcher, always. We have not allowed the removal of the Trash so that we can enable developers to trust that it will always be there, which means \"drag to the trash\" is always possible.</p>\n\n<p>It might be worth considering relaxing the requirement that the trash always be on the bottom corner, allowing other icons to take that spot. A blueprint to that effect, discussing the consequences and solutions to issues that might arise, would be welcome.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-12-03T22:28:01.187", "id": "96411", "postId": "80399", "score": "7", "text": "My personal experience (on Windows, as well as Ubuntu) is that if something isn't there that the documentation \"trusts\" is there, then I remember that the reason is that I removed it, and there is no problem. I'd like to remove the trash icon, perhaps even with a strong warning.", "userDisplayName": null, "userId": "20358" }, { "creationDate": "2012-04-11T15:38:48.580", "id": "144031", "postId": "80399", "score": "9", "text": "Ouch ouch ouch. I get the rationale, and hate the placement. One of my four most accessible corners of my screen, taken over by something that I have the delete key for anyway.", "userDisplayName": null, "userId": "6424" }, { "creationDate": "2013-07-02T13:10:37.520", "id": "399206", "postId": "80399", "score": "3", "text": "Why would a program need to drag something, anyway? A robot program should be hitting the delete key if it wants to delete something, not dragging it to the trash, the same way real users hit the delete key, rather than dragging to the trash.", "userDisplayName": null, "userId": "113148" }, { "creationDate": "2014-04-18T17:02:02.487", "id": "590967", "postId": "80399", "score": "0", "text": "It's unbelievable that now a days this thing persists. It's pointless not get ride of this functionality.", "userDisplayName": null, "userId": "270127" }, { "creationDate": "2016-08-14T19:27:22.730", "id": "1228471", "postId": "80399", "score": "0", "text": "I like unity launcher at the left, but for some reason, i always end up click unintentionally in the trash button. Maybe my fingers are too big. Anyways, i wish i could remove that button. Sometimes i'm in the middle of an important work and \"appear\" the trash foler...", "userDisplayName": null, "userId": "224180" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-11-18T08:09:20.187", "id": "80399", "lastActivityDate": "2011-11-18T08:09:20.187", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5287", "parentId": "37776", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>Currently it's not possible. You should start a blueprint for this in Launchpad, so we can see it in future versions of Unity.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-04-29T03:46:38.373", "id": "41838", "postId"...
null
null
null
null
null
37777
1
37780
2011-04-29T00:50:45.357
1
2332
<p>I want to run a script on a daily basis, and figured that I'd use the same setup that the other cron jobs are configured on this server - by placing the script in the <code>/etc/cron.daily</code> folder.</p> <p>However, the script was not run overnight - although others in the daily folder were (logs were rotated, etc). The script is owned by root (as are the original ones in there), and the permissions are set to 755 (as are the original ones in there) - and the script runs when called manually.</p> <p>I have found this related question <a href="https://askubuntu.com/questions/8426/cron-hourly-wont-run">Cron.hourly won&#39;t run</a> but don't find the answers anywhere near satisfactory - <code>sudo crontab -l</code> tells me there is no crontab for root (although, I know I can created one), and it would make more sense to use the same method as the preinstalled jobs anyway rather than split cron configuration.</p> <p>Anyone able to point at something I might have missed?</p> <p>For the record - the script filename is <code>drupal</code></p>
5826
-1
2017-04-13T12:24:13.887
2011-04-29T01:13:50.037
Cannot get new job to run using /etc/crontab and /etc/cron.daily
[ "10.04", "crontab" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Managed to work out how to do a bit of debugging by using <code>run-parts -v /etc/cron.daily</code> - and after a disabled the apt script (with its random upto 30 minute sleep) I found the error message for the new script:</p>\n\n<pre><code>run-parts: failed to exec /etc/cron.daily/drupal: Exec format error\nrun-parts: /etc/cron.daily/drupal exited with return code 1\n</code></pre>\n\n<p>This didn't turn up in the syslog though - which would have been helpful.</p>\n\n<p>That's when I realised that I hadn't but a <code>#!/bin/sh</code> directive at the top of the script - fixed that, ran the run-parts command again, and all sorted.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T01:13:50.037", "id": "37780", "lastActivityDate": "2011-04-29T01:13:50.037", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5826", "parentId": "37777", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Managed to work out how to do a bit of debugging by using <code>run-parts -v /etc/cron.daily</code> - and after a disabled the apt script (with its random upto 30 minute sleep) I found the error message for the new script:</p>\n\n<pre><code>run-parts: failed to exec /etc/cron...
null
null
null
null
null
37783
1
null
2011-04-29T01:23:14.437
2
205
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/11760/what-is-the-difference-between-gksudo-nautilus-and-sudo-nautilus">What is the difference between &ldquo;gksudo nautilus&rdquo; and &ldquo;sudo nautilus&rdquo;?</a> </p> </blockquote> <p>It is common to see in instructions, the terminal command to edit a file: </p> <pre><code>sudo gedit </code></pre> <p>but this will be deemed inadvisable by experienced users, who instead suggest: </p> <pre><code>gksudo gedit </code></pre> <p>The question is, why the distinction and is there any harm using sudo with a graphical application?</p>
8570
-1
2017-04-13T12:23:28.253
2012-06-18T18:09:39.543
What's the difference between sudo and gksudo when launching graphical applications?
[ "gui", "sudo", "gksu" ]
0
0
CC BY-SA 3.0
[]
null
[]
null
0
2012-02-17T23:48:13.513
null
null
37786
1
37795
2011-04-29T01:34:01.110
10
43588
<p>I'm working in Ubuntu 10.10 and am trying to start a single node cluster in Hadoop.</p> <pre><code>hadoop@abraham-Dimension-3000:/usr/local/hadoop$ bin/start-all.sh mkdir: cannot create directory `/usr/local/hadoop/bin/../logs': Permission denied starting namenode, logging to /usr/local/hadoop/bin/../logs/hadoop-hadoop-namenode-abraham-Dimension-3000.out /usr/local/hadoop/bin/hadoop-daemon.sh: line 117: /usr/local/hadoop/bin/../logs/hadoop-hadoop-namenode-abraham-Dimension-3000.out: No such file or directory head: cannot open `/usr/local/hadoop/bin/../logs/hadoop-hadoop-namenode-abraham-Dimension-3000.out' for reading: No such file or directory localhost: mkdir: cannot create directory `/usr/local/hadoop/bin/../logs': Permission denied localhost: starting datanode, logging to /usr/local/hadoop/bin/../logs/hadoop-hadoop-datanode-abraham-Dimension-3000.out localhost: /usr/local/hadoop/bin/hadoop-daemon.sh: line 117: /usr/local/hadoop/bin/../logs/hadoop-hadoop-datanode-abraham-Dimension-3000.out: No such file or directory localhost: head: cannot open `/usr/local/hadoop/bin/../logs/hadoop-hadoop-datanode-abraham-Dimension-3000.out' for reading: No such file or directory localhost: mkdir: cannot create directory `/usr/local/hadoop/bin/../logs': Permission denied localhost: starting secondarynamenode, logging to /usr/local/hadoop/bin/../logs/hadoop-hadoop-secondarynamenode-abraham-Dimension-3000.out localhost: /usr/local/hadoop/bin/hadoop-daemon.sh: line 117: /usr/local/hadoop/bin/../logs/hadoop-hadoop-secondarynamenode-abraham-Dimension-3000.out: No such file or directory localhost: head: cannot open `/usr/local/hadoop/bin/../logs/hadoop-hadoop-secondarynamenode-abraham-Dimension-3000.out' for reading: No such file or directory mkdir: cannot create directory `/usr/local/hadoop/bin/../logs': Permission denied starting jobtracker, logging to /usr/local/hadoop/bin/../logs/hadoop-hadoop-jobtracker-abraham-Dimension-3000.out /usr/local/hadoop/bin/hadoop-daemon.sh: line 117: /usr/local/hadoop/bin/../logs/hadoop-hadoop-jobtracker-abraham-Dimension-3000.out: No such file or directory head: cannot open `/usr/local/hadoop/bin/../logs/hadoop-hadoop-jobtracker-abraham-Dimension-3000.out' for reading: No such file or directory localhost: mkdir: cannot create directory `/usr/local/hadoop/bin/../logs': Permission denied localhost: starting tasktracker, logging to /usr/local/hadoop/bin/../logs/hadoop-hadoop-tasktracker-abraham-Dimension-3000.out localhost: /usr/local/hadoop/bin/hadoop-daemon.sh: line 117: /usr/local/hadoop/bin/../logs/hadoop-hadoop-tasktracker-abraham-Dimension-3000.out: No such file or directory localhost: head: cannot open `/usr/local/hadoop/bin/../logs/hadoop-hadoop-tasktracker-abraham-Dimension-3000.out' for reading: No such file or directory hadoop@abraham-Dimension-3000:/usr/local/hadoop$ </code></pre> <p>I have no clue what I'm doing wrong or what some of these errors suggest.</p> <pre><code>hadoop@abraham-Dimension-3000:/usr/local/hadoop$ jps 5099 Jps </code></pre> <p>Can anyone with diagnosing the problem.</p>
12786
235
2013-04-07T18:14:28.067
2013-04-07T18:42:26.130
"Permission denied" errors whe starting a single node cluster in Hadoop
[ "hadoop" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The errors suggest a permissions problem.</p>\n\n<p>Make sure that the hadoop user has the proper privileges to <code>/usr/local/hadoop</code>. Try:</p>\n\n<pre>\nsudo chown -R hadoop /usr/local/hadoop/\n</pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-12-23T09:29:07.807", "id": "1049576", "postId": "37795", "score": "0", "text": "I spent few hours trying to figure out what settings should I change to make my hadoop work. And finally I found solution which works for me. Thank you! :)", "userDisplayName": null, "userId": "485378" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-04-29T02:01:59.350", "id": "37795", "lastActivityDate": "2013-04-07T18:42:26.130", "lastEditDate": "2013-04-07T18:42:26.130", "lastEditorDisplayName": null, "lastEditorUserId": "64171", "ownerDisplayName": null, "ownerUserId": "731", "parentId": "37786", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>The errors suggest a permissions problem.</p>\n\n<p>Make sure that the hadoop user has the proper privileges to <code>/usr/local/hadoop</code>. Try:</p>\n\n<pre>\nsudo chown -R hadoop /usr/local/hadoop/\n</pre>\n", "commentCount": "1", "comments": [ { "...
null
null
null
null
null
37787
1
null
2011-04-29T01:37:02.740
1
403
<p>I upgraded from Ubuntu 10.10 to Ubuntu 11.04 and now my touchpad doesn't work. Please explain how to fix it thoroughly, because I'm a newbie. Thanks</p>
15323
3037
2011-09-23T14:47:16.497
2011-09-23T14:47:16.497
How do I get the touchpad on a MBP 7,1 working?
[ "11.04", "touchpad", "mac" ]
1
3
CC BY-SA 3.0
[ { "creationDate": "2011-04-30T04:19:52.887", "id": "42203", "postId": "37787", "score": "0", "text": "Nevermind. I fixed it.", "userDisplayName": null, "userId": "15323" }, { "creationDate": "2011-04-30T04:20:52.667", "id": "42204", "postId": "37787", "score": "0", ...
null
[ { "accepted": null, "body": "<p>Had the same problem upgrading from ubuntu 10.10 to 11.04. I used the Synaptic drivers in 10.10, but the solution that worked the best for me was to <strong>REMOVE</strong> all mention of the Synaptics Touchpad diver and Device settings for the touchpad from the <strong>xorg....
null
null
null
null
null