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
2829
1
2862
2010-08-21T21:48:28.207
4
173
<p>A member of my family has a moderate disability for dealing with computers. He is largely unable to engage technology in general, and most on-screen GUIs are confusing and upsetting. He is, however, able to use email and browse the Internet to a limited degree, and he wants to progress in that. </p> <p>Evolution works fairly well for the email. But I want to find a better software -- which in this case means <strong>simpler</strong>, <strong>easier</strong> and <strong>uncluttered</strong>. </p> <ul> <li><strong>Simpler</strong> -- doesn't assume a heavy load of messages or super real-time exchange such as for chat. Doesn't present many features beyond the minimum.</li> <li><strong>Easier</strong> -- has a highly fool-proof GUI. </li> <li><strong>Uncluttered</strong> -- No sidebar with advertisements. No extraneous pop-ups.</li> </ul> <p>I am certain the Gmail interface would not be acceptable (complex, visually cluttered, a bit hard to second-guess if you aren't computer-savvy). Three years ago I tried Thunderbird, but Evolution seemed to have a better GUI. </p> <p>I guess I'm looking for the email-browser equivalent of a <a href="http://www.jitterbug.com/CustomerService/faq04.aspx" rel="nofollow">Jitterbug</a> phone. Perhaps something designed for assistive technology is available. What would you recommend?</p>
1393
1393
2010-08-22T14:24:32.440
2015-06-25T18:49:57.917
Email application for the computer-impaired
[ "email", "accessibility" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Mozilla came out with Thunderbird 3.0 not too long ago, and it seems simpler (once you set it up, of course). Then again, I thought gmail was incredibly simple, so...</p>\n\n<p>My dad is also terrible with computers--although probably not that bad... And he loves his windows live mail box. I've been trying to get him to switch to gmail, but he refuses to try new things. So, if windows live works for him...</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-22T14:20:09.157", "id": "2818", "postId": "2862", "score": "0", "text": "Thanks. I will take a fresh look at TB. I found that Windows Live is Hotmail, and this prompted me to add 'uncluttered' to my specifications. Rotating ads are out. I suppose I could become a subscriber, pay a bit of money to remove ads (assuming one can do that). I have yet to do that but maybe I should consider it.", "userDisplayName": null, "userId": "1393" }, { "creationDate": "2010-09-04T21:34:21.747", "id": "3641", "postId": "2862", "score": "0", "text": "Thunderbird it is. Fast. The GUI isn't perfection, in terms of 'transparency', but it's a good sight better than Evolution IMO. While I am not sure my household member would credit TB directly, this week he had a lot more fun with email than any time I recall previously.", "userDisplayName": null, "userId": "1393" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T13:27:07.890", "id": "2862", "lastActivityDate": "2010-08-22T13:27:07.890", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1415", "parentId": "2829", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>I am not sure what exectly your family member needs, but just trying to help think out of the box (as I know about no mail client designed for this exact purpose):</p>\n\n<ul>\n<li>what about old-school plain HTML webmail applications?</li>\n<li>what about something like <a h...
null
null
null
null
null
2835
1
2849
2010-08-21T23:25:41.907
4
14406
<p>When accessing a site defined in my local dev environment, I can't seem to get past a 403 Forbidden error.</p> <p>Under /etc/apache2/sites-available/ I have defined a file fun.local:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName fun.local DocumentRoot /home/noah/work/fun ErrorLog /var/log/apache2/fun-error.log &lt;Directory /home/noah/work/fun&gt; Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all &lt;/Directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>The the apache error log for the site contains this error:</p> <pre><code>[Sat Aug 21 13:34:34 2010] [crit] [client 127.0.0.1] (13)Permission denied: /home/noah/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable </code></pre> <p>I am running apache2 and ubuntu 10.04.</p>
672
453
2010-08-22T07:06:40.913
2010-11-22T07:17:49.037
403 Forbidden Error when accessing enabled virtual host
[ "permissions", "apache2" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T12:24:04.023", "id": "2812", "postId": "2835", "score": "0", "text": "Provide the output for `ls -la` on `/home/noah`", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>Make sure to check the permissions on that directory. Realize that apache runs as the user 'www-data' and it will require read access to the files in that directory in order to function. </p>\n\n<p>To check the permission run from the command line:</p>\n\n<pre><code>ls -al /home/noah/\n</code></pre>\n\n<p>Note that Apache figures out if a directory is able to be served by checking the whole path for .htaccess files. This is in case there's a rule in /home/noah/.htaccess that says things should be denied, overriding the information setup in your virtualhost file. </p>\n\n<p>Allowing the www-data user to read the directory should help. The other thing you can do is to symlink the /home/noah/work/fun directory into /var/www where the apache user should be the default owner. </p>\n\n<p>Let me know if you need more details or if you can get there from here. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-22T16:55:15.377", "id": "2826", "postId": "2849", "score": "0", "text": "I think the problem actually lies in the fact that my home directory is decrypted when I login, which makes it unaccessible to apache.", "userDisplayName": null, "userId": "672" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T01:51:45.993", "id": "2849", "lastActivityDate": "2010-08-22T09:05:10.067", "lastEditDate": "2010-08-22T09:05:10.067", "lastEditorDisplayName": null, "lastEditorUserId": "455", "ownerDisplayName": null, "ownerUserId": "1550", "parentId": "2835", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Make sure to check the permissions on that directory. Realize that apache runs as the user 'www-data' and it will require read access to the files in that directory in order to function. </p>\n\n<p>To check the permission run from the command line:</p>\n\n<pre><code>ls -al /h...
null
0
null
null
null
2837
1
null
2010-08-21T23:50:52.193
8
642
<p>Are there any instant messengers for Ubuntu that support video and audio chat?</p>
779
235
2010-12-30T20:50:18.707
2010-12-30T20:50:18.707
Instant Messager that supports video and voice chat
[ "software-recommendation", "instant-messaging" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p><a href=\"http://live.gnome.org/Empathy\">Empathy</a> and <a href=\"http://www.pidgin.im\">Pidgin</a> support video and audio chats over Google Talk/Jabber/XMPP protocol. You could also give the recently launched <a href=\"http://www.google.com/chat/video\">Google Video and V...
null
null
null
null
null
2839
1
null
2010-08-22T00:35:13.013
8
398
<p>How do I communicate with the Ubuntu kernel team?</p>
1610
4
2010-08-23T14:04:14.767
2010-08-23T14:04:45.093
How do I communicate with the Ubuntu kernel team?
[ "kernel" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T07:20:04.177", "id": "2810", "postId": "2839", "score": "0", "text": "When you are answering your own question it strikes me as a bit odd for part of the answer to be the body of the question.", "userDisplayName": null, "userId": "453" }, { "creation...
null
[ { "accepted": null, "body": "<p>The Ubuntu Kernel Team is located in disparate cities throughout the world. We utilize IRC to communicate with each other as well as the Ubuntu user community. The team hangs out on the #ubuntu-kernel channel on <a href=\"https://help.ubuntu.com/community/InternetRelayChat\">...
null
null
null
null
null
2840
1
2846
2010-08-22T00:51:06.833
3
2990
<p>When I run the .deb file I downloaded from <a href="http://www.amazon.com/gp/dmusic/help/amd.html/ref=sv_dmusic_5" rel="nofollow">here</a>, I get this error:</p> <p><code>Error: Dependency is not satisfiable: libboost-filesystem1.34.1</code></p> <p>Does anyone know a work around for this?</p>
88
41
2010-08-28T15:10:23.677
2012-10-06T09:50:27.293
I'm getting an error when I try to install the Amazon MP3 Downloader
[ "package-management", "amazon-mp3-downloader" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The Amazon MP3 Downloader package is meant for use with 9.04 and depends on some packages that are now out of date. Fortunately, you can download the now-outdated <a href=\"http://packages.ubuntu.com/jaunty/libboost-filesystem1.34.1\" rel=\"nofollow\">libboost-filesystem1.34.1 from packages.ubuntu.com</a> and install it by hand.</p>\n\n<p>If the Amazon .deb gives you further dependency errors, I can help you find those packages as well.</p>\n\n<p>I should mention that there are alternatives to the Amazon MP3 Downloader. <a href=\"http://www.omgubuntu.co.uk/2010/01/pymazon-%E2%80%93-amazon-mp3-download-replacement/\" rel=\"nofollow\">Pymazon</a> is an option, and <a href=\"http://www.omgubuntu.co.uk/2010/06/amazon-mp3-download-extension-for.html\" rel=\"nofollow\">there is now a Banshee extension</a> to do the job.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-22T02:39:14.510", "id": "2804", "postId": "2846", "score": "2", "text": "The Pymazon downloader solves my problem.", "userDisplayName": null, "userId": "88" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T01:37:23.950", "id": "2846", "lastActivityDate": "2011-02-10T16:03:02.417", "lastEditDate": "2011-02-10T16:03:02.417", "lastEditorDisplayName": null, "lastEditorUserId": "428", "ownerDisplayName": null, "ownerUserId": "130", "parentId": "2840", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>The Amazon MP3 Downloader package is meant for use with 9.04 and depends on some packages that are now out of date. Fortunately, you can download the now-outdated <a href=\"http://packages.ubuntu.com/jaunty/libboost-filesystem1.34.1\" rel=\"nofollow\">libboost-filesystem1.34....
null
null
null
null
null
2842
1
null
2010-08-22T00:55:40.227
7
284
<p>How do I get involved with the Ubuntu kernel?</p>
1610
4
2010-08-23T14:05:14.747
2010-08-23T14:05:14.747
How do I get involved with the Ubuntu kernel?
[ "kernel" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>The kernel team is always interested in getting community help on the kernel. We need help triaging incoming bugs, reviewing patches proposed for the kernel, testing kernel images as well as helping to fix launchpad bugs. For more details see \"<a href=\"https://wiki.ubuntu.c...
null
null
null
null
null
2852
1
null
2010-08-22T05:57:12.563
6
3991
<p>I am trying to pint to a Brother MFC-7420 from my ubuntu 10.04 machine.</p> <p>The brother is attached to a windows XP machine and is shared.</p> <p>This is what I have tried: System->Administration->Printing, Add, Expand Network Printer, Windows Printer via SAMBA, Browse (I can find the printer no problems here), Foward, Choose Driver Dialog, Brother,</p> <p>My printer is not in this list</p> <p>So the next thing I tried was to download the printer driver from here <a href="http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/download_prn.html">http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/download_prn.html</a></p> <p>The driver installed fine but my printer still does not appear in the list.</p> <p>I also tried installing the cups wrapper but that gave the following error.</p> <blockquote> <p>Restarting Common Unix Printing System: cupsd [ OK ] cp: cannot stat `/usr/share/cups/model/MFC7420.ppd': No such file or directory dpkg: error processing cupswrappermfc7420 (--install): subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: cupswrappermfc7420</p> </blockquote> <p>I tried connecting the printer directly but even though I have installed the driver, when I go to printers and click on the printer (it shows up fine as a USB printer) then it say searching for drivers and then gives me a list, this is the same list as before which doesn't have my printer.</p> <p>It really shouldn't be this hard. on window you don't have to installing anything it just works and the same is true for my brothers Mac.</p> <p>How do I print to my printer?</p>
448
448
2010-08-22T23:58:55.387
2011-07-20T00:14:23.140
Network print to brother MFC-7420
[ "printing", "samba", "networking" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T14:07:39.433", "id": "2817", "postId": "2852", "score": "0", "text": "Does it work if you plug the printer directly in to the Linux box?", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-23T00:02:18.923", "id": "2855", ...
null
[ { "accepted": null, "body": "<p>It is fairly rare to find drivers which match to your exact model. Luckily, most printers are very similar to a lot of other printers, so you can use the drivers for a similar model. Go through the list, find a driver for a similar model. Go for a MFC-7xxx if possible, but an...
null
null
null
null
null
2855
1
2867
2010-08-22T07:59:45.813
6
8716
<p>Due to some strange reason, I've lost some of my <code>locale</code> settings. I've managed to restore most of them using <code>sudo dpkg-reconfigure locales</code>:</p> <pre><code>perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory </code></pre> <p>So I'm stuck with one missing value:</p> <pre><code>$ locale locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory LANG=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL= </code></pre> <p>Any idea how to restore them all?</p> <p>Thanks,</p> <p>Adam</p>
622
null
null
2012-09-19T09:34:58.100
locale: Reset lost settings
[ "locale" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>In case you've deleted some files, try reinstalling the locale package:</p>\n\n<pre><code>apt-get install --reinstall locales\n</code></pre>\n\n<p>You may want to do the same for language-support-(your langcode), language-pack-(your langcode)-base and other language packs (gnome, kde...) for your language.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T14:17:11.737", "id": "2867", "lastActivityDate": "2010-08-22T14:17:11.737", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "146", "parentId": "2855", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Happens to me occasionally too. Not sure what causes it but I just fire off:</p>\n\n<pre><code>sudo dpkg-reconfigure locales\n</code></pre>\n\n<p>And that seems to fix it (for me)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "conten...
null
null
2013-04-19T16:27:36.233
null
null
2857
1
2868
2010-08-22T09:30:10.573
3
523
<p>I have Ubuntu as main OS. I have created virtual Ubuntu in Sun VirtualBox and I get this error: <code>can not connect(ssh)/ping computers in local network</code>. If I configure network manually I even can not access to Internet. If I choose DHSP then I can access to Internet. Do you have some solution how to connect computers in local network from virtual Ubuntu?</p>
101
59676
2012-08-14T09:02:33.060
2012-08-14T09:02:33.060
Virtual Ubuntu Network Configuration
[ "configuration", "virtualization", "networking", "virtualbox" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Setting your network connection type to Bridged will give your virtual machine its own IP address on your network, where it will be able to see any of the other machines, including the VM host.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T14:49:43.170", "id": "2868", "lastActivityDate": "2010-08-22T14:49:43.170", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1217", "parentId": "2857", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>I used NAT in Sun VirtualBox network configuration. When I choose Bridge it worked...</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T10:07:39.230", "id": "2858", ...
null
null
null
null
null
2866
1
2869
2010-08-22T14:10:26.150
6
1763
<p>When exploring directories from a symlink (symbolic link) using Nautilus or Gnome Commander, the directory structure is displayed as if the symlink were a regular directory. When I open a document, apps differ in how they treat the path. For an .html document:</p> <ul> <li>opened w/ Firefox: Shows the real path as the address</li> <li>opened w/ NetBeans: ditto</li> <li>opened w/ Gedit: Shows the <strong>symlink</strong> path as the address</li> </ul> <hr> <ol> <li>Do I need to pay attention to these varying behaviors?</li> <li>I feel insecure when the symlink path is offered (because of my Windows background) -- can I ignore that? Can I proceed with confidence, and if so, does that cover all cases?</li> <li>An app will occasionally ask me if I want to preserve symlinks, treat symlinks as actual links, and so on. (ex., copying in Gnome Commander presents an option called "follow links" ... which I <em>assume</em> means symlinks). Your guidelines for that?</li> </ol>
1393
333
2010-08-22T15:47:13.087
2015-06-25T18:46:22.840
Symlinks and their paths are confusing - how can they be used effectively?
[ "filesystem", "shortcuts" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ol>\n<li><p>Not really, because either way you are still viewing/editing the files that the symlink is pointing to</p></li>\n<li><p>When the symlink path is given, I think it means that the application <em>thinks</em> that the file is at that path; however, the data is still being read from/written to the same place in the file system (the original file). So yes, you can ignore it.</p></li>\n<li><p>'Preserving symlinks', in my understanding, means that when you move a symlink file and it points to a relative path, the relative path will be adjusted so that it still points to the same file. It is probably a good idea to preserve symlinks. 'follow links' means that the action you are doing (such as copy) is done to the linked to files and all the files within the linked to directories. I think that if you follow links when copying, the actual files/folders will be copied to the new location. If you don't follow links, only the link is copied to the new address.</p></li>\n</ol>\n\n<p><a href=\"http://en.wikipedia.org/wiki/Symbolic_link\" rel=\"nofollow\">This wikipedia page</a> has a detailed explanation of symlinks</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-22T16:38:02.497", "id": "2825", "postId": "2869", "score": "0", "text": "+1. You should quote each question before you answer it - will be more readable.", "userDisplayName": null, "userId": "203" }, { "creationDate": "2010-08-22T19:48:41.223", "id": "2838", "postId": "2869", "score": "1", "text": "I thought the use of question numbers was adequate, myself.", "userDisplayName": null, "userId": "1393" }, { "creationDate": "2010-08-22T20:02:13.253", "id": "2841", "postId": "2869", "score": "0", "text": "Thanks, helpful answer. I have looked at the wikipedia article before, but I think it seemed too techie (as well as others I found) -- today it seemed to get more clear as I pressed on.", "userDisplayName": null, "userId": "1393" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-22T15:03:19.430", "id": "2869", "lastActivityDate": "2015-06-25T18:46:22.840", "lastEditDate": "2015-06-25T18:46:22.840", "lastEditorDisplayName": null, "lastEditorUserId": "367165", "ownerDisplayName": null, "ownerUserId": "667", "parentId": "2866", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<ol>\n<li><p>Not really, because either way you are still viewing/editing the files that the symlink is pointing to</p></li>\n<li><p>When the symlink path is given, I think it means that the application <em>thinks</em> that the file is at that path; however, the data is still be...
null
null
null
null
null
2872
1
2924
2010-08-22T16:16:41.603
27
1774
<p>For those who are not <a href="https://wiki.ubuntu.com/MOTU">MOTU</a> (people who maintain the Universe and Multiverse software <a href="https://help.ubuntu.com/community/Repositories/Ubuntu">repositories</a>) and do not have plans of the "I will apply to MOTU by $date" variety:</p> <p>What keeps you and others like you from trying to become MOTU? What makes you think you couldn't become one? </p> <p>I'm referring to both social and technological barriers.</p> <p><strong>EDIT:</strong> I'm only saying MOTU because it's a pretty generic group, but "why aren't you packaging / patching and intending to eventually try for upload rights?" is an even more general version.</p>
1158
1158
2010-08-22T19:52:14.290
2012-09-08T03:08:45.727
What are the biggest barriers to walking the MOTU/developer path?
[ "development", "motu" ]
11
9
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T17:00:19.363", "id": "2827", "postId": "2872", "score": "7", "text": "Please make MOTU a link to https://wiki.ubuntu.com/MOTU for people who don't know what it is (like me)", "userDisplayName": null, "userId": "1333" }, { "creationDate": "2010-08-22T...
{ "accepted": true, "body": "<p><strong>Provide better documentation.</strong></p>\n\n<p>I have taken part in the developer weeks IRC sessions related to packaging and MOTU stuff (twice already) and found that during those sessions you typically have a vague understanding of the process. But if you look at the Ubuntu wiki pages two weeks later, you can't get all the pieces together anymore. Those pages often are kind of a bullet point lists from people who already understand the process in detail. But that is not enough to make the content understandable for newbies.</p>\n\n<p>So maybe you should try to get the documentation wiki pages explain the process, tools and people involved in more detail. Or even with complete examples. During the IRC sessions there are always repeatable examples, maybe those make the difference to the wiki pages.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-23T14:09:05.317", "id": "2889", "postId": "2924", "score": "2", "text": "I agree the wiki pages are not very helpful. I found Daniel Holbach's videos on YouTube most helpful when I was starting out. Are logs of the IRC sessions posted to the wiki?", "userDisplayName": null, "userId": "1158" } ], "communityOwnedDate": "2010-08-26T03:34:34.483", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T07:26:00.633", "id": "2924", "lastActivityDate": "2010-08-23T07:26:00.633", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "277", "parentId": "2872", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>I think the biggest technical barrier is knowing how to create Debian packages. While it is relatively simple to create a working package, it is much harder to create packages up to the standard of Debian and Ubuntu. Also, the guides on how to create packages normally deal wi...
2010-08-26T03:34:34.483
null
2013-10-22T17:37:59.780
null
null
2877
1
2879
2010-08-22T18:02:11.557
19
12343
<p>I am building a new .deb and want to fix lintian errors in the packaging. However, every time I rebuild, the rules file does a 'make clean' and thus starts compiling again.</p> <p>Is there a way to instruct the build process that I do not want to recompile, that I'm just altering the packaging, and using the last set of binaries will be fine for now?</p>
1630
null
null
2010-08-22T19:16:09.870
Can I rebuild a package without recompiling the source?
[ "dpkg", "compiling" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>That depends on how you're building the package. <code>dpkg-buildpackage</code> doesn't call the <code>clean</code> target if you pass it the <code>-nc</code> option. Another useful option for test build is <code>-uc</code> (don't sign the changes file). <code>debuild</code> inherits these options from <code>dpkg-buildpackage</code>.</p>\n\n<p>For a test build, you can simply do <code>fakeroot debian/rules binary</code> (adjust the target as appropriate for a multiple-binary package).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-22T18:54:05.187", "id": "2879", "lastActivityDate": "2010-08-22T18:54:05.187", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1059", "parentId": "2877", "postTypeId": "2", "score": "27" }
[ { "accepted": true, "body": "<p>That depends on how you're building the package. <code>dpkg-buildpackage</code> doesn't call the <code>clean</code> target if you pass it the <code>-nc</code> option. Another useful option for test build is <code>-uc</code> (don't sign the changes file). <code>debuild</code> ...
null
null
null
null
null
2884
1
null
2010-08-22T19:35:29.347
84
93814
<p>How can I determine the version of the running kernel?</p>
1610
4
2010-08-23T14:02:16.970
2020-09-21T17:05:44.577
How can I determine the version of the running kernel?
[ "kernel" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2020-09-21T13:21:47.410
null
null
2888
1
null
2010-08-22T19:42:32.733
1
5036
<p>I downloaded ubuntu over the weekend replacing Windows Vista and so far everything has been fantastic, except for one thing. I cannot get my webcam to work. I've tried camorama and camera monitor but they can't load an image. Can anyone help with any apps that I can download?</p> <p>Many thanks</p> <p>Updated 23/8/10: I have two webcams that I can use - a Microsoft Lifecam VX-3000 and a Trust WB-1400T webcam. I have downloaded 'Cheese Webcam Booth', 'Camorama Webcam Viewer' and 'Kamoso'. I have read that there are a lot of problems using the MS Lifecam with Linux so any recommendations on webcams which work particularly well with Ubuntu would be very much appreciated.</p>
null
null
2010-08-23T21:04:09.527
2010-08-24T06:50:28.990
How do I get my webcam to work
[ "webcam" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T19:44:20.200", "id": "2837", "postId": "2888", "score": "2", "text": "What kind of webcam do you have?", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-08-23T04:34:22.163", "id": "2862", "postId": "2888", "score": "1", ...
null
[ { "accepted": null, "body": "<p>We need the make and model to really help you but you can look at the official support list here: <a href=\"https://wiki.ubuntu.com/HardwareSupportComponentsMultimediaWebCameras\" rel=\"nofollow noreferrer\">https://wiki.ubuntu.com/HardwareSupportComponentsMultimediaWebCamera...
null
null
2013-03-14T17:05:46.643
Philip Kee
Philip Kee
2890
1
3416
2010-08-22T20:51:57.430
4
603
<p>Chrome removes itself from the Internet menu every time I reboot. How can I fix this? The only way to get it back is to reinstall Chrome. Is this a Dev issue or a general error?</p> <p>I am using Ubuntu 10.04.1 with Gnome. Chrome is the 6.0.495.0 dev version. I downloaded it here: <a href="http://www.chromium.org/getting-involved/dev-channel" rel="nofollow">http://www.chromium.org/getting-involved/dev-channel</a></p>
332
332
2010-08-22T21:30:16.570
2013-03-14T11:54:38.963
Google Chrome removes itself from Menu on reboot
[ "menu", "google-chrome" ]
5
6
CC BY-SA 2.5
[ { "creationDate": "2010-08-22T21:18:57.743", "id": "2849", "postId": "2890", "score": "0", "text": "What desktop are you using? Gnome, KDE, Xfce, ...? Which release of Ubuntu do you use? what is the package release of chrome, where do you get it from?", "userDisplayName": null, "userId":...
{ "accepted": true, "body": "<p>you can create new item on menu list. fill Name with >> Chromium Web Browser, fill Command with >> chromium-browser %U</p>\n\n<p>close the Menu Editor, and now Chromium shortcut will appear on your main Menu. ;)</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-05T01:39:47.170", "id": "3658", "postId": "3416", "score": "0", "text": "This is a workaround, which is good, but it also needs to be fixed in the package", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-09-11T18:18:53.890", "id": "4068", "postId": "3416", "score": "0", "text": "This works for now so I'll accept it.", "userDisplayName": null, "userId": "332" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-01T09:47:10.300", "id": "3416", "lastActivityDate": "2010-09-01T09:47:10.300", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1827", "parentId": "2890", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>you can create new item on menu list. fill Name with >> Chromium Web Browser, fill Command with >> chromium-browser %U</p>\n\n<p>close the Menu Editor, and now Chromium shortcut will appear on your main Menu. ;)</p>\n", "commentCount": "2", "comments": [ { ...
null
null
null
null
null
2895
1
null
2010-08-22T22:12:27.073
3
369
<p>I run the following at regular intervals in order to sync my laptop with my desktop. When there's nothing to do, and therefore no output from unison, i want it to complete silently; when there's syncing to be done, t want it to pop up in a terminal so I can accept or reject changes as required. </p> <p>Currently, it always pops up a window regardless and i'm harassed by occasional blank terminals appearing and disappearing. Here's the command that I run automatically every 30 minutes or so: </p> <pre class="lang-bsh prettyprint-override"><code>ps -e | grep -i unison || xterm -e 'unison -auto -perms=0 -terse Local_Sync' </code></pre> <p>Can anyone think of a better way to accomplish this?</p>
953
507051
2017-12-13T17:08:23.143
2017-12-13T17:08:23.143
How can I make a console window only appear if the command I'm running produces output?
[ "command-line", "sync" ]
2
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-23T05:10:12.703", "id": "2863", "postId": "2895", "score": "0", "text": "I'm not familiar with unison, but -auto means \"automatically accept default actions\" (according to the man page). What is there to accept or reject? If no user interaction is required, don't r...
null
[ { "accepted": null, "body": "<p>You'd probably have to draw it out into a script where you could pipe the output to a variable, check if there's anything in that var and then echo it in an xterm if it has content.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-24...
null
null
2013-03-14T17:05:50.983
null
null
2896
1
2900
2010-08-22T22:17:58.830
4
590
<p>I do some voluntary work for a small private K-12 school, and they just received a donation of about 20 used computers from a large corporation.</p> <p>They came with blank hard-drives, so I need to install an OS and I’m thinking Ubuntu might be a great option.</p> <p>Ideally, I would like to have central user accounts and shared central storage.</p> <p>Is there something similar to MS-AD for Ubuntu?</p>
1639
null
null
2012-08-14T08:40:22.923
How do I setup a Ubuntu network?
[ "networking", "server" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you want a more complete solution, I advice you to use <a href=\"https://help.ubuntu.com/community/OpenLDAPServer\" rel=\"nofollow\">OpenLdap</a>.</p>\n\n<p>OpenLDAP give you the possibility to authenticate your LAN users across the network etc.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-22T22:35:59.947", "id": "2900", "lastActivityDate": "2012-08-14T08:40:22.923", "lastEditDate": "2012-08-14T08:40:22.923", "lastEditorDisplayName": null, "lastEditorUserId": "59676", "ownerDisplayName": null, "ownerUserId": "1076", "parentId": "2896", "postTypeId": "2", "score": "9" }
[ { "accepted": null, "body": "<p>Rather than MS-AD you could use samba for networked drives you can set passwords on folders and stuff too if you need access permissions.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-23T21:13:00.947", "id": "2919", ...
null
null
null
null
null
2901
1
2905
2010-08-22T22:41:50.237
22
55956
<p>I was having problems connecting to the internet either by wireless or wired connection. I keep getting an icon in the systray that has a tooltip that says "unmanaged" and when I click on it I get a "Network management disabled". </p> <p>I googled and found the command:</p> <pre><code>sudo dhclient eth0 </code></pre> <p>Which finally enabled my network and I have net. The problem is I still get the icon with the some word "unmanaged" </p> <p>Can anyone help me out? I just want to know what is happening and why did I had to go to the command line to enable my network.</p> <p>I had to put the computer in sleep mode and then it wouldn't wake up, so I rebooted the machine. The network manager problems started again, this time the file mentioned by maco had the value set to true and it still wouldn't work.</p> <p>Anyone know how I can make this permanently work? I did a </p> <pre><code>sudo init 0 </code></pre> <p>And when I booted the machine at a later time I had the network manager enabled. Have no clue why.</p>
1326
169736
2013-12-18T17:05:13.213
2023-03-14T17:17:31.300
Unmanaged network icon - Network manangement disabled
[ "network-manager" ]
7
2
CC BY-SA 3.0
[ { "creationDate": "2017-04-18T08:10:23.903", "id": "1422797", "postId": "2901", "score": "0", "text": "For problems in 16.10, please see [Ethernet device not managed](http://askubuntu.com/questions/882806/ethernet-device-not-managed).", "userDisplayName": null, "userId": "25798" }, {...
{ "accepted": true, "body": "<p>I find this happens after a bad shutdown. Just change</p>\n<pre><code>managed=false\n</code></pre>\n<p>to</p>\n<pre><code>managed=true\n</code></pre>\n<p>in <code>/etc/NetworkManager/nm-system-settings.conf</code></p>\n<hr />\n<p><strong>Note:</strong> In newer versions of Ubuntu, the file is at <code>/etc/NetworkManager/NetworkManager.conf</code></p>\n<p>Then restart service</p>\n<pre><code>service network-manager restart\n</code></pre>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-08-23T16:16:37.603", "id": "2899", "postId": "2905", "score": "0", "text": "Thanks so much!!! I edited the file, rebooted and it worked great :) Thanks!!!!!!!!!!!", "userDisplayName": null, "userId": "1326" }, { "creationDate": "2010-08-24T10:20:20.743", "id": "2942", "postId": "2905", "score": "0", "text": "I edited the question to add that the same thing has happened again and your solution unfortunately doesn't seem to work any more. I had to switch to gnome to use the wireless connections available :(", "userDisplayName": null, "userId": "1326" }, { "creationDate": "2012-05-16T02:30:57.297", "id": "294728", "postId": "2905", "score": "3", "text": "maco's solution now requires editing of /etc/NetworkManager/NetworkManager.conf. The setting is still the same.", "userDisplayName": null, "userId": "47458" }, { "creationDate": "2017-01-29T10:04:33.970", "id": "1364660", "postId": "2905", "score": "0", "text": "After changing the .conf file you have to restart the network manager. For Debian/Ubuntu issue this command: sudo service network-manager restart", "userDisplayName": null, "userId": "478561" }, { "creationDate": "2017-04-12T06:59:54.100", "id": "1417847", "postId": "2905", "score": "1", "text": "This solution doesn't work for me in 16.10.", "userDisplayName": null, "userId": "367134" }, { "creationDate": "2018-05-11T07:38:06.203", "id": "1683536", "postId": "2905", "score": "1", "text": "worked for me 18.04", "userDisplayName": null, "userId": "115387" }, { "creationDate": "2018-11-25T21:01:05.817", "id": "1805097", "postId": "2905", "score": "2", "text": "Instead of rebooting, `service network-manager restart` will also work.", "userDisplayName": null, "userId": "76733" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-22T23:27:01.463", "id": "2905", "lastActivityDate": "2023-03-14T17:17:31.300", "lastEditDate": "2023-03-14T17:17:31.300", "lastEditorDisplayName": null, "lastEditorUserId": "393882", "ownerDisplayName": null, "ownerUserId": "1158", "parentId": "2901", "postTypeId": "2", "score": "35" }
[ { "accepted": true, "body": "<p>I find this happens after a bad shutdown. Just change</p>\n<pre><code>managed=false\n</code></pre>\n<p>to</p>\n<pre><code>managed=true\n</code></pre>\n<p>in <code>/etc/NetworkManager/nm-system-settings.conf</code></p>\n<hr />\n<p><strong>Note:</strong> In newer versions of U...
null
null
null
null
null
2902
1
24370
2010-08-22T23:00:01.710
5
13769
<p>Using a random UMTS USB stick (Huwei 160 or something like this) works an current Ubuntu pretty much out of the box and the setup via network manager (nm-applet) is convenient.</p> <p>But it does not display the current signal strength or modes of operation (which speed-mode is used etc.).</p> <p>What are useful tools to display/monitor such information?</p>
1627
null
null
2021-07-05T05:57:38.477
How to display UMTS signal strength?
[ "networking", "network-manager", "wireless", "usb" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Since version <strong>0.8.1</strong> of <strong>network-manager</strong> is already all-inclusive (http://live.gnome.org/NetworkManager/ReleaseProcess).</p>\n\n<p>Otherwise you can use <strong>umtsmon</strong> (http://umtsmon.sourceforge.net/)</p>\n\n<p>or <strong>vodafoneMobileConnect</strong> (https://forge.betavine.net/projects/vodafonemobilec/)</p>\n\n<p>or <strong>bcm</strong> (https://forge.betavine.net/projects/bcm/)</p>\n\n<p>if you have a too old version of ubuntu that does not allow you to update network-manager.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2014-04-19T18:26:14.010", "id": "592086", "postId": "24370", "score": "0", "text": "What does \"all-inclusive\" mean? I can't find any info about connection mode in network manager (it shows the signal strength in the icon).", "userDisplayName": null, "userId": "8152" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-01T22:21:57.527", "id": "24370", "lastActivityDate": "2011-02-01T23:55:58.167", "lastEditDate": "2011-02-01T23:55:58.167", "lastEditorDisplayName": null, "lastEditorUserId": "9520", "ownerDisplayName": null, "ownerUserId": "9520", "parentId": "2902", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>This screenlet works for me-\n<a href=\"http://gnome-look.org/content/show.php/WirelessScreenlet?content=71861/\" rel=\"nofollow\" title=\"WirelessScreenlet\">WirelessScreenlet</a></p>\n\n<p>You need to install screenlets first from the software center.</p>\n", "commentCo...
null
null
null
null
null
2904
1
null
2010-08-22T23:15:53.493
2
1158
<p>I had to reinstall 10.04. It had been working with no problems and then I did something. I decided that reinstalling the OS would be the easiest fix.</p> <p>After reinstalling I cannot access the internet. I am using a Dell Mini 9.</p> <p>Might I need new drivers?</p>
1640
527764
2022-03-16T09:47:49.890
2022-03-16T09:47:49.890
No Internet after reinstalling on Dell Mini 9
[ "wireless", "10.04", "dell-mini-9" ]
3
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>You probably need the firmware installed for the wireless card. Start with the <code>b43-fwcutter</code> package.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T03:08:...
null
null
2013-03-14T17:05:55.023
null
null
2906
1
2910
2010-08-22T23:55:42.990
5
866
<p>I have used Alacarte to add some shortcuts to my games start folder. Now I would like to make these shortcuts available for all users. How can I do this?</p>
760
null
null
2015-06-25T18:47:33.217
Make Gnome shortcuts available to other users
[ "gnome", "shortcuts" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>All of your users's menu settings are stored in <code>~/.config/menus/</code>. All you have to do is copy yours to the desired users.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T00:44:05.500", "id": "2910", "lastActivityDate": "2010-08-23T00:44:05.500", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "646", "parentId": "2906", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>All of your users's menu settings are stored in <code>~/.config/menus/</code>. All you have to do is copy yours to the desired users.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate"...
null
null
null
null
null
2919
1
2922
2010-08-23T05:45:25.393
0
150
<p>I installed indicator-network on maverick and it shows only Ethernet with no option to add a DSL connection.I am using pppoeconf currently(could be the problem).</p>
305
null
null
2010-08-23T06:36:32.650
How to make indicator-network work with DSL?
[ "indicator" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><code>indicator-network</code> works with <a href=\"http://connman.net/about\" rel=\"nofollow\">ConnMan</a> instead of NetworkManager, and judging from their site ConnMan doesn't support PPP currently (it could be added with a plugin, if one exists). (Also, this indicator is only going to be used for the Netbook Edition, not for the Desktop Edition.)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T06:36:32.650", "id": "2922", "lastActivityDate": "2010-08-23T06:36:32.650", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "935", "parentId": "2919", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p><code>indicator-network</code> works with <a href=\"http://connman.net/about\" rel=\"nofollow\">ConnMan</a> instead of NetworkManager, and judging from their site ConnMan doesn't support PPP currently (it could be added with a plugin, if one exists). (Also, this indicator is...
null
null
null
null
null
2920
1
2921
2010-08-23T05:48:40.067
34
4182
<p>Just for curiosity, sometimes while installing software throught <code>apt-get install software_name</code> the terminal prompt me for a confirmation "type Yes or No", but not allways.</p> <p>I dont mean the sudo password prompt, but the message "Will be downloaded and configrated XXX Kb, continue?" (or something similar)</p> <p>Why?</p>
829
67335
2014-08-05T05:35:30.710
2018-11-28T03:20:42.117
Why `sudo apt-get install XXXX` sometimes request confirmation, others not?
[ "apt", "software-installation", "package-management" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2015-03-19T18:51:24.443", "id": "834696", "postId": "2920", "score": "2", "text": "Essentially, if packages other than those mentioned in the arguments need to be installed, it will ask.", "userDisplayName": null, "userId": "158442" } ]
{ "accepted": true, "body": "<p>It will usually ask you if there are suggested or recommended packages that depend on the software you are attempting to install, \nIt might also depend on the size of the program or security of the repository you are downloading from.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-23T07:41:37.200", "id": "2869", "postId": "2921", "score": "0", "text": "i thought the same motivations.. but i want to be secure of the answer", "userDisplayName": null, "userId": "829" }, { "creationDate": "2010-08-24T12:47:56.663", "id": "2948", "postId": "2921", "score": "0", "text": "Yes, this answer is correct. I'll add that you can (useful if you're trying to automate something) use the `-y` flag if you don't want to be prompted.", "userDisplayName": null, "userId": "203" }, { "creationDate": "2010-08-25T14:38:35.757", "id": "3027", "postId": "2921", "score": "0", "text": "@Umang: thanks for the hint, but i dont need to automate anything at the moment, was just a curiosity ;)", "userDisplayName": null, "userId": "829" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-23T06:09:17.943", "id": "2921", "lastActivityDate": "2018-11-28T03:20:42.117", "lastEditDate": "2018-11-28T03:20:42.117", "lastEditorDisplayName": null, "lastEditorUserId": "1643", "ownerDisplayName": null, "ownerUserId": "1643", "parentId": "2920", "postTypeId": "2", "score": "26" }
[ { "accepted": true, "body": "<p>It will usually ask you if there are suggested or recommended packages that depend on the software you are attempting to install, \nIt might also depend on the size of the program or security of the repository you are downloading from.</p>\n", "commentCount": "3", "co...
null
null
null
null
null
2926
1
2983
2010-08-23T09:14:44.833
7
50097
<p>I've just done a fresh install of Ubuntu (10.04.1) plus LAMP (via <code>sudo tasksel install lamp-server</code>) and everything is working fine. However, it does so until I need to work on localhost when I do not have an internet connection. For example, as soon as I unplug the ethernet cable from the NIC, localhost and 127.0.0.1 stop working. </p> <p>The message I get from the browser is:</p> <blockquote> <p>This web page is not available.</p> </blockquote> <p>Then, as soon as I plug the ethernet cable into the laptop again, everything is back to normal again. I need to work on localhost sometimes when I do not have access to the internet.</p> <p>Any idea how to fix this problem? I had this problem before, but can't remember what I did to resolve it.</p>
1646
74578
2012-09-10T12:32:07.047
2012-09-10T12:32:07.047
http://localhost/ not working
[ "networking", "apache2", "php", "lamp" ]
4
1
CC BY-SA 3.0
[ { "creationDate": "2012-06-17T07:36:28.933", "id": "184181", "postId": "2926", "score": "0", "text": "Did [this answer](http://askubuntu.com/a/2983/22949) (which you accepted) really solve your problem? I'm asking because you said that `http://127.0.0.1` didn't work either. Whether or not `local...
{ "accepted": true, "body": "<p>Check that you have this line in /etc/hosts:</p>\n\n<pre><code>127.0.0.1 localhost\n</code></pre>\n\n<p>If it is not there, add it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T20:19:13.207", "id": "2983", "lastActivityDate": "2010-08-23T20:19:13.207", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1667", "parentId": "2926", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>if you are using firefox, Uncheck </p>\n\n<p>File > Work Offline and then try again.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-23T09:26:59.413", "id": "2871", "postId": "2928", "score": "0", "te...
null
null
null
null
null
2927
1
2930
2010-08-23T09:24:59.727
3
19810
<p>Background: I'm looking to put a series of Ubuntu machines into retail locations, they're being used as dumb kiosks to show a series of slides onto large LCD panel TV screens. Once installed, they won't have a keyboard or mouse connected but will have a fixed IP on the local network. Everything is configured to auto-start, no automatic updates, no power saving etc - I think we're pretty-much good to go apart from one thing. <b>I need the retail staff to be able to restart the boxes if a problem arises.</b></p> <p>We have VNC running (now that we've turned off desktop enhancements!) so that we can remotely get into the machines if we need to, but that's not something we would allow the retail staff to do. <i>The machines are going to be physically 'out of the way' (probably in the ceiling space) so <b>the power button is not easily accessible!</b></i>.</p> <p>I'd like to have some means of allowing the retail staff to restart the Ubuntu machine, from the desktop of one of their Windows terminals. I don't really want to give them some kind of raw terminal access (the command line will frighten them!) and I don't want them to use VNC (as stated above). Ideally there would be an icon on the Windows desktop, they double-click it, reply to a simple 'are you sure?' prompt, and then the Ubuntu box is told to restart. The Windows side of that won't be a problem, we can write something using Delphi, Python &amp; Qt4, whatever - it's the Ubuntu side of it I'm stuck with.</p> <p>Out of sight/view, could I have a Windows program open a terminal across the network and tell Ubuntu to restart? Is this what SSH could be used for (I have never set that kind of thing up). The Windows programming side isn't really an issue, it's just that I'm a total Ubuntu noob and don't know where to start from the platform point of view.</p> <p>The other thing we considered is also having the machine automatically restart itself at a set time each day (obviously out of store hours!). To me, that seems a bit unnecessary (though forcing a restart once a week/month might be worthwhile).</p> <p>Any thoughts or suggestions? Being able to restart the box on demand across the network is my prime requirement.</p>
424
null
null
2012-08-31T14:46:05.850
Best way to remote restart Ubuntu from Windows machine
[ "remote-access" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<blockquote>\n <p>Out of sight/view, could I have a Windows program open a terminal across the network and tell Ubuntu to restart? Is this what SSH could be used for[?]</p>\n</blockquote>\n\n<p>Yes. That's effectively how I'd do it. First step is you'll want to install Putty on the Windows computers. This allows you to SSH in. But don't worry about that for now. Let's do this backwards, starting from the Ubuntu machine.</p>\n\n<p>I would write a script on the Ubuntu machine to do the restarting. If you can ssh in, chances are you don't need to do a full reboot. You could argue that you \"might as well\" but it often means the reboot takes four or five times longer than it needed to be; it's just a waste of time.</p>\n\n<p>You should be able to get away with just restarting GDM (<code>sudo restart gdm</code>) so I'd write an interactive Python script that prompts the user to make sure <em>they're</em> sure they want to restart GDM and then restart it. After that, it would wait for five seconds, and then ask them if it's working. If not, do a full reboot (<code>sudo reboot</code>).</p>\n\n<p><strong>Edit:</strong> There's also a possibility you might just be able to restart the application that these screens are displaying without even restarting GDM. I don't know what you expect to fall over but assume all three and give the user the option to restart each sequentially, starting with the app, then gdm, then the machine.</p>\n\n<p>You can use curses to make this look prettier.</p>\n\n<p>Next up you need to make sure your ubuntu user can do these root-level commands. Run <code>sudoedit /etc/sudoers</code> and add something like this:</p>\n\n<pre><code>Cmnd_Alias REBOOT = /sbin/reboot\nCmnd_Alias RESTART = /sbin/restart\n\nuseraccount ALL=REBOOT\nuseraccount ALL=RESTART\n</code></pre>\n\n<p>Subbing <code>useraccount</code> for the username of the account that would be running this script.</p>\n\n<p>You should be able to log in via SSH and test the script now.</p>\n\n<p>The last piece of the puzzle is hooking up SSH to Ubuntu and running the script automatically. You can use a certificate (it's probably more secure) but for this example I'll just use a plaintext password.</p>\n\n<pre><code>putty.exe useraccount@1.2.3.4 -pw password -m commands.txt\n</code></pre>\n\n<p>Obviously sub out <code>useraccount</code>, <code>1.2.3.4</code> and <code>password</code> with real values. <code>commands.txt</code> should be a text file on the Windows computer containing something like this:</p>\n\n<pre><code>python my_python_script.py\n</code></pre>\n\n<p><strong>Note:</strong> The path when you login with be <code>/home/useraccount/</code> so either put your python script in there or alter the path in <code>commands.txt</code>.</p>\n\n<p><strong>Important Note:</strong> Putty will close as soon as its command finishes running. That means your Python script MUST be interactive (at least ask \"Press Any Key to Continue\" before exiting) or the user won't see any output. This is simple enough. You mentioned Python, so I assume you know (or know how to find out) how to do simple prompts. As I said earlier, a simple curses interface would look the most professional.</p>\n\n<p><strong>Important Note 2:</strong> Sometimes a machine/software fails to the point where a hard restart is the only option. If you're the computers in a space that is really hard to get to, it's certainly worth considering making sure you have access to their power supply so you can do a \"hard off-and-on\" as a last resort. Make sure you use a journalling filesystem so the staff don't screw it up if they use this too often and warn the staff that if they don't use it as a last resort, evil circus people will steal their children, etc. There are few things worse than a staffer who smacks the hard-reset button at the smallest hiccough.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-23T11:10:15.853", "id": "2878", "postId": "2930", "score": "0", "text": "Oli, thanks - that's an /awesome/-looking answer. I'll try it out this evening and report back tomorrow.", "userDisplayName": null, "userId": "424" }, { "creationDate": "2010-09-03T09:15:29.097", "id": "3547", "postId": "2930", "score": "0", "text": "I didn't get into the aliases etc in the end (though I plan to come back and look at that) - once I'd realised that I could connect to the Ubuntu box and talk to it via SSH from within my Delphi software, I knocked up a little Windows applet that allows them to restart the box. The address, username and password are configuration options and effectively they just have a button with an 'Are You Sure' prompt afterwards. Works a treat - thanks for your invaluable input!", "userDisplayName": null, "userId": "424" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T10:53:26.147", "id": "2930", "lastActivityDate": "2010-08-23T12:47:15.997", "lastEditDate": "2010-08-23T12:47:15.997", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "2927", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>If you can configure ssh in the windows machine it should be quite easy. This is what I do right now to execute some remote command from one ubuntu server to another</p>\n\n<pre><code>ssh ip.number.0.28 -i /home/javier/.ssh/id_rsa_web -l javier \"cd /home/javier/sincrotod;./s...
null
null
null
null
null
2936
1
null
2010-08-23T13:05:04.790
20
57390
<p>I am looking for software programs to use my TV Tuner card in Ubuntu. I have mythTV installed and use it quite a bit. But I am looking for a program that can tune my tuner card in just a window, not only a full-screen. </p> <p>E.g. - I would like to watch something in a browser, while having a TV channel playing in another window. Maybe a program like VLC that can control my tuner?</p>
689
866
2010-12-28T09:59:21.517
2023-02-25T09:33:46.023
What software is available to use TV tuner card?
[ "software-recommendation", "mythtv", "tv-tuner" ]
7
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Me TV is a pretty decent under-appreciated application for DVB-* devices.</p>\n<p>Has an EPG, even recording facilities. Much, <em>much</em> lighter than MythTV.</p>\n<p>To install Me TV in Ubuntu 16.04 and earlier open the terminal and type:</p>\n<pre><code>sudo apt install ...
null
null
null
null
null
2938
1
null
2010-08-23T13:12:23.700
5
676
<p>I found <a href="http://ubuntuforums.org/showthread.php?t=1066964">a thread on the Ubuntu forums</a>, but it requires me to change the source of <code>gnome-panel</code> and recompile. Is that really the only option if I want to see more than 5 bookmarks in the "Places" menu? I have a huge monitor -- it seems funny to only show two bookmarks and push the others into a separate "Bookmarks" sub-menu.</p>
1528
null
null
2010-08-23T19:25:51.753
How do I display more than 5 bookmarks in gnome-panel "Places" menu?
[ "gnome-panel" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<blockquote>\n <p>Is that really the only option if I want to see more than 5 bookmarks in the \"Places\" menu?</p>\n</blockquote>\n\n<p>Yes. I'm suffering the same issue. I've posted bugs on <a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/282842\" rel=\"no...
null
null
null
null
null
2943
1
2945
2010-08-23T13:33:18.930
59
12240
<p>At our university we can get almost any ubuntu package installed we want, but we are not superusers ourselves (we need to request packages being installed).</p> <p>With some libraries it is not always easy to know whether the package is already installed or not. Is there a simple way/command to check this?</p>
1418
147044
2014-04-02T11:14:07.140
2021-02-15T14:26:19.913
How can I check if a package is installed (no superuser privileges)?
[ "package-management" ]
9
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<pre><code>apt-cache policy &lt;package name&gt;\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-23T16:28:23.280", "id": "2900", "postId": "2945", "score": "8", "text": "It's important to know that it supports tab completion in the package name. So it's quite useful even when you don't know the exact package name.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2019-01-11T09:18:21.680", "id": "1829759", "postId": "2945", "score": "1", "text": "Shame that still exits with status 0 even if the package is not present. `dpkg -s` does however: https://askubuntu.com/a/1108801/52975", "userDisplayName": null, "userId": "52975" }, { "creationDate": "2019-01-25T03:55:41.300", "id": "1836769", "postId": "2945", "score": "0", "text": "With [friendlier `apt`](https://manpages.ubuntu.com/manpages/bionic/man8/apt.8.html): `apt policy <package name>` or `apt show <package name>` for more info.", "userDisplayName": null, "userId": "349837" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T13:37:25.553", "id": "2945", "lastActivityDate": "2010-08-23T13:37:25.553", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "2943", "postTypeId": "2", "score": "59" }
[ { "accepted": null, "body": "<p>You can use dselect. It provides non-su read-only access.</p>\n\n<p>Also, <code>dpkg -s &lt;package name&gt;</code> provides a lot of details related to a package. Eg\"</p>\n\n<pre><code>userme:~$ dpkg-query -s sl\nPackage: sl\nStatus: unknown ok not-installed\nPriority: opti...
null
null
null
null
null
2946
1
2947
2010-08-23T13:43:27.507
102
80536
<p>What are some alternatives to WinMerge and the pros and cons of each?</p>
1188
44179
2014-04-16T03:48:30.540
2014-08-13T11:47:20.807
What are some good GUI diff and merge applications available for Ubuntu?
[ "software-recommendation" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2014-08-13T11:49:23.707", "id": "690425", "postId": "2946", "score": "0", "text": "See also: [Does Ubuntu have a graphical software to compare and merge differences in files?](http://askubuntu.com/q/510724/178596)", "userDisplayName": null, "userId": "178596" }, { ...
{ "accepted": true, "body": "<p>The best I like is <a href=\"http://meld.sourceforge.net/\">Meld</a></p>\n\n<p>There are many choices available though. As a vim fan I find myself using vimdiff, kompare for the kde crowd - there also some paid version that have linux versions like <a href=\"http://www.scootersoftware.com/\">Beyond Compare </a>. The pros/cons depends on what you're looking for/looking to do. </p>\n\n<p>vimdiff is great because you can run it from a terminal, over an ssh connection, and if you already use vim, you get to keep your tools/config options. </p>\n\n<p>Meld has a pretty clean user interface, and does three way and directory diffs. You'll have to try a couple and see which does the job as you're expecting them to do for your own needs.</p>\n\n<p>To install <a href=\"https://apps.ubuntu.com/cat/applications/meld/\">Meld<img src=\"https://i.stack.imgur.com/0wAin.png\" alt=\"Meld app page\"></a> from the Ubuntu repos, you can run:</p>\n\n<pre><code>sudo apt-get install meld\n</code></pre>\n\n<p>You can then pick the files/folders to compare, and compare them:\n<img src=\"https://i.stack.imgur.com/ZoFMK.png\" alt=\"enter image description here\">\n<img src=\"https://i.stack.imgur.com/MZoaY.png\" alt=\"enter image description here\"></p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-08-23T15:03:24.053", "id": "2892", "postId": "2947", "score": "0", "text": "I use meld a lot, it's support for svn, mercurial and git is great.", "userDisplayName": null, "userId": "17" }, { "creationDate": "2010-08-24T03:13:33.127", "id": "2930", "postId": "2947", "score": "0", "text": "Meld is awesome, its included as the default merge tool in RabbitVCS", "userDisplayName": null, "userId": "168" }, { "creationDate": "2010-09-29T10:39:18.087", "id": "4986", "postId": "2947", "score": "2", "text": "http://mercurial.selenic.com/wiki/Meld describes some stability issues and notes the lack of (auto) merging features.", "userDisplayName": null, "userId": "1627" }, { "creationDate": "2014-07-23T02:33:31.270", "id": "673118", "postId": "2947", "score": "0", "text": "I must say that this one pulls in a LOT of dependencies: libbonoboui2-0 libbonoboui2-common libglade2-0 libgnomecanvas2-0 libgnomecanvas2-common libgnomeui-0 libgnomeui-common libgtksourceview2.0-0 libgtksourceview2.0-common python-glade2\n python-gnome2 python-gtksourceview2 python-pyorbit", "userDisplayName": null, "userId": "107996" }, { "creationDate": "2015-07-03T09:22:13.897", "id": "922370", "postId": "2947", "score": "0", "text": "Note that current Meld in Ubuntu has a serious bug with remote files:", "userDisplayName": null, "userId": "24536" }, { "creationDate": "2021-12-04T13:25:08.803", "id": "2376995", "postId": "2947", "score": "0", "text": "Meld I think is what most *common* users would expect. Nice gui, easy to use.", "userDisplayName": null, "userId": "277898" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-23T13:48:16.593", "id": "2947", "lastActivityDate": "2014-08-13T11:47:20.807", "lastEditDate": "2014-08-13T11:47:20.807", "lastEditorDisplayName": null, "lastEditorUserId": "178596", "ownerDisplayName": null, "ownerUserId": "1550", "parentId": "2946", "postTypeId": "2", "score": "135" }
[ { "accepted": true, "body": "<p>The best I like is <a href=\"http://meld.sourceforge.net/\">Meld</a></p>\n\n<p>There are many choices available though. As a vim fan I find myself using vimdiff, kompare for the kde crowd - there also some paid version that have linux versions like <a href=\"http://www.scoote...
null
null
null
null
null
2951
1
2963
2010-08-23T14:50:11.757
3
3989
<p>I have the following pieces of hardware I would like to network mostly for file sharing (media primarily): 1 gaming laptop, 1 i7 (2.3Tb storage) desktop, 1 P4 desktop (500g storage), and 1 250gig PS3.</p> <p>I am looking to setup a linux host (with a PS3 media server) with the i7 desktop but am concerned about leaving it on all the time. What stripped down, low energy usage distro can I couple with which windows &amp; PS3 friendly software?</p> <p>Also, how should i reformat my i7 (in terms of partitions, RAID options, whatever)? It has 2 1Tb drives (likely adding a third), and 1 320 gig.</p>
1655
667
2010-08-23T17:41:03.370
2012-08-14T08:51:33.287
How should I set up a Linux file server for data sharing with Windows PCs and a PS3?
[ "networking", "build", "media-manager", "ps3" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-23T14:51:12.830", "id": "2891", "postId": "2951", "score": "0", "text": "(i tried to add a ps3 tag, since there is a linux/ps3 compatibility concern)", "userDisplayName": null, "userId": "1655" } ]
{ "accepted": true, "body": "<p>Here's how we have our media server set up at my house (Dell Blade server w/2 Pentium Dual Cores, 8gb RAM and a 1.5TB HDD and an old 80gb hdd). It's very basic but works splendidly.</p>\n\n<p><strong>Main OS</strong>: Ubuntu Server Edition (check the options for Samba during the install).</p>\n\n<p><strong>HDD Setup</strong>: All ext4. The OS is on it's own 20gb partition on the 80gb drive with <code>/home</code> being on a separate partition. The reason the main OS is on a separate drive is we were debating putting it on an SSD, but never got around to it. The 1.5 TB drive is mounted to <code>/media/data</code> (make sure this is done in <code>/etc/fstab</code>, not manually, as mediatomb likes to have it available when it loads).</p>\n\n<p><strong>Media Sharing</strong>: Set up samba to share <code>/media/Data</code> (allow guest, no authentication sharing). Standard samba setup really. Install <a href=\"http://mediatomb.cc/\" rel=\"nofollow\">mediatomb</a> (UPnP) and follow the instructions on their wiki regarding sharing with a PS3 (basically uncommenting 1 line in a config file). Use the mediatomb web interface to select which directories you want to share. Pretty easy.</p>\n\n<p><strong>Other Thoughts</strong>: Read through the mediatomb options and wiki's, there's a lot of other features you can enable through the GUI and also the config file. I know we changed the behavior it monitors directories and also how often it scans directories for new files.</p>\n\n<p>It should be relatively easy to set up, and when you are done you have an excellent media server.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-25T14:03:11.647", "id": "3020", "postId": "2963", "score": "0", "text": "I think I am going to follow through with this kind of a setup (keep it simple) and continue using PS3 media server (just the linux version) since i have had good experience hosting it on windows machines. The Samba sharing b/w computers will do nicely for the other machines.", "userDisplayName": null, "userId": "1655" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-23T16:33:55.223", "id": "2963", "lastActivityDate": "2012-08-14T08:51:33.287", "lastEditDate": "2012-08-14T08:51:33.287", "lastEditorDisplayName": null, "lastEditorUserId": "59676", "ownerDisplayName": null, "ownerUserId": "1090", "parentId": "2951", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Normally the easiest way to share files over a network is to use <a href=\"http://www.samba.org/\" rel=\"nofollow\">Samba</a> which is very easy for sharing files with Windows. However, I don't think it works with the PS3. Your best bet is to use <a href=\"http://www.dlna.org...
null
null
null
null
null
2952
1
16788
2010-08-23T15:07:20.597
8
944
<p>A couple of the various Linux photo organizer applications (Shotwell &amp; f-spot, at least) let you upload pictures to Facebook, but as far as I can see, that's limited only to albums on your personal page. Am I just missing something, and it is actually possible to use either Shotwell or f-spot to upload to albums in a page you are an administrator for? If not, is there another Picasa-type program that has this feature?</p>
1199
866
2012-06-28T21:02:31.763
2022-08-08T07:02:22.973
Upload photos to Facebook page (not personal profile)
[ "software-recommendation", "photo-management", "facebook" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Shotwell can't currently do this. I've ticketed it: <a href=\"http://trac.yorba.org/ticket/2942\">http://trac.yorba.org/ticket/2942</a></p>\n\n<p>I'm not sure Facebook makes uploading to group pages available via their API. If they do, I'd like to see this feature.</p>\n\n<p>Note that if you upload to your personal account, you can add those photos to a group you administer without re-uploading them through the browser.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-12-23T00:17:42.163", "id": "19803", "postId": "16788", "score": "1", "text": "The Facebook API provides this permission -- \n \n **manage_pages** Enables your application to retrieve access_tokens for pages the user administrates. The access tokens can be queried using the \"accounts\" connection in the Graph API. This permission is only compatible with the Graph API -- \n \nwhich at least suggests that it may be possible.", "userDisplayName": null, "userId": "1199" }, { "creationDate": "2010-12-23T00:27:56.337", "id": "19805", "postId": "16788", "score": "0", "text": "Oh, and thanks for thinking about adding this to Shotwell.", "userDisplayName": null, "userId": "1199" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-12-09T19:55:12.140", "id": "16788", "lastActivityDate": "2010-12-09T19:55:12.140", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "5261", "parentId": "2952", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>I don't have a page to try that so I can't tell, but you might want to try Digikam, which has a good uploader.</p>\n\n<p>If all else fails, Picasa is available on Ubuntu, although not open-source.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": ...
null
null
null
null
null
2953
1
2954
2010-08-23T15:08:57.833
9
7172
<p>What are the options I've got when it comes to RAID and Windows?</p>
1380
449
2010-08-23T15:30:01.750
2014-02-08T20:53:09.803
Is there a Linux software RAID that can be shared with a windows installation?
[ "windows", "raid" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><code>dmraid</code> should be able to do this. dmraid is the driver for so called \"FAKERAID\" solutions you on lots of motherboards these days, chipsets that offload all their work to the CPU.</p>\n\n<p>I can't guarantee it will work though. You'll need a supported dmraid chipset, some disks and a cross-platform filesystem to test it... And I seriously suggest you do test it before investing any data into the setup. </p>\n\n<p>As far as filesystems go, NTFS support in Ubuntu is much better than ext-<em>n</em> support in Windows. At least it was the last time I checked.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T15:28:54.387", "id": "2954", "lastActivityDate": "2010-08-23T15:28:54.387", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "2953", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p><code>dmraid</code> should be able to do this. dmraid is the driver for so called \"FAKERAID\" solutions you on lots of motherboards these days, chipsets that offload all their work to the CPU.</p>\n\n<p>I can't guarantee it will work though. You'll need a supported dmraid ch...
null
null
null
null
null
2960
1
null
2010-08-23T16:19:36.663
3
490
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/72679/is-there-any-sound-enhancers-equalizer">Is there any Sound enhancers/equalizer?</a> </p> </blockquote> <p>The other day, I plugged a poor quality set of speakers into my PC (running Ubuntu 10.04).</p> <p>I would have liked to have made some adjustments to some sort of equalizer, but couldn't find anything that affected the whole PC.</p> <p>Is there such a thing?</p>
5
-1
2017-04-13T12:24:49.590
2012-07-30T23:01:07.850
Is there a way to adjust a "global equalizer"?
[ "sound", "equalizer" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-07-30T23:01:20.533
null
null
2964
1
2966
2010-08-23T16:48:37.120
28
49574
<p>I'd like to build my own copy of the Ubuntu kernel. Where can I get the source code?</p>
1656
null
null
2023-02-26T05:38:23.877
Where can I find the source code for the Ubuntu Kernel?
[ "kernel" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>For building kernels, it is strongly suggested that you use git to get\nthe latest source code from the Ubuntu kernel git repositories.</p>\n\n<p>These repositories contain all updates to Ubuntu kernels, including ones\nwhich are proposed for release but not released yet. By fetching from\nthe repos, you will be guaranteed to have the latest code.</p>\n\n<p>If you want to fetch the source for a specific release, you may check\nout the tag associated with that release. Tags are similar to this\nexample: \"Ubuntu-2.6.32-17.26\". The final number is an upload number\nwhich is sequentially increased, and the rest is the version number.</p>\n\n<p>You can see a list of the Ubuntu kernel repositories here:</p>\n\n<p><a href=\"http://kernel.ubuntu.com/git\">http://kernel.ubuntu.com/git</a></p>\n\n<p>This page also lists a number of repositories for individual developers.\nThe official Ubuntu kernel repositories begin with \"ubuntu/ubuntu-\"</p>\n\n<p>If you are looking to just get the sources to the kernel that you are\ncurrently running you can:</p>\n\n<pre>\napt-get source linux-image-$(uname -r)\n</pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2016-05-16T19:45:11.293", "id": "1155746", "postId": "2966", "score": "0", "text": "6 years old, and the first *useful* answer for http/ftp I have found amongst dozens.", "userDisplayName": null, "userId": "249734" }, { "creationDate": "2017-07-23T14:48:27.160", "id": "1489133", "postId": "2966", "score": "0", "text": "There are issues with `apt-get source`, see [this](https://askubuntu.com/a/938955/119231) to download directly from launchpad.", "userDisplayName": null, "userId": "119231" }, { "creationDate": "2021-11-01T04:31:05.530", "id": "2361831", "postId": "2966", "score": "1", "text": "No longer works on Ubuntu 20.04, only meta data is downloaded by now", "userDisplayName": null, "userId": "25430" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T17:00:16.617", "id": "2966", "lastActivityDate": "2010-08-23T17:00:16.617", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1610", "parentId": "2964", "postTypeId": "2", "score": "33" }
[ { "accepted": null, "body": "<p>I believe you can find the Linux Kernel maintenance here: <a href=\"https://launchpad.net/linux\" rel=\"nofollow\">LaunchPad: Linux Kernel</a></p>\n\n<p>However, while the kernel for Ubuntu may be referred to as the Ubuntu Kernel - it's actually the Linux Kernel modified by t...
null
null
null
null
null
2968
1
2972
2010-08-23T17:40:55.477
4
3277
<p>I'd like to set up LDAP to act as central authentication of 2 web applications running on the same server.</p> <p>Whats the simplest step-by-step way to go about this from scratch?</p> <p>In the long run I'd also like to be able to administer the users on the system as simply as possible (think end users, not devs!)</p>
1458
453
2010-08-24T15:14:47.180
2011-05-20T20:20:13.907
LDAP server set-up
[ "server", "ldap" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Maybe <a href=\"http://www.yolinux.com/TUTORIALS/LinuxTutorialApacheAddingLoginSiteProtection.html#LDAP\" rel=\"nofollow\">this tutorial</a> answers your question.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-13T10:50:32.727", "id": "6661", "postId": "2972", "score": "0", "text": "Lots of good answers, but this tutorial got me closest to what I was after.", "userDisplayName": null, "userId": "1458" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T19:00:38.293", "id": "2972", "lastActivityDate": "2010-08-23T19:00:38.293", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4", "parentId": "2968", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Maybe <a href=\"http://www.yolinux.com/TUTORIALS/LinuxTutorialApacheAddingLoginSiteProtection.html#LDAP\" rel=\"nofollow\">this tutorial</a> answers your question.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-13T10:50:32.727", ...
null
null
null
null
null
2970
1
2973
2010-08-23T18:45:30.273
7
13211
<p>I'm using ubuntu in a VM, so, I leave it idle from time to time. When I go back obviously the screen is locked, but I would like to configure the idle time for something around 10 minutes. Where can I do this?</p>
1350
169736
2014-02-09T03:39:08.810
2014-02-09T03:39:08.810
Where can I change the automatic lock screen preference?
[ "lock-screen" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-23T19:01:43.953", "id": "2908", "postId": "2970", "score": "1", "text": "This question depends on what window manager you are running. Are you using Gnome, KDE, XFce, ...?", "userDisplayName": null, "userId": "4" } ]
{ "accepted": true, "body": "<p>Open up the screensaver preferences: <em>System ➜ Preferences ➜Screensaver</em>. </p>\n\n<p>You will see a slider to set the idle time:</p>\n\n<p><img src=\"https://i.stack.imgur.com/nsB0t.png\" alt=\"enter image description here\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-23T19:01:55.390", "id": "2973", "lastActivityDate": "2011-04-30T17:17:20.847", "lastEditDate": "2011-04-30T17:17:20.847", "lastEditorDisplayName": null, "lastEditorUserId": "114", "ownerDisplayName": null, "ownerUserId": "114", "parentId": "2970", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>Open up the screensaver preferences: <em>System ➜ Preferences ➜Screensaver</em>. </p>\n\n<p>You will see a slider to set the idle time:</p>\n\n<p><img src=\"https://i.stack.imgur.com/nsB0t.png\" alt=\"enter image description here\"></p>\n", "commentCount": "0", "comm...
null
null
2014-02-10T23:45:44.230
null
null
2977
1
3035
2010-08-23T19:48:45.450
3
5544
<p>I used <code>hcitool scan</code> to get the MAC address of my phone.</p> <p>Then I used <code>sdbtool browse</code> to find the channel of the "Serial Port" service.</p> <p>I put this information into <code>/etc/bluetooth/rfcomm.conf</code> and this is what the file looks like:</p> <pre> # # RFCOMM configuration file. # rfcomm0 { # Automatically bind the device at startup bind yes; # Bluetooth address of the device device 00:00:00:00:00:00; # RFCOMM channel for the connection channel 00; # Description of the connection comment "..."; } </pre> <p><em><b>Note:</b> The MAC address and channel are in there... I just don't want to print them here.</em></p> <p>I restarted the <code>bluetooth</code> service and went to <code>/dev</code> - but I couldn't see <code>rfcomm0</code> or anything close to it in there.</p> <p>What am I doing wrong?</p>
5
453
2010-08-24T15:13:48.133
2010-09-23T17:53:21.860
How to assign a serial port to my bluetooth phone?
[ "bluetooth", "devices" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Is it possible that your phone doesn't have serial port support? My old blackberry didn't.\nI'd also advise you to try Blueman, which can scan and show the services available on your phone AND automatically bind it to network manager for tethering (although admittedly I think the latest bluez does that second part too now).</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-25T00:17:49.077", "id": "2989", "postId": "3035", "score": "0", "text": "My phone definitely has serial port support - it works fine in BitPim on Windows.", "userDisplayName": null, "userId": "5" }, { "creationDate": "2010-08-25T00:19:04.210", "id": "2990", "postId": "3035", "score": "0", "text": "...and as mentioned above, I used `sdptool` to find available services. One of which was \"serial port\".", "userDisplayName": null, "userId": "5" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T17:31:06.250", "id": "3035", "lastActivityDate": "2010-08-24T17:31:06.250", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "861", "parentId": "2977", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Is it possible that your phone doesn't have serial port support? My old blackberry didn't.\nI'd also advise you to try Blueman, which can scan and show the services available on your phone AND automatically bind it to network manager for tethering (although admittedly I thin...
null
null
null
null
null
2980
1
2985
2010-08-23T20:10:21.023
4
1703
<p>I'm writing a program that uses OpenAL. When I link against it (I'm using CMake), it also links against libpulse - PulseAudio. This results in the binary not working on other systems. Can I somehow <em>not</em> link against PulseAudio and still use OpenAL on Ubuntu?</p> <p><strong>Edit:</strong> I just figured something out: It's not OpenAL that's dragging PulseAudio in, it's SDL. Is there anything I can do about that?</p>
null
3037
2011-01-06T18:25:01.063
2011-01-06T18:25:01.063
How can I make a program (using SDL) built on Ubuntu work on other systems?
[ "pulseaudio", "packaging", "compatibility", "compiling" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>About the SDL pulseaudio you can simply install libsdl1.2debian-alsa, it will remove the pa-sdl version and link against ALSA libs. Still you are likely to get other binary/library related compatibilities like dv3500ea mentioned.\nA common approach to avoid system related dependency issues is by using static linking. This will make the binaries much larger because they include the required code from the libraries.</p>\n\n<p>For more information on static linking check:\n<a href=\"http://wiki.linuxquestions.org/wiki/Static_linking\" rel=\"nofollow\">http://wiki.linuxquestions.org/wiki/Static_linking</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-24T04:42:32.960", "id": "2933", "postId": "2985", "score": "0", "text": "CMake seems to support static linking only reluctantly, and I believe that there are some libraries I can legally not link static, but I'll look into it. The libsdl debian package is a good idea, I'll use that :)", "userDisplayName": "halifar", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-23T20:47:19.780", "id": "2985", "lastActivityDate": "2010-08-23T20:47:19.780", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "742", "parentId": "2980", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Build the binary separately on each platform you want to supply binary packages for and make sure you distribute the source code so that people on other platforms can build it for themselves.</p>\n\n<p>Note that Linux focuses on source compatibility rather than binary compati...
null
null
null
null
halifar
2988
1
2990
2010-08-23T21:46:16.547
105
235796
<p>I have a burning desire to install RPMs onto my Ubuntu installation - is this possible? Can I use Yum - or another RPM Package Management tool?</p>
41
25863
2012-11-21T21:17:27.153
2017-02-01T16:34:14.983
How do I install and manage RPMs?
[ "server", "package-management", "rpm" ]
11
3
CC BY-SA 3.0
[ { "creationDate": "2010-08-24T07:08:59.203", "id": "2937", "postId": "2988", "score": "0", "text": "Why? What kind of software are you missing that you can't find in Ubuntu or the PPAs? Converting rpms with alien works, but it's really not the best option.", "userDisplayName": null, "use...
{ "accepted": true, "body": "<blockquote>\n <p>Can I use Yum</p>\n</blockquote>\n\n<p>I wouldn't recommend it. You probably could compile it but you wouldn't have any Ubuntu-compatible package repositories for it to handle.</p>\n\n<p>You <em>can</em> convert single RPM files into DEBs with Alien:</p>\n\n<pre><code>sudo apt-get install alien\nsudo alien my_package.rpm\nsudo dpkg -i my_package.deb\n</code></pre>\n\n<p><strong>Note:</strong> It might change the filename a little more than just the extension.</p>\n\n<p>This won't work for everything as packages link to other packages to fulfil dependencies. Obviously Red Hat/Fedora/CentOS use different package names to Ubuntu so you're likely going to run into a whole load of pain.</p>\n\n<p>Chances are if a DEB doesn't exist, you'll be better off just getting the source and compiling it.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-08-23T22:52:01.137", "id": "2924", "postId": "2990", "score": "3", "text": "if alien doesn't work and you do end up using the source code directly, you can turn *that* into a .deb using checkinstall (which is in the universe repository, not installed by default).", "userDisplayName": null, "userId": "352" }, { "creationDate": "2010-08-24T10:49:55.797", "id": "2944", "postId": "2990", "score": "0", "text": "Checkinstall is used in place of `make install` and is very handy to have around. Being able to remove packages is definitely a plus!", "userDisplayName": null, "userId": "646" }, { "creationDate": "2010-08-24T11:00:39.130", "id": "2945", "postId": "2990", "score": "0", "text": "`checkinstall` is great for maintaining a self-build in a packaged environment but it does have some quirks that sometimes mean something that will install through `make install` won't install. I use it when I can.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-10-29T19:11:59.537", "id": "10434", "postId": "2990", "score": "3", "text": "you can do `alien --install my_package.rpm`.", "userDisplayName": null, "userId": "2591" }, { "creationDate": "2018-03-06T10:03:35.103", "id": "1640945", "postId": "2990", "score": "0", "text": "I tried to install the newest version of lftp this way, but it didn't update the dependencies, so lftp fails to start trying to load with: `error while loading shared libraries: libreadline.so.7`", "userDisplayName": null, "userId": "622661" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-23T21:53:52.267", "id": "2990", "lastActivityDate": "2014-11-07T15:18:47.487", "lastEditDate": "2014-11-07T15:18:47.487", "lastEditorDisplayName": null, "lastEditorUserId": "142631", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "2988", "postTypeId": "2", "score": "140" }
[ { "accepted": true, "body": "<blockquote>\n <p>Can I use Yum</p>\n</blockquote>\n\n<p>I wouldn't recommend it. You probably could compile it but you wouldn't have any Ubuntu-compatible package repositories for it to handle.</p>\n\n<p>You <em>can</em> convert single RPM files into DEBs with Alien:</p>\n\n<p...
null
null
null
null
null
2995
1
3004
2010-08-23T22:54:34.627
13
29004
<p>After upgrading to Maverick I have my TERM variable set to 'dumb', this does not happen with the same home dir running from Lucid and I didn't manually changed anything related to TERM.</p> <p>Any idea where is the TERM variable expected to be set from?</p>
742
3037
2011-01-03T12:58:12.973
2011-01-03T12:58:12.973
How is the default TERM shell variable value set?
[ "command-line", "bash" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>To elaborate on what Gilles says, suppose you are remote connecting to your ubuntu from Windows using Putty.</p>\n\n<p>In the putty config options, under Connection->Data there is a setting called terminal-type string. You can set your TERM there and putty instructs SSH to set that environment variable. At some point after that your shell is going to be executed, probably /bin/bash and it gets its environment from its parent process, probably the sshd process.</p>\n\n<p>The same holds true if you ssh from a remote linux box, its just that the local TERM environment variable is passed through via ssh to the remote connection.</p>\n\n<p>In the case of a terminal emulator it is the job of the terminal emulator to set the TERM environment variable. e.g. getty sets TERM to \"linux\" and forks a shell process (/bin/bash). or gnome-terminal sets TERM to \"xterm\" and forks a shell process.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-24T06:58:48.963", "id": "2936", "postId": "3004", "score": "0", "text": "I have checked and gnome-terminal works fine, it is really an \"emulator\" bug. I am using terminator.\nThanks", "userDisplayName": null, "userId": "742" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T01:47:44.873", "id": "3004", "lastActivityDate": "2010-08-24T01:47:44.873", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1668", "parentId": "2995", "postTypeId": "2", "score": "13" }
[ { "accepted": null, "body": "<p>To answer your question literally, the terminal emulator is supposed to set <code>$TERM</code>.¹</p>\n\n<p>To solve your problem would require at least knowing what terminal emulator you use. It could be a bug or misconfiguration in the terminal emulator or a problem with you...
null
null
null
null
null
2997
1
3040
2010-08-24T00:18:47.063
5
628
<p>I recently installed 9.10 64-bit on a system that had 10.04 already installed. I thought I performed this installation correctly, but when I came to grub2 and chose the option I wanted, I got some errors.</p> <p>First, I got the following message before the log in screen appeared:</p> <p><code>The disk drive for /home is not ready yet or not present.</code></p> <p><code>Continue to wait; or press S to skip mounting or M for manual recovery.</code></p> <p>I rebooted and logged into the freshly installed 9.10 boot and this worked fine. I found the partition that 10.04 is on and created a user directory in <code>/home</code> that is a copy of the 9.10 <code>/home</code>. I named the user directory the same as it was previously, so there was no difference.</p> <p>I then changed ownership and group of this newly created directory and then rebooted. I got the same error:</p> <p><code>The disk drive for /home is not ready yet or not present.</code></p> <p><code>Continue to wait; or press S to skip mounting or M for manual recovery.</code></p> <p>but this time when I press S to skip, I was able to log in and see my desktop. The actions I did seemed to allow for log in but still the mounting of <code>/home</code> is not working as it should.</p> <p>One thing I should mention. When installing 9.10 64-bit, I had some extra hard disk space available and I chose to format this to ext4 and then mount it to <code>/home</code>. This may be causing problems, but I thought when doing this it would mount to the <code>/home</code> for the new installation. It seemed to try to mount it on the old installation, though (the 10.04 one).</p> <p>I hope this wasn't too confusing. Any help is much appreciated. </p> <p>Thanks in advance.</p> <p><strong>EDIT - For the 9.10 installation</strong> <code>/etc/fstab</code>:</p> <pre><code># /etc/fstab: static file system information. # # Use 'blkid -o value -s UUID' to print the universally unique identifier # for a device; this may be used with UUID= as a more robust way to name # devices that works even if disks are added and removed. See fstab(5). # # &lt;file system&gt; &lt;mount point&gt; &lt;type&gt; &lt;options&gt; &lt;dump&gt; &lt;pass&gt; proc /proc proc nodev,noexec,nosuid 0 0 # / was on /dev/sda1 during installation UUID=10270f21-1c42-494b-bd3f-813c23f6d518 / ext4 errors=remount-ro 0 1 # /home was on /dev/sda6 during installation UUID=fc128610-a6d5-4d23-9898-064580419da0 /home ext4 defaults 0 2 # swap was on /dev/sda5 during installation UUID=d3644f61-b65c-4f30-9eb5-cda163f9fce5 none swap sw 0 0 </code></pre> <p><strong>For the 10.04 installation:</strong></p> <pre><code># /etc/fstab: static file system information. # # Use 'blkid -o value -s UUID' to print the universally unique identifier # for a device; this may be used with UUID= as a more robust way to name # devices that works even if disks are added and removed. See fstab(5). # # &lt;file system&gt; &lt;mount point&gt; &lt;type&gt; &lt;options&gt; &lt;dump&gt; &lt;pass&gt; proc /proc proc defaults 0 0 # / was on /dev/sda6 during installation UUID=28fd6eb0-38a2-4c22-86d8-f7dce7508ac4 / ext4 errors=remount-ro 0 1 # /home was on /dev/sda7 during installation UUID=97f82eca-0fdd-49e1-a12b-b4e1f6adbcbb /home ext4 defaults 0 2 # swap was on /dev/sda5 during installation UUID=d3644f61-b65c-4f30-9eb5-cda163f9fce5 none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0 </code></pre> <p><strong>EDIT 2:</strong></p> <p><code>fdisk -l</code> <strong>output:</strong></p> <pre><code>Disk /dev/sda: 250.1 GB, 250059350016 bytes 255 heads, 63 sectors/track, 30401 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0xcbcbcbcb Device Boot Start End Blocks Id System /dev/sda1 * 1 6231 50049483+ 83 Linux /dev/sda2 6232 30401 194145525 5 Extended /dev/sda5 12158 12773 4939776 82 Linux swap / Solaris /dev/sda6 6232 12157 47600532 83 Linux /dev/sda7 12774 30401 141596878+ 83 Linux Partition table entries are not in disk order </code></pre> <p><code>blkid /dev/sda*</code> <strong>output:</strong></p> <pre><code>/dev/sda1: UUID="10270f21-1c42-494b-bd3f-813c23f6d518" TYPE="ext4" /dev/sda5: UUID="d3644f61-b65c-4f30-9eb5-cda163f9fce5" TYPE="swap" /dev/sda6: UUID="28fd6eb0-38a2-4c22-86d8-f7dce7508ac4" TYPE="ext4" /dev/sda7: UUID="97f82eca-0fdd-49e1-a12b-b4e1f6adbcbb" TYPE="ext4" </code></pre>
364
364
2010-08-24T15:18:31.813
2010-08-24T17:53:49.910
Dual Boot - Ubuntu 9.10, 10.04 - /home Cannot Be Initialized Upon Startup
[ "10.04", "startup", "home-directory", "9.10" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-24T07:35:55.657", "id": "2938", "postId": "2997", "score": "0", "text": "Why not \"double post\"? We're different sites with mostly different people. If you're worried about there being two versions, bring the content over here and edit the old version to point to here...
{ "accepted": true, "body": "<p>The home partition of your 9.10 install, uuuid finish in 19da0, doesn't seem to exist on your computer.</p>\n\n<p>If you want to share your home partition in both OS, change it to the other uuuid in the 9.10 fstab.</p>\n\n<p>But I don't believe that this is a great idea. Different version of every program are going to touch the same config files and sooner than later something will get funny.</p>\n\n<p>You should probably repartition your disk to make space for another home. Assign it in 9.10. Mount the 10.04 home in another path and link the non-config files of the 9.10 install to it. Dirs like Documents, Music, etc...</p>\n\n<p>If you don't want a separate home partition in 9.10 do as Maco told, just delete that line. Everything should be fine as now your home is probably on the f6d518 disk.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-08-24T18:59:10.963", "id": "2968", "postId": "3040", "score": "0", "text": "I installed GParted and opened it up. I noticed that the extended `sda` partition was somehow surrounding the `sda` 5, 6 and 7 partitions. I couldn't reformat it without interfering with the good partitions.", "userDisplayName": null, "userId": "364" }, { "creationDate": "2010-08-24T19:25:53.027", "id": "2972", "postId": "3040", "score": "1", "text": "That's what an extended partition is supposed to do. It's a container for logical partitions.", "userDisplayName": null, "userId": "1158" }, { "creationDate": "2010-08-24T20:09:27.957", "id": "2979", "postId": "3040", "score": "0", "text": "Yah, I figured that out... I think since this laptop is an experimental machine for me (that's my goal is to learn with this machine), I will reinstall both installations after I create and reformat new partitions. Thanks for your help.", "userDisplayName": null, "userId": "364" }, { "creationDate": "2010-08-25T02:27:58.897", "id": "2996", "postId": "3040", "score": "0", "text": "If this machine is for experimental purposes only, I wouldn't bother too much with making separate /home partitions and just use 1 partition per install (Ubuntu version).", "userDisplayName": null, "userId": "935" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T17:53:49.910", "id": "3040", "lastActivityDate": "2010-08-24T17:53:49.910", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "211", "parentId": "2997", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>If you making a /home dir on the 10.04 means you don't intend for it to have a separate /home partition, then just delete</p>\n\n<pre><code># /home was on /dev/sda7 during installation\nUUID=97f82eca-0fdd-49e1-a12b-b4e1f6adbcbb /home ext4 defaults 0 ...
null
null
null
null
null
3002
1
3003
2010-08-24T01:26:30.907
1
609
<p>I try to change my nickname for my AIM account in Empathy. And the change doesn't seem to take. Whatever I do, it just kind of stays the same. It works fine for my Google talk account... Iunno.</p>
1415
1067
2011-01-02T04:56:09.363
2011-01-02T04:56:09.363
Changing my AIM alias in Empathy doesn't work
[ "empathy" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is <a href=\"http://bugs.freedesktop.org/show_bug.cgi?id=24707\" rel=\"nofollow\">a bug</a> in Telepathy. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-24T02:57:07.273", "id": "2928", "postId": "3003", "score": "0", "text": "Well, gee. That sucks. Any positive prognosis?", "userDisplayName": null, "userId": "1415" }, { "creationDate": "2010-08-24T15:13:06.293", "id": "2956", "postId": "3003", "score": "0", "text": "The best thing you can do is subscribe to the bug to be notified of progress. Or perhaps help find someone who might be able to help fix the bug.", "userDisplayName": null, "userId": "235" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T01:35:39.437", "id": "3003", "lastActivityDate": "2010-08-24T01:35:39.437", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "235", "parentId": "3002", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>This is <a href=\"http://bugs.freedesktop.org/show_bug.cgi?id=24707\" rel=\"nofollow\">a bug</a> in Telepathy. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-24T02:57:07.273", "id": "2928", "postId": "3003", ...
null
null
null
null
null
3005
1
3018
2010-08-24T01:50:55.240
1
3270
<p>A new laptop issued to me is now running a product called "Safeguard Enterprise 5.35 <a href="http://go.utimaco.com/" rel="nofollow">Utimaco</a> Software". Has anyone had success installing Ubuntu in this situation?</p>
1674
null
null
2022-06-28T08:53:39.163
Is it possible to install Ubuntu on a corporate laptop that is currently running Windows XP with Utimaco's disk encryption software?
[ "windows", "encryption" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-24T05:01:03.583", "id": "2934", "postId": "3005", "score": "1", "text": "Our company uses a similar piece of software, and dual boot is explicitly not supported.", "userDisplayName": null, "userId": "1269" }, { "creationDate": "2010-08-24T17:53:12.803",...
{ "accepted": true, "body": "<p>It's your company's laptop not yours. You should probably ask them if they agree to you installing Ubuntu. It's unlikely as they usually have good reasons to run encryption software on it.</p>\n\n<p>There are a couple of compromises: you can likely run Ubuntu inside a VM like <a href=\"http://www.virtualbox.org/\">Virtualbox</a> and the cryptographic solution will still work.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T07:05:57.937", "id": "3018", "lastActivityDate": "2010-08-24T07:55:24.057", "lastEditDate": "2010-08-24T07:55:24.057", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "211", "parentId": "3005", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>Have you tried using <a href=\"http://wubi-installer.org/\" rel=\"nofollow\">Wubi</a>? It comes with the Live CD. Just install it via Windows.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-24T03:07:38.720", "id": "2929", ...
null
null
null
null
null
3006
1
3012
2010-08-24T01:58:33.447
4
3822
<p>I used uupdate to update a source package from 0.7.0 to 0.7.3. It does this update with patches and I had a few patch rejects. I am unsure what to do next. Do I:</p> <ul> <li>edit the old source package (0.7.0) and then re-run uupdate?</li> <li>edit the new source package (0.7.3) and then re-run uupdate?</li> <li>edit the .rej files directly?</li> <li>use a tool such as kdiff3?</li> <li>try something else?</li> </ul> <p>At this point, I'm thinking that the answer is to use a tool which is more along the lines of what I'm familiar with (coming from a Tortoise Merge and clearcase merge background).</p> <p><em>I have searched high and low for how people manage patch rejects and I've had no luck, so I will gladly RTFM if you can provide a link to a FM if one exists</em>.</p>
73
235
2010-08-24T02:01:25.593
2010-08-24T06:08:55.190
How do I handle patch rejects after applying patches with uupdate?
[ "development", "motu", "patch" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I agree with @maco on manually resolving the conflict. Seeing the options you give, you probably need to really understand what <code>uupdate does</code>, which is:</p>\n\n<ul>\n<li>extract the new tarball in the parent directory ;</li>\n<li>try to apply the previous diff.gz (unless you're using a v3 (quilt) style) to the new directory.</li>\n</ul>\n\n<p>The patch rejections come from applying this diff.gz to the new directory.</p>\n\n<p>Now to go through your options:</p>\n\n<ul>\n<li>edit the old source package => <em>you shouldn't modify the old source package in order to create the new one</em> ;</li>\n<li>edit the new source package and re-run uupdate => <em>there is no point in doing so, because the patch fails to apply to the new source, and you shouldn't modify the original source (except with patches, which are found in the diff.gz)</em> ;</li>\n<li>edit the .rej files => <em>the .rej files are here to show you what failed to apply ; editing them won't fix your issue but you should have a look at them to see if the failed changes need to be applied</em> ;</li>\n<li>use a diff tool => <em>sure, that can be a good idea, (<code>vim -d</code> is your friend) although the .rej files should already give you an idea of what failed to apply. You can also read the previous diff.gz to have an idea of what files it was modifying.</em></li>\n</ul>\n\n<p>Generally, most of the uupdate conflicts I've met were due to bad packaging in the previous version of the package, namely a diff.gz which modified the source instead of just adding a debian/ directory. This can be checked easily:</p>\n\n<pre><code>zcat ../yourpackagename_0.7.0-1.diff.gz | diffstat\n</code></pre>\n\n<p>will give you the list of files modified by the previous patch (adapt the file name to your needs). If you find files that are not in the debian/ directory in this list, then your problem is most certainly there. In this case, check what has been changed:</p>\n\n<ul>\n<li>In most cases, it is an autotools mess when <code>debuild -S</code> was called: one of the autoconf/automake scripts was modified and this modification won't apply anymore. It is usually safe to drop this change in the new version ;</li>\n<li>In some other cases, the source code has been patched manually (without using dpatch/simple-patchsys/quilt/whatever else). In this case, check if the patch should still be applied to the new version (read the changelog for example). If it does, then make a clean patch using a proper patch manager. Future packagers will thank you for that :-)</li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-01T02:35:33.377", "id": "3407", "postId": "3012", "score": "0", "text": "I think that all of my rejects are the 1st case you stated, remnants of a build. They are all Makefile and config.xxx file changes.", "userDisplayName": null, "userId": "73" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T06:08:55.190", "id": "3012", "lastActivityDate": "2010-08-24T06:08:55.190", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1667", "parentId": "3006", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>I would just manually resolve the conflicts and run <code>debuild -S</code> as usual. </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T04:34:43.923", "id": "3011", ...
null
null
null
null
null
3008
1
null
2010-08-24T02:28:07.677
0
2678
<p>Im gonna need some help restoring my ssh settings as i screwed everything up by calling this command:</p> <pre><code>chown -R user / </code></pre> <p>At the moment im not able to access the site through ssh/ftp since the ownership of all the files have been changed. I dont want to reset every ownership but if i could get ssh working i would be able to create a backup of my files and then get a clean install of ubuntu on my server.</p> <p>Here is the error that i get when im trying to restart ssh:</p> <pre><code>/var/run/sshd must be owned by root and not group or world-writable. </code></pre> <p>Im running ubuntu 10.04 LTS. Any help is very much appreciated.</p> <p>P.S. I am able to run ssh commands on a browser based AJAX console that my hosting company (linode) provides.</p> <p>Thanks</p>
null
453
2010-08-24T15:08:34.790
2010-08-24T15:08:34.790
Used recursive chown on the root directory
[ "server", "ssh", "permissions", "support" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-24T18:56:06.693", "id": "2966", "postId": "3008", "score": "0", "text": "This is why you never login as root! If you were your own user, you wouldn't have been able to do this!", "userDisplayName": null, "userId": "316" }, { "creationDate": "2010-08-25T...
null
[ { "accepted": null, "body": "<p>First to stop the error message change the owner of <code>/var/run/sshd</code> back to to root.</p>\n\n<p>There might be more errors afterwoods, which probably mean you need to change other files too.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDat...
null
null
2013-03-14T17:02:17.320
null
Matt
3022
1
3149
2010-08-24T08:33:08.053
7
1607
<p>I'm facing a weird problem. My mouse automatically focuses on menu items. </p> <p>I'm unable to navigate menus with keyboard if the cursor rests on a menu item as it keeps stealing focus. I can live with this behaviour in regular apps but it won't let me play any full-screen games as the cursor remains locked in a fixed position.</p> <p>I tried turning off compiz and removing all the dotfiles but it didn't help. </p> <p>Here is a video my mouse stealing focus: <a href="http://dl.dropbox.com/u/275756/mouse.ogv" rel="nofollow">http://dl.dropbox.com/u/275756/mouse.ogv</a></p>
214
214
2014-01-06T13:58:46.417
2014-01-06T13:58:46.417
Weird Mouse Problem
[ "hardware", "mouse" ]
4
6
CC BY-SA 3.0
[ { "creationDate": "2010-08-25T14:29:39.253", "id": "3025", "postId": "3022", "score": "0", "text": "How strange. If I try simulate that behavior it doesn't even behave like in your video. I need to move the cursor over the next menu item before it steals the focus. Something is definitely messin...
{ "accepted": true, "body": "<p>Do you happen to use <a href=\"http://packages.ubuntu.com/unclutter\">unclutter</a> (as I do/did)?</p>\n\n<p>I see this behaviour when unclutter is running, but not when I kill it. I am not sure why it happens, as it happens \"long\" <strong>before</strong> unclutter hides the mouse pointer.</p>\n\n<p>It also seems like there are a bunch of <a href=\"https://bugs.edge.launchpad.net/ubuntu/+bugs?field.searchtext=unclutter\">bug reports</a> related to this issue (only 3 or 4 out of 17 bugs are about unrelated issues, it seems).</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-08-27T11:25:10.327", "id": "3190", "postId": "3149", "score": "0", "text": "That is it. The bug is in unclutter. Killing unclutter fixes it.", "userDisplayName": null, "userId": "214" }, { "creationDate": "2010-08-27T18:34:23.037", "id": "3208", "postId": "3149", "score": "1", "text": "You can disable unclutter automatic startup in `/etc/default/unclutter` (or uninstall it, of course).", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-30T07:18:40.437", "id": "3311", "postId": "3149", "score": "0", "text": "yeah.. i already removed it.", "userDisplayName": null, "userId": "214" }, { "creationDate": "2013-07-02T15:37:12.763", "id": "399301", "postId": "3149", "score": "0", "text": "@JanC: I had a different question. I new I had unclutter installed and running, I just didn't know why it kept running at startup, and with different options to what I had last run it with (or ever run it with for that matter). Your comment has answered that for me. :-D Thanks.", "userDisplayName": null, "userId": "69789" }, { "creationDate": "2013-07-02T15:42:36.330", "id": "399307", "postId": "3149", "score": "0", "text": "I think unclutter should _not_ run by default; it should be up to each user to set in Startup Applications if they want it, and with their preferred options. The current defaults are simply _asking_ for the kind of confusion in this question.", "userDisplayName": null, "userId": "69789" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-26T12:48:43.470", "id": "3149", "lastActivityDate": "2010-08-26T13:11:25.287", "lastEditDate": "2010-08-26T13:11:25.287", "lastEditorDisplayName": null, "lastEditorUserId": "935", "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3022", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Can you try another mouse? I say that because I've had something like this before (way back when I was on Windows) and it was actually a dodgy connection in the mouse's cable that was causing tiny movements. It <em>looks</em> like your cursor doesn't move but there might tiny...
null
null
null
null
null
3024
1
3025
2010-08-24T09:23:55.720
12
13750
<p>With the latest 3 distribution versions of Ubuntu I've always had problems with NVidia GPUs. Even when I installed the official commercial drivers (which are not in the repositories and are shown as proprietary) I also had problems with the display.</p> <p>The specific version of the GPU I'm using now is GeForce GT 330M on a VAIO laptop. Can you guys recommend a driver that is stable and works well, supporting most (if not all) GPU features for NVidia GPUs? Have you had the same problems and how did you solve them?</p>
1680
169736
2014-04-06T14:11:56.510
2014-04-06T14:11:56.510
Good NVidia drivers for a GeForce GT 330M on a VAIO laptop?
[ "nvidia" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2012-09-29T06:57:02.523", "id": "241403", "postId": "3024", "score": "0", "text": "I had some issues but it seems the latest driver works ok?", "userDisplayName": null, "userId": "93352" }, { "creationDate": "2012-09-29T13:54:47.337", "id": "241532", "p...
{ "accepted": true, "body": "<p>This is very specifically an issue with Sony VAIOs. The latest nvidia drivers should work but there's an EDID detection issue (how the video card finds out the monitors supported modes). </p>\n\n<p><a href=\"http://ubuntuforums.org/showpost.php?p=9234321&amp;postcount=7\" rel=\"nofollow\">This post</a> should provide a fix and there's a handy link at the bottom for ironing out any other quirks:</p>\n\n<blockquote>\n <p>What I found was that Lucid's kernel\n (I believe all >= 2.6.32 kernels) has\n built-in driver for nvidia, called\n \"nouveau\". This one is built right\n into initrd image and is the one that\n causes the workspace to be bigger than\n the actual screen.</p>\n \n <p>Naturally I though of installing\n invidia drivers instead of nouveau,\n but that wasn't easy. I couldn't\n unload nouveau in any way (I believe\n because it's built-in and not shipped\n as module) and with nouveau loaded\n nvidia's installer would fail.</p>\n \n <p>So what I had to do first, was to\n disable the nouveau driver. I did it\n by putting the following parameter to\n /etc/default/grub:\n <code>GRUB_CMDLINE_LINUX=\"nouveau.modeset=0\"</code>.\n Then I had to invoke <code>sudo\n update-grub</code>.</p>\n \n <p>Having added this parameter, I\n rebooted and got 800x600 resolution,\n bacause now there was no driver in\n kernel to support the 330M GPU (but\n naughty nouveau was finally gone!).\n Switching to command-line mode by\n <code>sudo service gdm stop</code> and by\n installing nvidia latest drivers\n (195.36.24) I almost got it done, but,\n not yet. Original nvidia driver\n loaded, but failed to correctly draw\n anything on the screen.</p>\n \n <p>After searching a bit I found on the\n page linked in the bottom of this post\n that Sony Vaio F's LCD panel EDID\n isn't recognized by nvidia drivers\n automatically, so you have to \"help\"\n drivers in this matter: after\n finishing installing nvidia drivers\n (and before the reboot) you have to\n add the following lines to \"Device\"\n section of xorg.conf:</p>\n \n <p>Code:</p>\n\n<pre><code>Option \"ConnectedMonitor\" \"DFP-0\"\nOption \"CustomEDID\" \"DFP-0: /proc/acpi/video/NGFX/LCD/EDID\"\n</code></pre>\n \n <p>and only then reboot. You'll be happy\n to see log-in screen in fullhd!</p>\n \n <p>NVidia's driver still behaves\n strangely on my Sony (no sound over\n HDMI, poorly working display backlight\n settings, no ability to switch to text\n mode via CTRL-ALT-N (1-6)), but\n general functionality is ok, including\n native fullhd desktop resolution, 3d\n acceleration etc.</p>\n \n <p>PS A lot of Sony-Vaio F Series related\n problems in Linux are discussed here:\n <a href=\"http://code.google.com/p/vaio-f11-linux\" rel=\"nofollow\">http://code.google.com/p/vaio-f11-linux</a></p>\n</blockquote>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-25T01:07:43.257", "id": "2991", "postId": "3025", "score": "1", "text": "The first couple of paragraphs here are not quite correct - it's very easy to disable the nouveau driver. You just need to use the System→Administration→Hardware Drivers capplet to install the nVidia drivers from the archive.\n\nThe installer from nvidia.com will overwrite a number of system files, and will not integrate well with the rest of the Ubuntu system. If you install these drivers manually we cannot support you!", "userDisplayName": null, "userId": "188" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T09:43:17.443", "id": "3025", "lastActivityDate": "2010-08-24T09:43:17.443", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "3024", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>This is very specifically an issue with Sony VAIOs. The latest nvidia drivers should work but there's an EDID detection issue (how the video card finds out the monitors supported modes). </p>\n\n<p><a href=\"http://ubuntuforums.org/showpost.php?p=9234321&amp;postcount=7\" rel...
null
null
null
null
null
3030
1
3077
2010-08-24T11:44:29.633
1
1249
<p>So, I've got radeon 3850 agp card. It seems that all videos and graphics are handled by CPU, according to cpu usage. All effects are enabled and working(like compiz), but videos and 3d are extremely slow and low-fps, though I use proprietary ati drivers. What do I need to do to get normal fps? Ready to answer additional questions.</p> <p>So, I think 10.7 finally installed, but nothing new happend. Hi-res video still 0.3 fps.(video is 1280x720, screen is 1920x1080).</p> <p>Decided to show my xorg.conf:</p> <pre><code>Section "ServerLayout" Identifier "aticonfig Layout" Screen 0 "aticonfig-Screen[0]-0" 0 0 EndSection Section "Module" EndSection Section "Monitor" Identifier "aticonfig-Monitor[0]-0" Option "VendorName" "ATI Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" EndSection Section "Device" Identifier "aticonfig-Device[0]-0" Driver "fglrx" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "aticonfig-Screen[0]-0" Device "aticonfig-Device[0]-0" Monitor "aticonfig-Monitor[0]-0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 EndSubSection </code></pre> <h2> EndSection</h2> <p>Thanks everyone, I also wanted to ask: everybody tell me, that this parameter:</p> <pre><code>creitve@localhost:~$ glxinfo|grep render direct rendering: No (LIBGL_ALWAYS_INDIRECT set) OpenGL renderer string: ATI Radeon HD 3850 </code></pre> <p>must be "yes", but I didn't manage to enable it. What do I need to get it running? Im sure, it's 100% related to my problem, right?</p>
1682
1682
2010-08-26T09:30:49.243
2010-08-26T09:30:49.243
How to set up good video support on radeon 3850
[ "video", "hardware", "ati" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-24T14:41:03.503", "id": "2953", "postId": "3030", "score": "0", "text": "do you have the most recent drivers installed?", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-08-24T19:47:25.867", "id": "2974", "postId": "3030", ...
{ "accepted": true, "body": "<p>90% of the time this type of problem is resolved by doing a purge and reinstall of the driver stack, because either the mesa GLX driver or the kernel driver is messed up. <a href=\"https://wiki.ubuntu.com/X/Troubleshooting/FglrxInteferesWithRadeonDriver\" rel=\"nofollow\">https://wiki.ubuntu.com/X/Troubleshooting/FglrxInteferesWithRadeonDriver</a></p>\n\n<p>As far as open source drivers, xserver-xorg-video-ati in Lucid supports 2D but not 3D acceleration for this hardware, so depending on your definition of 'good' it likely isn't going to suffice for you.</p>\n\n<p>3D support is coming in Maverick, although there's still a lot that's incomplete. See <a href=\"http://www.x.org/wiki/RadeonFeature\" rel=\"nofollow\">http://www.x.org/wiki/RadeonFeature</a> for a detailed breakdown of the 3D support with this driver. (Your card fits under the R600 column.)</p>\n\n<p>Note that with the open driver and AGP hardware, sometimes you have to tweak AGPMode either in BIOS or (for -ati) in the xorg.conf. (See 'man xorg.conf' or 'man radeon').</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-26T09:40:03.507", "id": "3109", "postId": "3077", "score": "0", "text": "Well, the both links are about how to remove fglrx and instal opensource drivers. But how to \"purge and reinstall the driver stack\"? Thats what I did:\nsudo sh /usr/share/ati/fglrx-uninstall.sh\nsudo apt-get purge fglrx*\nsudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core xserver-xorg-video-radeon xserver-xorg-video-ati\n*reboot*\nsudo sh ./ati-driver-installer-10-7-x86.x86_64.run --buildandinstallpkg\nfinally i got it working, but perfomance is still poor. Or all I need is to surrender and use opensource, while waiting for normal drivers for my card?", "userDisplayName": null, "userId": "1682" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T07:38:13.250", "id": "3077", "lastActivityDate": "2010-08-25T07:38:13.250", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "913", "parentId": "3030", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>Have you tried the open source drivers? I have a slightly newer card (I think) and the proprietary drivers were slow, buggy, and leaked memory. The open drivers work perfectly. Have a look for the xserver-xorg-video-radeonhd packages.</p>\n", "commentCount": "3", "com...
null
null
null
null
null
3031
1
null
2010-08-24T15:25:31.430
2
1293
<p>I'm trying to connect my Toshiba Satellite running Ubuntu 10.04 to my Eris running Android 2.1 through a Bluetooth connection and establish a dial-up connection (DUN) with the modem. I can connect my phone to my laptop, and I can detect my modem (after installing drivers), which is located at <code>/dev/ttySL0</code>. But when I launch <code>gnome-ppp</code> and enter my phone number (<a href="http://www.junefabrics.com/android/bluetooth.php" rel="nofollow">123 for PDA-Net</a>) I get a dialog that says "Connecting... Sending Password" with Log and Cancel buttons. The log shows this:</p> <p><code>--&gt; WvDial: Internet dialer version 1.60</code><br> <code>--&gt; Cannot get information for serial port.</code><br> <code>--&gt; Initializing modem.</code><br> <code>--&gt; Sending: ATZ</code><br> <code>ATZ</code><br> <code>OK</code><br> <code>--&gt; Sending: ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0</code><br> <code>ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0</code><br> <code>OK</code><br> <code>--&gt; Modem initialized.</code><br> <code>--&gt; Please enter password (or empty password to stop):</code><br> <code>--&gt; Configuration does not specify a valid login name.</code><br></p> <p>The PDA-Net DUN protocol is running and shows no error. Any ideas?</p> <p>Any help is much appreciated.</p>
364
235
2011-01-17T15:01:10.567
2013-01-06T22:31:39.610
Cannot Connect Modem ( /dev/ttySL0 ) Using gnome-ppp - Dial-Up Connection
[ "10.04", "hardware", "modem" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>From the <a href=\"http://www.junefabrics.com/android/bluetooth.php\" rel=\"nofollow\">PDA-Net</a> website:</p>\n\n<blockquote>\n <p>Since this is just a regular Bluetooth\n DUN connection, you have 3 ways to\n initiate the dialup: </p>\n \n <ol>\n <li>You can use the B...
null
null
2013-01-13T10:54:25.260
null
null
3032
1
3047
2010-08-24T16:11:31.530
2
1107
<p>(I thought I posted this earlier, but it's not here, so I guess I didn't.)</p> <p>So, Gwibber isn't working. It as kind of almost working when I installed Ubuntu (10.4, 64-bit)--the "broadcast accounts" option under my name was doing what it does, but I still haven't seen the program actually function--and now, it's not opening, and "broadcast accounts" is not opening, but system->prefrences->broadcast preferences is opening.</p> <p>I had a problem at the beginning where my facebook account wouldn't register properly in "broadcast accounts". Then, I installed some basic update to gwibber, and then that worked fine. But just a little while later, nothing was working at all.</p> <p>In case this is a clue: the top-right notification boxes seem to show up a whole box-area lower than they should. This is another annoyance, but I feel like it might possibly be solved if I get gwibber working.</p>
1415
null
null
2010-08-24T19:56:09.343
Why isn't Gwibber working?
[ "gwibber" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-24T16:52:30.310", "id": "2960", "postId": "3032", "score": "2", "text": "This may not be the best place to post about this.\nInstead, please report the bug to launchpad: <https://bugs.launchpad.net/gwibber/+filebug>", "userDisplayName": null, "userId": "667" ...
{ "accepted": true, "body": "<p>Filing a bug is your best bet, this isn't affecting all users. If the software doesn't work as expected, it is a bug and it should be filed. I can't speak for everyone, but I truely appreciate bug reports. They are a vital part of development, we can't fix what we don't know is broken.</p>\n\n<p>Please help make Ubuntu better by filing a bug and including the gwibber log file which can be found in ~/.cache/gwibber/gwibber.log </p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-24T23:43:38.867", "id": "2986", "postId": "3047", "score": "1", "text": "They are. I just figure that if a bug is only affecting some people, those people must be doing something different from the people who tested it--which made me feel either that I was doing something wrong, which is why it only affected me, and that it could be solved by doing something not wrong, which is what I thought I was learning around here.\n\nI submitted it. It's a known bug. They had an interim solution--which is what I was looking for, and hoped to find here.", "userDisplayName": null, "userId": "1415" }, { "creationDate": "2010-08-25T15:56:00.983", "id": "3044", "postId": "3047", "score": "0", "text": "It's probably due to using Facebook - I find that Facebook functionality is very intermittent with Gwibber.", "userDisplayName": null, "userId": "667" }, { "creationDate": "2012-04-16T15:26:42.373", "id": "146192", "postId": "3047", "score": "0", "text": "Daniel, what solution do you have? Please post it in answer.", "userDisplayName": null, "userId": "2026" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T19:56:09.343", "id": "3047", "lastActivityDate": "2010-08-24T19:56:09.343", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1653", "parentId": "3032", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Filing a bug is your best bet, this isn't affecting all users. If the software doesn't work as expected, it is a bug and it should be filed. I can't speak for everyone, but I truely appreciate bug reports. They are a vital part of development, we can't fix what we don't kn...
null
null
2012-05-22T18:59:49.557
null
null
3036
1
3042
2010-08-24T17:36:47.680
8
3748
<pre><code>dpkg -L &lt;package&gt; </code></pre> <p>This command gives me a list of all the installed files, what's apt-get's equivalent option for it? I read the man page but couldn't figure out.</p>
76
null
null
2015-06-25T18:44:32.723
What's apt-get's equivalent option of this dpkg command?
[ "apt", "dpkg" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Like Dennis said, <code>apt-get</code> is a layer on top of <code>dpkg</code> (or other local package managers such as <code>rpm</code>). <code>dpkg</code> manages the local packages on the machine, while <code>apt-get</code> provides a way to grab packages from distant repositories and resolve dependencies between packages that will be handed to <code>dpkg</code>.</p>\n\n<pre><code>dpkg -L &lt;package_file&gt;\n</code></pre>\n\n<p>lists the files provided by a package already installed on the machine.</p>\n\n<p>With apt-get, you might want to list the files that a package provides, even if it is not installed in your system. Fortunately for you, there is a tool for that, called <code>apt-file</code>, which needs to be installed in addition to <code>apt-get</code>. You can use it this way:</p>\n\n<pre><code># Install apt-file\n$ sudo apt-get install apt-file\n# update apt-file's cache (different than apt-get's, namely apt-cache)\n$ sudo apt-file update\n# display the contents of a package\n$ sudo apt-file list &lt;package_name&gt;\n</code></pre>\n\n<p>Note that <code>apt-file</code> uses special files on the package repository called Contents files. While all official repositories have these files, some third-party repositories might not have them, so <code>apt-file</code> won't be able to list the contents of packages on these repositories.</p>\n\n<pre><code>man apt-file\n</code></pre>\n\n<p>will also list other nice things you can do with <code>apt-file</code>, such as <code>apt-file search &lt;keyword&gt;</code> which lets you find which packages provide a given file.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T18:55:11.143", "id": "3042", "lastActivityDate": "2010-08-24T18:55:11.143", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1667", "parentId": "3036", "postTypeId": "2", "score": "14" }
[ { "accepted": null, "body": "<p>There is no equivalent. <code>apt-get</code> is a layer on top of <code>dpkg</code>, not a replacement of it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-24T17:41:24.22...
null
null
null
null
null
3037
1
3041
2010-08-24T17:39:26.697
9
10589
<p>I have two monitors that I use for development. I would like to use sloppy focus for switching between windows. sloppy focus -- whatever you mouse is hovering over is in focus.</p> <p>I know it's available in ubuntu 10.04. How do you enable it?</p>
333
8844
2014-05-29T15:47:01.670
2014-05-29T15:47:01.670
How do I set GNOME to "focus follows mouse"?
[ "gnome", "mouse", "window-manager", "focus" ]
1
5
CC BY-SA 3.0
[ { "creationDate": "2010-08-24T17:54:15.090", "id": "2963", "postId": "3037", "score": "0", "text": "Can you edit your question to read like a question?", "userDisplayName": null, "userId": "235" }, { "creationDate": "2010-08-24T19:25:21.717", "id": "2971", "postId": "3037...
{ "accepted": true, "body": "<p>System -> Preferences -> Windows</p>\n\n<p>Check \"Select windows when the mouse moves over them\"</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2017-01-30T10:46:06.183", "id": "1365446", "postId": "3041", "score": "0", "text": "ubuntu 14.04, setting not to find. any command-line help?", "userDisplayName": null, "userId": "61568" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T18:08:53.340", "id": "3041", "lastActivityDate": "2010-08-24T18:08:53.340", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1158", "parentId": "3037", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>System -> Preferences -> Windows</p>\n\n<p>Check \"Select windows when the mouse moves over them\"</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2017-01-30T10:46:06.183", "id": "1365446", "postId": "3041", "score":...
null
null
2014-05-30T04:01:42.330
null
null
3043
1
3049
2010-08-24T19:31:28.607
6
379
<p>A while ago there was talk of moving all (or at least some?) of the packaging effort to bzr branches on launchpad. I seem to remember there were a number of benefits mentioned, such as making it easier for new developers/packagers to contribute.</p> <p>Can anyone update me on whether this happened and what the benefits would be? (I might have got completely the wrong end of the stick on this, so feel free to correct me...)</p>
866
5
2010-08-25T05:15:50.557
2010-10-03T04:01:36.400
Ubuntu packaging in bzr
[ "packaging", "launchpad", "motu", "bazaar" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I don't have a current count, but I think most are imported. You can try to checkout packages with <code>bzr branch lp:ubuntu/PACKAGENAME</code> or <code>lp:ubuntu/maverick/PACKAGENAME</code>, for a couple examples. </p>\n\n<p>Of course, replace <code>PACKAGENAME</code> with the package you are looking for, and you can replace <code>maverick</code> with the release you are looking for, lucid, karmic, etc. You can make changes and push to your own bzr branches for sponsorship.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-24T20:06:49.117", "id": "2978", "postId": "3049", "score": "0", "text": "Can you refer to the devel version by name? I thought for devel you always use lp:ubuntu/PACKAGE", "userDisplayName": null, "userId": "1158" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-24T20:03:30.250", "id": "3049", "lastActivityDate": "2010-08-24T20:27:25.507", "lastEditDate": "2010-08-24T20:27:25.507", "lastEditorDisplayName": null, "lastEditorUserId": "66", "ownerDisplayName": null, "ownerUserId": "1653", "parentId": "3043", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Everything for which imports did not fail is in bzr right now. KDE branches have tended to fail due to being massive, but I think that's being worked on.</p>\n\n<p>The benefits would be that we don't have debdiffs sitting in Launchpad that all have overlapping version number...
null
null
null
null
null
3045
1
3104
2010-08-24T19:46:33.357
24
79800
<p>I want to disable GNOME keyring globally on my machine. So I deleted the lines</p> <pre><code>auth optional pam_gnome_keyring.so session optional pam_gnome_keyring.so auto_start </code></pre> <p>in <code>/etc/pam.d/gdm</code>. It seems to me that this has no effect. When I lock in the syslog writes</p> <pre><code>Aug 24 18:37:03 foobar gnome-screensaver-dialog: gkr-pam: unlocked login keyring </code></pre> <p>and another user sees a menu window where he hs to enter his credentials. So what is the correct way to disable keyring for every user on that machine?</p>
236
235
2012-05-31T12:50:58.177
2020-08-14T20:34:02.520
How to disable GNOME keyring?
[ "gnome-keyring" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2012-11-04T05:03:40.210", "id": "262668", "postId": "3045", "score": "1", "text": "possible duplicate of [How can I stop being prompted to unlock the 'default' keyring on boot?](http://askubuntu.com/questions/867/how-can-i-stop-being-prompted-to-unlock-the-default-keyring-on-b...
{ "accepted": true, "body": "<p>Try this: <strong>System ⇒ Preferences ⇒ Startup Applications</strong> and uncheck <code>gnome-keyring-daemon</code>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2014-10-11T03:37:36.937", "id": "731080", "postId": "3104", "score": "2", "text": "This has changed to just System -> Startup Applications, in Precise 12.04 at least.", "userDisplayName": null, "userId": "6130" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-25T15:52:15.890", "id": "3104", "lastActivityDate": "2020-08-14T20:34:02.520", "lastEditDate": "2020-08-14T20:34:02.520", "lastEditorDisplayName": "user1094181", "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1170", "parentId": "3045", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>I think you just disabled the auto-unlock. To disable it completely, I suppose you could uninstall it. If that makes the package manager unhappy, you could also <code>sudo chmod -x /usr/bin/gnome-keyring</code></p>\n", "commentCount": "2", "comments": [ { ...
null
null
null
null
null
3050
1
3654
2010-08-24T20:12:10.493
8
4299
<p>I want to run pulseaudio from startup to deal with system sounds etc and be able to run jack from qjackctl for use with audio applications (LMMS, ardour, rosegarden etc) I'm having issues when i start up, the sound applet does not allow me to control the volume. When I click sound preferences it says "waiting for sound system to respond" yet the sound still plays in rhythmbox etc. </p>
633
41
2010-10-15T15:57:49.700
2014-09-27T21:09:05.230
Jack and pulseaudio
[ "sound", "pulseaudio", "jack" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-25T01:29:58.820", "id": "2995", "postId": "3050", "score": "0", "text": "It might be useful to know what exactly your sound setup is. Do you have PA -> JACK -> ALSA permanently, or do you stop PA while you use JACK or ...?", "userDisplayName": null, "userId": ...
{ "accepted": true, "body": "<p>for some reason pavucontrol had been uninstalled. just had to reinstall it.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T09:22:36.100", "id": "3654", "lastActivityDate": "2010-09-05T09:22:36.100", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "633", "parentId": "3050", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>This might not be the correct answer, but I'd recommend bringing up JACK only when you need it. Otherwise, things can get crazy with sound.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-29T09:27:21.843", "id": "3261", ...
null
null
null
null
null
3051
1
3059
2010-08-24T20:34:30.513
9
5559
<p>We're trying to debug a kernel panic/oops on Ubuntu 10.04. The stacktrace isn't quite enough for us. How can we configure the system to spit out a core dump and where can we find it after the crash?</p> <p>There is a lot of information on how to get a user-mode core dump, but very little (or old) information on getting a kernel core dump.</p> <p><a href="http://www.faqs.org/docs/Linux-HOWTO/Linux-Crash-HOWTO.html">LKCD</a> exists, but looks as though it hasn't been updated since 2002.</p>
1695
41
2010-09-29T16:52:01.197
2010-09-29T16:52:01.197
How can I get a Kernel Core Dump
[ "10.04", "kernel" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Installing the <code>linux-crashdump</code> package will install the kexec tools and set up grub to pass the needed kernel options to have the crashdump kernel available.</p>\n\n<p>This should automatically catch kernel crashes. For non-crash kernel problems such as an oops you should be able to use the <a href=\"http://en.wikipedia.org/wiki/Magic_SysRq_key#Magic_commands\">magic sysrq key's</a> <code>c</code> command to kexec the crashdump kernel and get a dump.</p>\n\n<p>You may also want to enable apport to have the dump nicely processed into a crash report for submission to Launchpad or for local retracing. To do that you need to edit <code>/etc/default/apport</code>.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-10-25T09:46:48.187", "id": "81401", "postId": "3059", "score": "0", "text": "how to run linux-crashdump and get the last crash report of ubuntu 11.10?", "userDisplayName": null, "userId": "23864" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T00:58:46.947", "id": "3059", "lastActivityDate": "2010-08-25T00:58:46.947", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "188", "parentId": "3051", "postTypeId": "2", "score": "15" }
[ { "accepted": true, "body": "<p>Installing the <code>linux-crashdump</code> package will install the kexec tools and set up grub to pass the needed kernel options to have the crashdump kernel available.</p>\n\n<p>This should automatically catch kernel crashes. For non-crash kernel problems such as an oops ...
null
null
null
null
null
3055
1
3065
2010-08-24T22:02:11.623
2
690
<p>I'm running Lucid on a few laptops, with xfce as the desktop environment.</p> <p>Before Lucid, the little NetworkManager tray widget would automatically scan for access points for me. Now, however, I find that I have to go run <code>iwlist</code> myself to look for SSIDs (if I don't know one already) and manually add that to the list. Once I've done that, then it'll automatically connect (if the AP is configured that way).</p> <p>Part of what makes this a real pain is that the tray widget (sometimes) seems to not show itself at all when there's no current connection and no known access points. I have to kill NetworkManager (which is a pain, because <code>init</code> really wants to re-launch it), run <code>iwlist</code> to find an SSID, go to the (now showing) tray widget and add the SSID, and then re-start NetworkManager.</p> <p>I realize that the widget is just messing with a config file or two, and I'm happy to fool with those manually, but what I'd <em>really</em> like is for it to work the way it used to and just do the scan for me. Note that once I've got a connection up, <em>then</em> it shows me all the APs it can see, as before.</p> <p>I acknowledge that it's possible I screwed up some setup file, but I've really tried scrubbing everything back to "as new" state and that hasn't helped. Am I crazy or did that stuff really change?</p>
1684
null
null
2010-08-25T01:53:31.013
Automatically add new wireless access points
[ "network-manager", "wireless", "xfce" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-28T01:25:30.270", "id": "3214", "postId": "3055", "score": "1", "text": "[etckeeper](http://packages.ubuntu.com/search?keywords=etckeeper) can help with finding out what config settings changed and when (but only for /etc).", "userDisplayName": "Roger Pate", "u...
{ "accepted": true, "body": "<p>You can ask upstart (the init daemon used on Ubuntu) to stop NetworkManager, that's much \"cleaner\" than killing the process yourself: <code>sudo initctl stop network-manager</code> (replace \"stop\" with \"start\" to start it manually again).</p>\n\n<p>About the issues with NetworkManager: it seems like it logs to <code>/var/log/daemon.log</code>; maybe you can find some useful messages there?</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-08-25T06:50:32.567", "id": "2999", "postId": "3065", "score": "0", "text": "I know everything is moving (or is moved) to upstart, but is there anything wrong with using `sudo service NetworkManager stop`?", "userDisplayName": null, "userId": "646" }, { "creationDate": "2010-08-25T08:27:10.387", "id": "3010", "postId": "3065", "score": "0", "text": "When there is a script in `/etc/init.d/` that does the \"initctl\" for you (and it's there for network-manager), `service` will work too. (But note that it's called \"network-manager\" now, not \"NetworkManager\" as it was called in the past IIRC.)", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-25T14:17:45.630", "id": "3024", "postId": "3065", "score": "0", "text": "It's still called \"NetworkManager\" in 10.04. Thanks for the suggestions, but my problem isn't so much with how to go about killing/restarting NetworkManager. I'd rather not have to do it at all :-)", "userDisplayName": null, "userId": "1684" }, { "creationDate": "2010-08-25T15:32:30.150", "id": "3039", "postId": "3065", "score": "0", "text": "I have *no* init script named \"NetworkManager\" in 10.04 (and everything works fine here...). And to fix your issue, please check the logfile(s) I mention above if they have any useful info.", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-25T16:45:17.180", "id": "3050", "postId": "3065", "score": "0", "text": "Aparently the package is called \"network-manager\", and it include /etc/init.d/NetworkManager - maybe you don't have it installed. When I log in when not near any known access points, the tray widget hides itself and makes it impossible to select from any AP's it may have scanned. There's stuff in the log file, but it's not very clear what it means.", "userDisplayName": null, "userId": "1684" }, { "creationDate": "2010-08-25T21:51:09.220", "id": "3074", "postId": "3065", "score": "0", "text": "Well, `dpkg -L network-manager | grep /etc/init.d/` outputs `/etc/init.d/network-manager`...", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-25T21:55:03.097", "id": "3075", "postId": "3065", "score": "0", "text": "Maybe you should try to reinstall network-manager and see if that fixes anything?", "userDisplayName": null, "userId": "935" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T01:53:31.013", "id": "3065", "lastActivityDate": "2010-08-25T01:53:31.013", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3055", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>You can ask upstart (the init daemon used on Ubuntu) to stop NetworkManager, that's much \"cleaner\" than killing the process yourself: <code>sudo initctl stop network-manager</code> (replace \"stop\" with \"start\" to start it manually again).</p>\n\n<p>About the issues with...
null
null
null
null
null
3056
1
3196
2010-08-24T22:48:18.560
4
47661
<p>I've looked around for answers to this, but nothing I've found has been relevant, which seems a little weird but there you go. All I'd like to do is drive a second monitor via HDMI from a laptop. From Windows 7 on this laptop that works fine, of course; it's actually surprisingly nice. Thus I know the hardware is OK.</p> <p>From another laptop I've got, one with an NVidia card, the NVidia settings app seems to do the trick (though it's clunky). However, this laptop I'm using has an Intel GPU, and I can't find any information about how to get it to recognize that a second display is available. Is it even possible to do this dynamically, or do I need to statically alter my "xorg.conf" to make the second screen available?</p> <p><em>edit</em> &mdash; sorry I should have noted that I run xfce. </p>
1684
1684
2010-08-25T14:11:05.463
2017-11-15T23:31:28.110
How do I use a second HDMI-connected monitor?
[ "hardware", "xorg", "display" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-25T06:44:32.250", "id": "2998", "postId": "3056", "score": "0", "text": "Have you tried connecting the monitor and going to System>Preferences>Monitors? Do both show up? If not, have you tried leaving the monitor plugged in and restarting, then going to the settings?...
{ "accepted": true, "body": "<p>I ended up logging a bug, because it seems that the Intel driver simply doesn't detect the HDMI interface at all. Maybe it'll get fixed when they get the dual-chip driver done.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-27T19:19:08.240", "id": "3196", "lastActivityDate": "2010-08-27T19:19:08.240", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1684", "parentId": "3056", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Open System/Preferences/Monitors and click 'Detect'. This is the standard way and should \"Just Work\". I assume you tried this already and it didn't just work.</p>\n\n<p>Next, I'd try doing it from the command line: xrandr --auto</p>\n\n<p>If <em>that</em> didn't work, ti...
null
null
null
null
null
3057
1
3060
2010-08-24T23:03:36.827
2
2340
<p>At home, I have Ubuntu server with the UFW firewall. What command do I type to turn on local intranet access to my web server, but keep the outside world out from my DSL modem?</p>
1698
453
2010-08-25T10:23:52.190
2010-08-25T10:23:52.190
Ubuntu Linux UFW Firewall, Local Intranet Access
[ "server", "networking", "firewall", "intranet" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-24T23:51:28.497", "id": "2988", "postId": "3057", "score": "1", "text": "Is the DSL modem a NATing router? If so, and if you haven't forwarded any ports to the server, then leaving the firewall wide open is fine--nothing's getting past the router.", "userDisplayNa...
{ "accepted": true, "body": "<pre><code>sudo ufw default deny\nsudo ufw allow from 192.168.1.0/24 to any port 80\n</code></pre>\n\n<p>Assuming the web server is on port 80 and 192.168.1.x is your home subnet. If you explicitly want exclude your router, then assuming it's 192.168.1.1, it would be:</p>\n\n<pre><code>sudo ufw deny from 192.168.1.1 to any port 80\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T01:05:25.330", "id": "3060", "lastActivityDate": "2010-08-25T01:05:25.330", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1217", "parentId": "3057", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<pre><code>sudo ufw default deny\nsudo ufw allow from 192.168.1.0/24 to any port 80\n</code></pre>\n\n<p>Assuming the web server is on port 80 and 192.168.1.x is your home subnet. If you explicitly want exclude your router, then assuming it's 192.168.1.1, it would be:</p>\n\n<pr...
null
null
null
null
null
3063
1
3117
2010-08-25T01:31:55.417
48
80357
<p>That's pretty much it. If I connect to the Internet on wlan0, how can I share this connection with a device plugged into my wired Ethernet port eth0?</p>
1217
169736
2014-05-23T18:55:37.247
2024-02-09T11:12:25.703
Share Wireless connection with Wired Ethernet Port
[ "wireless" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T21:32:09.460", "id": "3155", "postId": "3063", "score": "1", "text": "Thanks everyone, for both the GUI approach and through NAT forwarding. I'd never actually noticed the option there in NetworkManager.", "userDisplayName": null, "userId": "1217" }, { ...
{ "accepted": true, "body": "<p>I had a MacMini running Ubuntu 9.10 using the Wireless connection for internet. Then I connected my Xbox360 into the MacMini's ethernet port in order to use Xbox Live.</p>\n\n<p>It's ridiculously easy. Simply right click on your network manager and choose \"Edit Connections\". Then in the \"Wired\" tab, you can either use your existing wired connection, (or create a new one by hitting the \"Add\" button, name your new connection \"Shared Network Port\" or something similar), pop into its IPv4 tab and in \"Method\", choose \"Shared to other computers\". Apply everything and close the network manager windows.</p>\n\n<p>Now when you need to plug something into that ethernet port, you can share your WIFI internet conenction simply by clicking on network manager and choosing the \"Shared Network Port\" entry there.</p>\n\n<p>If you want this to be a constantly used ethernet connection used for sharing and nothing else, feel free to edit \"Auto Eth0\" instead of creating a new entry like I describe above. Creating a new entry gives you some flexibility to choose however.</p>\n\n<p>Note that this uses a bit of NAT (network address translation) magic to work properly, so the Xbox360 (or whatever you plug into your wired port) will get a funky IP address.</p>\n\n<p>From memory, it will only be able to see the internet too - I don't think you can see the host computer, the one with the internet connection. You can set that up, but it requires a bit of messing about with DHCP servers, I believe. I didn't need it, so I didn't go down that road.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-26T21:01:52.797", "id": "3153", "postId": "3117", "score": "1", "text": "Using the GUI method, a machine plugged in to the eth0 port does not seem to get an IP address ... I can see eth0 on the 'sharing' side giving a 10.x IP address to eth0, but no luck getting an address on the client. I've done a networking restart ... I'm assuming that a reboot is not necessary.", "userDisplayName": null, "userId": "1217" }, { "creationDate": "2010-08-26T21:30:59.040", "id": "3154", "postId": "3117", "score": "0", "text": "... nevermind. I tried it using a different client machine (Linux instead of Windows ... figures) and it worked fine.", "userDisplayName": null, "userId": "1217" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-25T20:18:50.817", "id": "3117", "lastActivityDate": "2013-08-10T10:35:03.937", "lastEditDate": "2013-08-10T10:35:03.937", "lastEditorDisplayName": null, "lastEditorUserId": "110157", "ownerDisplayName": null, "ownerUserId": "861", "parentId": "3063", "postTypeId": "2", "score": "36" }
[ { "accepted": true, "body": "<p>I had a MacMini running Ubuntu 9.10 using the Wireless connection for internet. Then I connected my Xbox360 into the MacMini's ethernet port in order to use Xbox Live.</p>\n\n<p>It's ridiculously easy. Simply right click on your network manager and choose \"Edit Connections...
null
null
null
null
null
3070
1
3074
2010-08-25T05:14:15.873
2
1886
<p>I tried looking online for all possible solutions and even installing evtouch package, but nothing seems to work. I know that the tx1000 series laptops are notoriously linux unfriendly. Does anyone have any ideas on how to get the touchscreen to work on them?</p>
1705
23
2010-09-04T09:15:14.200
2010-09-04T09:15:14.200
How do I configure touchscreen on my HP tx1000 laptop running xubuntu?
[ "hardware", "drivers", "laptop", "tablet" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It uses a proprietary driver called eGalax. It's not available or supported in Ubuntu but here's a link to the driver download:\n<a href=\"http://home.eeti.com.tw/web20/eGalaxTouchDriver/linuxDriver.htm\" rel=\"nofollow\">http://home.eeti.com.tw/web20/eGalaxTouchDriver/linuxDriver.htm</a></p>\n\n<p>Ideally, the Linux kernel's general purpose evdev input driver <em>should</em> make the touchscreen \"just work\", however its support for touchscreen models is far, far from complete. If you're really interested in getting it working and don't mind getting your hands dirty into some source code, you might be able to lend a hand to the evdev kernel developers to make it work for this hardware (or they might have some configurable settings you could try.)</p>\n\n<p>I wouldn't bother with evtouch for this hardware; it's not at all maintained and is being deprecated in favor of evdev.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T07:19:38.373", "id": "3074", "lastActivityDate": "2010-08-25T07:19:38.373", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "913", "parentId": "3070", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>It uses a proprietary driver called eGalax. It's not available or supported in Ubuntu but here's a link to the driver download:\n<a href=\"http://home.eeti.com.tw/web20/eGalaxTouchDriver/linuxDriver.htm\" rel=\"nofollow\">http://home.eeti.com.tw/web20/eGalaxTouchDriver/linux...
null
null
null
null
null
3071
1
3103
2010-08-25T06:13:56.327
2
176
<p>Is there a way to remove the File, Edit, View... toolbar from Firefox (so that I will have only the address toolbar visible)? I think in Windows from version 3.5 you can just right click on the toolbar and you can just unselect it... I don't have Firefox installed, i use Swiftfox...</p>
1706
25863
2012-06-18T18:21:14.557
2012-06-18T18:21:14.557
Swiftfox without the file, view toolbar
[ "firefox", "menu" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Try the <a href=\"https://addons.mozilla.org/en-US/firefox/addon/4762/\" rel=\"nofollow\">Hide Menubar</a> addon. The menubar is hidden by default but you can toggle it with the <kbd>Alt</kbd> key.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T15:51:19.613", "id": "3103", "lastActivityDate": "2010-08-25T15:51:19.613", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "667", "parentId": "3071", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>I use the <a href=\"https://addons.mozilla.org/en-US/firefox/addon/1455/\" rel=\"nofollow noreferrer\">tiny menu extension</a> to reduce the menu bar to an icon next to my address bar.\n<img src=\"https://i.stack.imgur.com/iYgCw.png\" alt=\"The back/forward/stop buttons are a...
null
null
null
null
null
3076
1
3078
2010-08-25T07:34:59.373
2
849
<p>i installed a bunch of time many linux distro and never got this "bug". It's kind of weird, the system run really fine , but when there is operation like update manager or download via any browser , etc. It goes well until a moment (never the same delay) and radically slow down or even stop , the pc doesn't freeze but the operation is paused , and when i touch the touchpad it continue .</p> <p>i suspected hard drive issue , so i changed it , a bios issue , except AHCI i can't modify anything..., also suspected that ACPI stop the drive so i unchecked the box but still the same bug.</p> <p>if anyone has already got this... it's not a deadly bug but a big annoyance.</p>
1709
6005
2012-06-12T16:23:09.240
2012-06-12T16:23:09.240
System slows down until I move the mouse
[ "hardware", "mouse" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>This sounds like a bug with something related to timer interrupts. Basically, the kernel is waiting for an interrupt to give the next process a short slice of time to run, but the timer interrupt signal never fires. And moving the mouse happens to fire an interrupt too, so that's why the kernel starts scheduling time for all applications again then.</p>\n\n<p>I suggest you file a bug report against the kernel on Launchpad. The best way to do that on Ubuntu is by running the following command:</p>\n\n<pre><code>ubuntu-bug linux\n</code></pre>\n\n<p>That will collect info about your system (things like kernel version &amp; hardware info), send it to Launchpad, and then open a browser to file a bug report. If you don't have a Launchpad account yet, you'll be asked to create one. Make sure to explain well what your problem is, and answer if more info is asked.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-25T09:47:57.110", "id": "3014", "postId": "3078", "score": "0", "text": "nice idea, didn't think about it. if i get something i'll post it here ,thanks", "userDisplayName": null, "userId": "1709" }, { "creationDate": "2010-08-25T15:28:15.100", "id": "3036", "postId": "3078", "score": "1", "text": "What you can try first is to add `noapic` to the kernel boot parameters. If you have grub2, you can do that by changing the line `GRUB_CMDLINE_LINUX=\"\"` in `/etc/default/grub` to `GRUB_CMDLINE_LINUX=\"noapic\"`.", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-27T09:47:15.010", "id": "3186", "postId": "3078", "score": "2", "text": "And don't forget to run `sudo update-grub` after editing the `/etc/default/grub`.", "userDisplayName": null, "userId": "646" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T07:59:41.040", "id": "3078", "lastActivityDate": "2010-08-25T07:59:41.040", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3076", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>This sounds like a bug with something related to timer interrupts. Basically, the kernel is waiting for an interrupt to give the next process a short slice of time to run, but the timer interrupt signal never fires. And moving the mouse happens to fire an interrupt too, so ...
null
null
null
null
null
3084
1
null
2010-08-25T11:48:26.180
6
2715
<p>Since at least Jaunty, I've tried to get my wife's 3G USB modem to work on Ubuntu, always with the same result - instant, complete system freeze.</p> <p>I've tried installing`wvdial and usb-modeswitch, I've read tons of documentation but it gets quite disjointed from one release to the next, nothing works. I can't run lsusb because the system hangs immediately.</p> <p>I'm using Lucid and it's a Rogers "Rocket Stick" (in Canada)</p>
null
34576
2012-06-14T12:49:39.170
2012-07-10T06:09:01.673
How do I get a 3G USB modem to work?
[ "10.04", "configuration", "usb-modem", "usb-modeswitch" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2010-09-22T09:03:35.150", "id": "4666", "postId": "3084", "score": "0", "text": "Does your system freeze when running lsusb even when the modem.is not plunged in? If so you probably need to debug your usb controller first.", "userDisplayName": null, "userId": "137537" ...
null
[ { "accepted": null, "body": "<p>The real answer is to start with a supported device. See <a href=\"http://en.wikipedia.org/wiki/NetworkManager\" rel=\"nofollow\">http://en.wikipedia.org/wiki/NetworkManager</a> for a list of working devices.</p>\n", "commentCount": "0", "comments": [], "community...
null
null
null
null
stone1343
3085
1
null
2010-08-25T11:56:06.947
2
4022
<p>Hello everyone I really am new to this Ubuntu thing. I am now running the latest Ubuntu and windows on the same PC. Wireless connections work fine on windows but connects and disconnects on Ubuntu.</p> <p>I am on ADSL with wireless router (Belkin and Belkin wireless network adaptor).</p> <pre><code>russell@ubuntu:~$ dmesg | grep rt [ 0.000000] KERNEL supported cpus: [ 0.000000] Movable zone start PFN for each node [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:50000000) [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] Enabling unmasked SIMD FPU exception support... done. [ 0.000000] virtual kernel memory layout: [ 0.004287] mce: CPU supports 4 MCE banks [ 0.035629] ftrace: converting mcount calls to 0f 1f 44 00 00 [ 0.185268] ACPI: (supports S0 S1 S4 S5) [ 0.193969] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.194048] pci 0000:00:1d.0: reg 20 io port: [0xbc00-0xbc1f] [ 0.194117] pci 0000:00:1d.1: reg 20 io port: [0xb000-0xb01f] [ 0.194189] pci 0000:00:1d.2: reg 20 io port: [0xb400-0xb41f] [ 0.194257] pci 0000:00:1d.3: reg 20 io port: [0xb800-0xb81f] [ 0.194485] pci 0000:00:1e.2: reg 10 io port: [0xc000-0xc0ff] [ 0.194495] pci 0000:00:1e.2: reg 14 io port: [0xc400-0xc43f] [ 0.194554] pci 0000:00:1e.2: PME# supported from D0 D3hot D3cold [ 0.193969] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.194048] pci 0000:00:1d.0: reg 20 io port: [0xbc00-0xbc1f] [ 0.194117] pci 0000:00:1d.1: reg 20 io port: [0xb000-0xb01f] [ 0.194189] pci 0000:00:1d.2: reg 20 io port: [0xb400-0xb41f] [ 0.194257] pci 0000:00:1d.3: reg 20 io port: [0xb800-0xb81f] [ 0.194485] pci 0000:00:1e.2: reg 10 io port: [0xc000-0xc0ff] [ 0.194495] pci 0000:00:1e.2: reg 14 io port: [0xc400-0xc43f] [ 0.194554] pci 0000:00:1e.2: PME# supported from D0 D3hot D3cold [ 0.194714] pci 0000:00:1f.1: reg 10 io port: [0x00-0x07] [ 0.194724] pci 0000:00:1f.1: reg 14 io port: [0x00-0x03] [ 0.194735] pci 0000:00:1f.1: reg 18 io port: [0x00-0x07] [ 0.194746] pci 0000:00:1f.1: reg 1c io port: [0x00-0x03] [ 0.194759] pci 0000:00:1f.1: reg 20 io port: [0xf000-0xf00f] [ 0.194819] pci 0000:00:1f.2: reg 10 io port: [0xd000-0xd007] [ 0.194829] pci 0000:00:1f.2: reg 14 io port: [0xd400-0xd403] [ 0.194714] pci 0000:00:1f.1: reg 10 io port: [0x00-0x07] [ 0.194724] pci 0000:00:1f.1: reg 14 io port: [0x00-0x03] [ 0.194735] pci 0000:00:1f.1: reg 18 io port: [0x00-0x07] [ 0.194746] pci 0000:00:1f.1: reg 1c io port: [0x00-0x03] [ 0.194759] pci 0000:00:1f.1: reg 20 io port: [0xf000-0xf00f] [ 0.194819] pci 0000:00:1f.2: reg 10 io port: [0xd000-0xd007] [ 0.194829] pci 0000:00:1f.2: reg 14 io port: [0xd400-0xd403] [ 0.194839] pci 0000:00:1f.2: reg 18 io port: [0xd800-0xd807] [ 0.194848] pci 0000:00:1f.2: reg 1c io port: [0xdc00-0xdc03] [ 0.194858] pci 0000:00:1f.2: reg 20 io port: [0xe000-0xe00f] [ 0.194892] pci 0000:00:1f.2: PME# supported from D3hot [ 0.194957] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f] [ 0.195097] pci 0000:01:00.0: reg 24 io port: [0x9000-0x907f] [ 0.195212] pci 0000:00:1c.0: bridge io port: [0x9000-0x9fff] [ 0.195287] pci 0000:02:05.0: reg 10 io port: [0xa000-0xa0ff] [ 0.195360] pci 0000:02:05.0: supports D1 D2 [ 0.194839] pci 0000:00:1f.2: reg 18 io port: [0xd800-0xd807] [ 0.194848] pci 0000:00:1f.2: reg 1c io port: [0xdc00-0xdc03] [ 0.194858] pci 0000:00:1f.2: reg 20 io port: [0xe000-0xe00f] [ 0.194892] pci 0000:00:1f.2: PME# supported from D3hot [ 0.194957] pci 0000:00:1f.3: reg 20 io port: [0x500-0x51f] [ 0.195097] pci 0000:01:00.0: reg 24 io port: [0x9000-0x907f] [ 0.195212] pci 0000:00:1c.0: bridge io port: [0x9000-0x9fff] [ 0.195287] pci 0000:02:05.0: reg 10 io port: [0xa000-0xa0ff] [ 0.195360] pci 0000:02:05.0: supports D1 D2 [ 0.195367] pci 0000:02:05.0: PME# supported from D1 D2 D3hot D3cold [ 0.195437] pci 0000:00:1e.0: bridge io port: [0xa000-0xafff] [ 0.224801] system 00:01: ioport range 0x4d0-0x4d1 has been reserved [ 0.224807] system 00:01: ioport range 0x290-0x29f has been reserved [ 0.224813] system 00:01: ioport range 0x800-0x87f has been reserved [ 0.224819] system 00:01: ioport range 0x880-0x88f has been reserved [ 0.224836] system 00:0b: ioport range 0x400-0x4bf could not be reserved [ 0.279897] pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X – Raven Aug 27 at 0:42 edit [ 0.195367] pci 0000:02:05.0: PME# supported from D1 D2 D3hot D3cold [ 0.195437] pci 0000:00:1e.0: bridge io port: [0xa000-0xafff] [ 0.224801] system 00:01: ioport range 0x4d0-0x4d1 has been reserved [ 0.224807] system 00:01: ioport range 0x290-0x29f has been reserved [ 0.224813] system 00:01: ioport range 0x800-0x87f has been reserved [ 0.224819] system 00:01: ioport range 0x880-0x88f has been reserved [ 0.224836] system 00:0b: ioport range 0x400-0x4bf could not be reserved [ 0.279897] pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X [ 0.279910] pcieport 0000:00:1c.0: setting latency timer to 64 [ 0.287215] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.291459] input: Macintosh mouse button emulation as /devices/virtual/input/input2 [ 0.299338] ehci_hcd 0000:00:1d.7: cache line size of 128 is not supported [ 0.346769] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 0.347042] hub 1-0:1.0: 8 ports detected [ 0.347617] hub 2-0:1.0: 2 ports detected [ 0.348036] hub 3-0:1.0: 2 ports detected [ 0.348459] hub 4-0:1.0: 2 ports detected [ 0.348891] hub 5-0:1.0: 2 ports detecte – Raven Aug 27 at 0:43 edit [ 0.279910] pcieport 0000:00:1c.0: setting latency timer to 64 [ 0.287215] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.291459] input: Macintosh mouse button emulation as /devices/virtual/input/input2 [ 0.299338] ehci_hcd 0000:00:1d.7: cache line size of 128 is not supported [ 0.346769] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 0.347042] hub 1-0:1.0: 8 ports detected [ 0.347617] hub 2-0:1.0: 2 ports detected [ 0.348036] hub 3-0:1.0: 2 ports detected [ 0.348459] hub 4-0:1.0: 2 ports detected [ 0.348891] hub 5-0:1.0: 2 ports detected [ 0.349073] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp [ 0.349998] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.350404] rtc_cmos 00:03: RTC can wake from S4 [ 0.350475] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 0.350506] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs – Raven Aug 27 at 0:43 edit [ 0.349073] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp [ 0.349998] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.350404] rtc_cmos 00:03: RTC can wake from S4 [ 0.350475] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 0.350506] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs [ 0.355364] Using IPI No-Shortcut mode [ 0.356078] rtc_cmos 00:03: setting system clock to 2010-08-27 10:13:42 UTC (1282904022) [ 0.763804] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.763811] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.826587] udev: starting version 151 [ 0.860561] hub 1-1:1.0: 4 ports detected [ 1.116873] USB Mass Storage support registered. [ 2.734937] hub 3-2:1.0: 4 ports detected [ 13.477205] udev: starting version 151 – Raven Aug 27 at 0:43 edit [ 0.355364] Using IPI No-Shortcut mode [ 0.356078] rtc_cmos 00:03: setting system clock to 2010-08-27 10:13:42 UTC (1282904022) [ 0.763804] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.763811] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.826587] udev: starting version 151 [ 0.860561] hub 1-1:1.0: 4 ports detected [ 1.116873] USB Mass Storage support registered. [ 2.734937] hub 3-2:1.0: 4 ports detected [ 13.477205] udev: starting version 151 [ 13.686799] Linux agpgart interface v0.103 [ 13.953260] USB Serial support registered for generic [ 13.958045] USB Serial support registered for GSM modem (1-port) [ 13.973144] option 3-2.4:1.0: GSM modem (1-port) converter detected [ 13.973594] usb 3-2.4: GSM modem (1-port) converter now attached to ttyUSB0 [ 13.973643] option 3-2.4:1.1: GSM modem (1-port) converter detected [ 13.973747] usb 3-2.4: GSM modem (1-port) converter now attached to ttyUSB1 [ 13.686799] Linux agpgart interface v0.103 [ 13.953260] USB Serial support registered for generic [ 13.958045] USB Serial support registered for GSM modem (1-port) [ 13.973144] option 3-2.4:1.0: GSM modem (1-port) converter detected [ 13.973594] usb 3-2.4: GSM modem (1-port) converter now attached to ttyUSB0 [ 13.973643] option 3-2.4:1.1: GSM modem (1-port) converter detected [ 13.973747] usb 3-2.4: GSM modem (1-port) converter now attached to ttyUSB1 [ 13.973783] option 3-2.4:1.2: GSM modem (1-port) converter detected [ 13.973908] usb 3-2.4: GSM modem (1-port) converter now attached to ttyUSB2 [ 14.068472] parport_pc 00:09: reported by Plug and Play ACPI [ 14.068526] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] [ 14.172348] lp0: using parport0 (interrupt-driven). [ 16.456225] ppdev: user-space parallel port driver russell@ubuntu:~$ </code></pre>
null
235
2012-01-25T23:35:57.157
2012-01-25T23:35:57.157
Belkin wireless 802.11g USB network adapter not working
[ "wireless", "realtek" ]
1
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>We are going to need more info to be able to help you. Like what type of wireless adapter are you using and what Ubuntu version are you using.</p>\n\n<p>------ <strong>TRY 1: Failed</strong></p>\n\n<p>One generic tip is to System->Administration->Hardware Drivers. Maybe you n...
null
null
2013-03-14T17:05:59.907
null
Raven
3089
1
3092
2010-08-25T13:15:04.093
4
122
<p>Our <a href="http://wiki.ubuntu.com/UbuntuGlobalJam" rel="nofollow">global jam</a> is coming up this weekend, and I wonder what we can do to increase participation and also collaboration between the different events. Maybe we still have time to implement some of the suggestions.</p>
4
235
2010-08-25T15:43:51.957
2010-09-06T20:16:34.530
What can we do to increase participation in Global Jams?
[ "community", "locoteams" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Starting a twitter account. Posting updates and relevant news. Reaching out to prominent bloggers in the Ubuntu and Linux world. Posting on forums, just getting the word out. I see on your website you have badges. Get as many people as possible to post the badge maybe some sort of contest. But then again people only do what they want to.</p>\n\n<p>Also directing people with a very specific goal, much like a video game. Help them feel that they are actually contributing in a measurable way. reputation or goal bars for example.</p>\n\n<p>Either way goodluck! :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2010-08-25T13:37:17.190", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T13:37:17.190", "id": "3092", "lastActivityDate": "2010-08-25T13:37:17.190", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "333", "parentId": "3089", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Starting a twitter account. Posting updates and relevant news. Reaching out to prominent bloggers in the Ubuntu and Linux world. Posting on forums, just getting the word out. I see on your website you have badges. Get as many people as possible to post the badge maybe some so...
2010-08-25T13:15:04.093
null
null
null
null
3094
1
3102
2010-08-25T14:29:04.527
4
1206
<p>Here's my boggle. I use <code>gmplayer</code> to play all my videos. 99.9% of the time everything works fine but in that 1-in-1000 case, a video might be corrupted. <code>gmplayer</code> plays the video but it cries like an angry, hungry baby, popping up windows left, right and centre. In really bad videos this actually slows down the whole system as it spawns hundreds of error windows (compiz applies effects, etc). It also steals focus and occasionally cancels Christmas.</p> <p>In the command-line <code>mplayer</code> these messages are just throw out to the command line. Using <code>mplayer</code>-proper might be an option if I can't use <code>gmplayer</code> but it's not quite as good for my needs.</p> <p>I have found a workaround. If you add <code>-msglevel all=0</code> to the <code>gmplayer</code> call, errors are suppressed. Useless from a debug perspective but I'm not attempting to debug videos here, just watch them.</p> <p>What I want to do is "alias" or "proxy" the <code>gmplayer</code> command so when you run <code>gmplayer</code> from the command line or by association, it actually runs <code>gmplayer -msglevel all=0</code>. I gather that just adding a bash alias won't work for associated (as in double clicking on a video in gnome) plays.</p> <p>What are my options for hard-proxying the command. This only needs to work for one user but I'm open to system-wide changes too.</p>
449
453
2010-08-25T19:42:50.863
2010-08-27T07:18:15.737
Overriding a executable to add a default flag
[ "configuration", "alias", "gmplayer" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can set this option in one f the mplayer option files, this will then be the default behaviour. For system wide change /etc/mplayer/mpplayer.conf of just for that user create ~/.mplayer/mplayer.conf and put it in there.</p>\n\n<p>Adding this to <code>~/.mplayer/mplayer.conf</code> works:</p>\n\n<pre><code>msglevel=all=0\n</code></pre>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-08-25T18:28:53.293", "id": "3052", "postId": "3102", "score": "1", "text": "any idea if it's the same config file for mplayer versus gmplayer?", "userDisplayName": null, "userId": "352" }, { "creationDate": "2010-08-25T20:51:19.703", "id": "3059", "postId": "3102", "score": "0", "text": "It is. The code under the first paragraph is from me testing it.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-08-25T22:01:27.593", "id": "3077", "postId": "3102", "score": "1", "text": "This is probably the cleanest solution :-)", "userDisplayName": null, "userId": "1667" }, { "creationDate": "2010-08-26T12:29:18.533", "id": "3124", "postId": "3102", "score": "0", "text": "Config files should always be the first place to look. Nice one :-)", "userDisplayName": null, "userId": "644" }, { "creationDate": "2012-08-30T13:41:29.863", "id": "226698", "postId": "3102", "score": "0", "text": "Doing this to mplayer also fixes gmplayer or any of the other front ends to mplayer. Things like gmplayer call mplayer in the background, and just display the video in a frame provided by the skin application.", "userDisplayName": null, "userId": "423" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T15:15:17.620", "id": "3102", "lastActivityDate": "2010-08-25T15:25:20.847", "lastEditDate": "2010-08-25T15:25:20.847", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "423", "parentId": "3094", "postTypeId": "2", "score": "8" }
[ { "accepted": null, "body": "<p>I am not totally sure how to complish this. other than writing a script that calls your executable with flags. But I know that in Eclipse that there is a <code>eclipse.ini</code> file in the same directory as the excutable that allows you to pass flags. Maybe looking into tha...
null
null
null
null
null
3105
1
3106
2010-08-25T16:08:05.080
11
710
<p>If you use skype with the default 10.04 theme you can't read any menu because the font and background colours are too similar.</p>
211
41
2010-08-25T17:56:55.907
2010-08-25T17:56:55.907
How can I read Skype's menus on a dark theme?
[ "10.04", "appearance", "skype" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-25T17:13:12.483", "id": "3051", "postId": "3105", "score": "2", "text": "I've always just squinted REALLY hard. I'd definitely like to find an answer for this", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>Click on the skype symbol on the bottom left. Click on <em>Options</em>, six entry if you are not able to see it at all.</p>\n\n<p>It will open a new window, on the right there is a combo box labeled \"Choose Style\", click on it and choose Desktop Setting. Restart Skype.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-25T16:10:47.513", "id": "3046", "postId": "3106", "score": "1", "text": "Just a nice trick that I have discovered right now by sheer chance. Let's share it here as I believe we are building a very useful Ubuntu knowledge base.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-08-25T16:13:03.847", "id": "3047", "postId": "3106", "score": "0", "text": "That's always encouraged!", "userDisplayName": null, "userId": "235" }, { "creationDate": "2010-08-25T16:27:50.863", "id": "3048", "postId": "3106", "score": "0", "text": "i had to overcome that one the hard way :)", "userDisplayName": null, "userId": "333" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T16:10:05.703", "id": "3106", "lastActivityDate": "2010-08-25T16:10:05.703", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "211", "parentId": "3105", "postTypeId": "2", "score": "13" }
[ { "accepted": true, "body": "<p>Click on the skype symbol on the bottom left. Click on <em>Options</em>, six entry if you are not able to see it at all.</p>\n\n<p>It will open a new window, on the right there is a combo box labeled \"Choose Style\", click on it and choose Desktop Setting. Restart Skype.</p>...
null
null
null
null
null
3108
1
null
2010-08-25T18:07:23.217
6
1021
<p>Can anyone point me towards monochrome Pidgin tray icons, and tell me how to install them?</p> <p>(I know I should be using the Messaging Menu indicator applet or whatever it's called, but at the moment I prefer not to, and use the standard Pidgin tray applet)</p>
866
866
2010-11-16T20:07:40.790
2010-11-24T19:55:16.720
Monochrome Pidgin tray icons
[ "appearance", "pidgin", "notification-area" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I think <a href=\"http://www.omgubuntu.co.uk/2010/08/omg-5-five-monochrome-app-icons/\" rel=\"nofollow\">this</a> post at \"OMG! Ubuntu\" would help you get what you are looking for. If not, I'd recommend you search <a href=\"http://www.omgubuntu.co.uk/\" rel=\"nofollow\">the...
null
null
null
null
null
3109
1
3110
2010-08-25T18:21:25.343
15
24356
<p>A couple of years ago when I first began using Ubuntu I had issues with Network Manager and so I switched to wicd which works perfectly. (I forget the exact issues, but wicd solved the problems)</p> <p>I am about to do a fresh install and curious as to whether I should continue with wicd? Or is Network Manager up to the job now?</p> <p>Thanks.</p> <p><strong><em>Addendum</em></strong> I ask because a friend recently switched his laptop over to Ubuntu and had wireless troubles until switching over to wicd. My situation is with a desktop using wireless.</p>
769
769
2010-08-25T19:39:07.230
2011-05-06T20:39:30.513
Network Manager or WICD?
[ "wireless", "network-manager" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you're having a problem with <a href=\"http://projects.gnome.org/NetworkManager/\">Network Manager</a> it's likely a problem with the driver. Since it's been a few years then you're probably better off with sticking with the default unless you have a problem.</p>\n\n<p>There are two ways to fix wireless problems in Linux. Fixing the driver or working around it. </p>\n\n<p>As Dan Williams (who is one of the main developer's for network-manager) has <a href=\"http://blogs.gnome.org/dcbw/category/drivers/\">chronicled in his blog</a>, sometimes it takes a long time; there are many moving parts, the kernel, the applet, and talking to the manufacturer of the hardware (if they even care) and then getting all that shipped to users. This takes longer than working around the issue, but in the end is a more sustainable model and gets everyone better drivers in the end. Network Manager and WICD don't exactly have the same feature set yet. WICD tends to deal well with wireless and basic ethernet connectivity, but doesn't yet support VPNs, DSL, 3G/CDMA and many other features which are becoming more and more popular. </p>\n\n<p>This isn't meant as a slight towards the WICD folks, it does help people get online and that's great, but fixing it all the way down the stack is a better overall for Linux. Bottom line is, you can choose whichever application you happen to prefer, but if NetworkManager works for you, sticking to the default is probably what will get you the best results in the long run, since you will be able to benefit from the other features if you end up needing them. Network Manager, as the default network tool in Ubuntu is also supported by the Ubuntu team.</p>\n\n<p>The linux wireless project <a href=\"http://linuxwireless.org/en/users/Drivers\">maintains a page</a> of wireless cards and chipsets and what features they support, and is a good guide to supporting manufacturers that maintain good drivers.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2010-08-25T21:49:52.967", "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T18:24:46.690", "id": "3110", "lastActivityDate": "2010-08-25T21:49:52.967", "lastEditDate": "2010-08-25T21:49:52.967", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "3109", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>If you're having a problem with <a href=\"http://projects.gnome.org/NetworkManager/\">Network Manager</a> it's likely a problem with the driver. Since it's been a few years then you're probably better off with sticking with the default unless you have a problem.</p>\n\n<p>The...
null
null
null
null
null
3113
1
3114
2010-08-25T19:22:01.680
6
1112
<p>I've just recently found an article that describes some default functionality in OpenOffice.org 3 that isn't present in my install on 10.04 - <a href="http://wiki.services.openoffice.org/wiki/Odt2Wiki#OpenOffice.org_2.4.2B" rel="nofollow">This entry</a> details that the Export functionality post 2.4 should have MediaWiki listed - but I only see XML,HTML, and PDF in the export options. Was this removed by the maintainers of this package in Ubuntu - or is there a package I haven't downloaded.</p> <p>How do I restore this functionality?</p>
41
395065
2015-04-05T08:57:51.600
2023-01-10T07:44:58.410
MediaWiki export in OpenOffice.org 3
[ "openoffice.org", "mediawiki" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Ensure that <code>openoffice.org-wiki-publisher</code> is installed:.</p>\n<h3><a href=\"https://packages.ubuntu.com/search?keywords=openoffice.org-wiki-publisher\" rel=\"nofollow noreferrer\">openoffice.org-wiki-publisher</a> <a href=\"http://apt.ubuntu.com/p/openoffice.org-wiki-publisher\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/1n8uO.png\" alt=\"Install openoffice.org-wiki-publisher\" /></a></h3>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-25T19:37:27.610", "id": "3054", "postId": "3114", "score": "0", "text": "Thanks! - I kept searching for `openoffice.org-mediawiki`", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-25T19:24:45.360", "id": "3114", "lastActivityDate": "2023-01-10T07:44:58.410", "lastEditDate": "2023-01-10T07:44:58.410", "lastEditorDisplayName": null, "lastEditorUserId": "1066942", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "3113", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Ensure that <code>openoffice.org-wiki-publisher</code> is installed:.</p>\n<h3><a href=\"https://packages.ubuntu.com/search?keywords=openoffice.org-wiki-publisher\" rel=\"nofollow noreferrer\">openoffice.org-wiki-publisher</a> <a href=\"http://apt.ubuntu.com/p/openoffice.org-...
null
null
null
null
null
3115
1
3120
2010-08-25T19:28:44.303
6
14363
<p>Every hour I get an email with error like this,</p> <pre><code>Subject: Cron &lt;root@supa&gt; root cd / &amp;&amp; run-parts --report /etc/cron.hourly /bin/sh: root: not found </code></pre> <p>Contents of /etc/crontab is as follows, either I remove user "root" or not (6th column), I get the same error.</p> <pre><code>SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # m h dom mon dow user command 11 * * * * root cd / &amp;&amp; run-parts --report /etc/cron.hourly 25 6 * * * test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.daily ) 47 6 * * 7 test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.weekly ) 52 6 1 * * test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.monthly ) # </code></pre> <p>There are two files in my cron.hourly directory,</p> <pre><code>$ ll /etc/cron.hourly/ total 0 lrwxrwxrwx 1 root root 25 2009-10-29 09:24 ntpsync -&gt; /home/&lt;user&gt;/bin/ntpsync lrwxrwxrwx 1 root root 28 2009-10-23 10:33 foo -&gt; /home/&lt;user&gt;/bin/foo </code></pre> <p>First script reads as follows,</p> <pre><code>$ cat ~/bin/ntpsync #!/usr/bin/env bash echo "user: $USER" if [[ "$USER" == "root" ]] ; then ntpdate ntp.ubuntu.com else sudo ntpdate ntp.ubuntu.com fi </code></pre> <p>Even I remove both scripts in my /etc/cron.hourly/ directory, I still get the same error email every hour. I tried to restart cron and I still get the same error email. The next idea I have is to reboot but I'd avoid that.</p> <pre><code>$ sudo /etc/init.d/cron restart </code></pre> <p>My Ubuntu version is as follows,</p> <pre><code>$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=8.04 DISTRIB_CODENAME=hardy DISTRIB_DESCRIPTION="Ubuntu 8.04.1" </code></pre> <p><strong>Update:</strong> I removed the 6th columns "root" from my /etc/crontab file earlier because when I searched online someone mentioned that could fix the problem. Now I think the problem was that I was messing around with the system crontab config instead of that of the root's.</p> <pre><code>$ sudo crontab -l # m h dom mon dow command 17 * * * * root cd / &amp;&amp; run-parts --report /etc/cron.hourly 25 6 * * * root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.daily ) 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.weekly ) 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.monthly ) </code></pre>
76
76
2010-08-25T23:55:57.030
2011-02-22T09:20:04.020
What's wrong with my cron.hourly configuration?
[ "cron-jobs", "crontab" ]
5
7
CC BY-SA 2.5
[ { "creationDate": "2010-08-25T19:41:58.037", "id": "3055", "postId": "3115", "score": "1", "text": "Does your user - or the root user - have anything in their personal cron files? `crontab -l`", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-25T21:46:28.090...
{ "accepted": true, "body": "<p>The default crontab file from the cron package (3.0pl1-100ubuntu2.1 this is the latest version of ubuntu 8.04) looks like this:</p>\n\n<pre><code>SHELL=/bin/sh\nPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin\n\n# m h dom mon dow user command\n17 * * * * root cd / &amp;&amp; run-parts --report /etc/cron.hourly\n25 6 * * * root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.daily )\n47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.weekly )\n52 6 1 * * root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.monthly )\n</code></pre>\n\n<p>You should just be able to take this and paste it into the file, but you might also want to make sure that you have the latest version of the package. You can do this by doing:</p>\n\n<pre><code>apt-get update\napt-get install cron\n</code></pre>\n\n<p><strong>Update:</strong></p>\n\n<p>There are two different types of crontab's one is the system's crontab that is located in <code>/etc/crontab</code>. This crontab has this fromat:</p>\n\n<pre><code>minute hour dayOfMonth month dayOfWeek userToRunAs restOfLineIsCommand\n</code></pre>\n\n<p>The other type is the users crontab's this can be modified by using the <code>crontab</code>. The actual configuration is located in <code>/var/spool/cron/crontabs/USERNAME</code> and is always executed as the user that owns it, and thous the format of that file is:</p>\n\n<pre><code>minute hour dayOfMonth month dayOfWeek restOfLineIsCommand\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-25T20:57:35.923", "id": "3120", "lastActivityDate": "2010-08-25T22:48:38.040", "lastEditDate": "2010-08-25T22:48:38.040", "lastEditorDisplayName": null, "lastEditorUserId": "455", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "3115", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>I know you said you still get the errors after you remove the \"root\" in the sixth column, but it really looks like the issue.</p>\n\n<p>For example, look at the other lines. They all start with \"test\". That's not a user, that's the beginning of a command. Removing the ...
null
null
null
null
null
3116
1
100511
2010-08-25T20:02:44.343
8
2697
<p>Is it possible to sync UbuntuOne contacts with Thunderbird's address book?</p>
88
null
null
2012-02-01T14:00:53.790
UbuntuOne contact synching for Thunderbird?
[ "ubuntu-one", "thunderbird", "contacts" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>As of 11.10 (a year and a half after you asked) the answer is a resounding \"yes.\" At this stage integration works well.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-02-02T18:21:12.407", "id": "116178", "postId": "100511", "score": "0", "text": "I'll have to check it out, but I don't know if it's necessary for me anymore. I have since started syncing my contacts through gmail with an extension, but it's nice to see Ubuntu making progress.", "userDisplayName": null, "userId": "88" }, { "creationDate": "2012-04-12T20:51:38.320", "id": "144566", "postId": "100511", "score": "0", "text": "It works? If you have any steps or instructions for doing it, please let us know. (I can't find any way to do it.)", "userDisplayName": null, "userId": "19610" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-02-01T13:55:15.250", "id": "100511", "lastActivityDate": "2012-02-01T14:00:53.790", "lastEditDate": "2012-02-01T14:00:53.790", "lastEditorDisplayName": null, "lastEditorUserId": "13049", "ownerDisplayName": null, "ownerUserId": "13049", "parentId": "3116", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>It is supported, but not quite as elegantly as Evolution syncing. Here's the step-by-step:</p>\n\n<p><a href=\"https://wiki.ubuntu.com/UbuntuOne/Tutorials/Contacts#Sync%20Thunderbird%20contacts\" rel=\"nofollow\">https://wiki.ubuntu.com/UbuntuOne/Tutorials/Contacts#Sync%20Th...
null
null
null
null
null
3126
1
4413
2010-08-25T23:49:22.740
16
10123
<p>I want to run apache on Ubuntu 10.04, and use the nice supervision stuff in upstart (I'm not just talking about the apache init script, but proper service supervision a la daemontools - which is to say, restarting apache when it dies, things like that).</p> <p>Does anyone have a running upstart config for supervising apache on ubuntu 10.04?</p> <p>The Googles have been no help to me, but it could be that my google-fu is weak.</p>
519
235
2010-11-16T06:07:20.437
2012-10-22T11:30:03.100
upstart-supervised init script for Apache?
[ "10.04", "server", "apache2", "upstart" ]
6
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T09:41:26.833", "id": "3110", "postId": "3126", "score": "2", "text": "I'd like to know about this too. I host a lot of things (mainly Django processes) and would like to dump my fragile init scripts for something a little more robust. Hadn't considered upstart but i...
{ "accepted": true, "body": "<p>Woooo!</p>\n\n<p>I've written my own version that is pretty much working - with some conf file hacking, and using <code>-D NO_DETACH</code>.</p>\n\n<p>First up, I had to set <code>User</code>, <code>Group</code> and <code>PidFile</code> in <code>/etc/apache2/apache2.conf</code> manually, rather than have them coming in from <code>/etc/apache2/envvars</code>. I couldn't work out a way to get those vars to be exported properly (I tried both <code>env</code> and <code>export</code> as per <a href=\"http://manpages.ubuntu.com/manpages/lucid/man5/init.5.html\">http://manpages.ubuntu.com/manpages/lucid/man5/init.5.html</a>, but no good).</p>\n\n<pre><code>root@lucid:/etc/apache2# diff -u apache2.conf.orig apache2.conf\n--- apache2.conf.orig 2010-09-20 13:46:33.857868534 +0930\n+++ apache2.conf 2010-09-20 13:47:22.377842204 +0930\n@@ -63,7 +63,7 @@\n # identification number when it starts.\n # This needs to be set in /etc/apache2/envvars\n #\n-PidFile ${APACHE_PID_FILE}\n+PidFile /var/run/apache2.pid\n\n #\n # Timeout: The number of seconds before receives and sends time out.\n@@ -142,8 +142,8 @@\n &lt;/IfModule&gt;\n\n # These need to be set in /etc/apache2/envvars\n-User ${APACHE_RUN_USER}\n-Group ${APACHE_RUN_GROUP}\n+User www-data\n+Group www-data\n\n #\n # AccessFileName: The name of the file to look for in each directory\n</code></pre>\n\n<p>Then, this is my working <code>/etc/init/apache2.conf</code>:</p>\n\n<pre><code># apache2 - http server\n#\n# Apache is a web server that responds to HTTP and HTTPS requests.\n# Required-Start: $local_fs $remote_fs $network $syslog\n# Required-Stop: $local_fs $remote_fs $network $syslog\n\ndescription \"apache2 http server\"\n\nstart on runlevel [2345]\nstop on runlevel [!2345]\n\npre-start script\n mkdir -p /var/run/apache2 || true\n install -d -o www-data /var/lock/apache2 || true\n # ssl_scache shouldn't be here if we're just starting up.\n # (this is bad if there are several apache2 instances running)\n rm -f /var/run/apache2/*ssl_scache* || true\nend script\n\n# Give up if restart occurs 10 times in 30 seconds.\nrespawn limit 10 30\n\nexec /usr/sbin/apache2 -D NO_DETACH\nrespawn\n</code></pre>\n\n<p>I can do <code>start|stop|status|reload apache2</code> and get meaningful results; if I <code>kill -9</code> the master apache process, it gets respawned pretty much immediately, and it starts and stops on boot as expected. So it's working reasonably well I reckon.</p>\n\n<hr>\n\n<p>There were things I tried that I could not get working.</p>\n\n<ul>\n<li>Tried to remove <code>-D NO_DETACH</code>, in conjunction with:</li>\n</ul>\n\n <pre>\nexpect fork\nexpect daemon\n</pre>\n\n<p>That failed to start the service.</p>\n\n<ul>\n<li>Tried to use a similar method to <code>/etc/apache2/envvars</code> to populate the <code>${APACHE_*}</code> variables:</li>\n</ul>\n\n <pre>\nexport APACHE_RUN_USER=www-data\nexport APACHE_RUN_GROUP=www-data\nexport APACHE_PID_FILE=/var/run/apache2.pid\n</pre>\n\n<p>That failed to start, and produced an error about <code>apache2: bad user name ${APACHE_RUN_USER}</code>.</p>\n\n<ul>\n<li><p>Tried console output and console default options; at this point I was really just flailing about trying to get meaningful error messages. Seemed to make no difference.</p>\n\n<p><code>console output</code></p></li>\n<li><p>This was useful for debugging apache messages:</p>\n\n<p><code>exec /usr/sbin/apache2 -X -e debug -E /var/log/apache2/foo.log</code></p></li>\n<li><p>This was another attempt to not modify <code>/etc/apache2/apache2.conf</code> that failed:</p>\n\n<p><code>exec APACHE_RUN_USER=www-data APACHE_RUN_GROUP=www-data APACHE_PID_FILE=/var/run/apache2.pid /usr/sbin/apache2 -D NO_DETACH -e debug -E /var/log/apache2/foo.log</code></p></li>\n</ul>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-11-16T20:14:54.570", "id": "14031", "postId": "4413", "score": "0", "text": "One thing to watch out for.. 'start on runlevel [2345]' may start before network interfaces are configured.. so eth0 may be \"up\" but it may not be ready for use. Likewise, you may not have any local filesystems. One standard thats been used instead is start on (local-filesystems and net-device-up IFACE!=lo).", "userDisplayName": null, "userId": "813" }, { "creationDate": "2010-12-01T00:24:09.633", "id": "16427", "postId": "4413", "score": "0", "text": "interesting! The machine in question hasn't been rebooted for a while, so I'd be interested to give that a test. Thanks for the tip.", "userDisplayName": null, "userId": "519" }, { "creationDate": "2011-02-05T15:27:50.100", "id": "27206", "postId": "4413", "score": "1", "text": "Hi, great question, even better answer :) You can get envvars working as\nfollows:\n\n script\n . /etc/apache2/envvars\n exec /usr/sbin/apache2 -D NO_DETACH\n end script", "userDisplayName": null, "userId": "10276" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-20T04:45:14.913", "id": "4413", "lastActivityDate": "2010-09-20T23:12:08.397", "lastEditDate": "2010-09-20T23:12:08.397", "lastEditorDisplayName": null, "lastEditorUserId": "519", "ownerDisplayName": null, "ownerUserId": "519", "parentId": "3126", "postTypeId": "2", "score": "10" }
[ { "accepted": null, "body": "<p>Couple of posts from Scott James Remnant on the topic that I hope can help you:</p>\n\n<ul>\n<li><a href=\"http://www.netsplit.com/2007/12/06/supervising-forking-processes/\" rel=\"nofollow\">Supervising Forking Processes</a> (some code)</li>\n<li><a href=\"http://www.netspli...
null
null
null
null
null
3127
1
3128
2010-08-26T00:31:44.560
1
5007
<p>I have customers who upload large amounts of data to my FTP server (an Ubuntu 9.10 machine). Once the files are uploaded, I am faced with transferring them to a local Droboshare network drive so our technical support staff can retrieve them and analyze the issue.</p> <p>After I mount the network share at <code>/media/&lt;sharename&gt;</code> I run this command manually to get these files:</p> <p><code>sudo mv /home/ftp/&lt;data_dir&gt;/&lt;file_name&gt; /media/&lt;network_share&gt;/&lt;ftp_user_data&gt;</code></p> <p>but this takes forever and if there are tens or hundreds of files, I can't realistically do this over and over again. I thought it would be nice to have a script that I could run periodaclly to transfer a group of these files to the network share. I can sort them as the technical support staff uses them.</p> <p>I am still new to Linux and writing shell scripts. Anyway to do this easily? Just to add to the description here, the files could be <strong>ZIP files</strong>, <strong>FASTA files</strong>, <strong>TAR.GZ files</strong>, and/or <strong>TXT files</strong>. Also, if the ZIP files are large, certain zipping programs convert these to <strong>ZIP.001</strong>, <strong>ZIP.002</strong>, <strong>ZIP.003</strong>, etc... So the file type in this FTP directory could be quite varied.</p> <p>I was thinking the way I can identify these files is by simply transferring ALL files in the directory (although this may take a while) or to somewhat designate a subset of these, according to time completed or something like this.</p> <p>I'm open to ideas. Thanks in advance.</p>
364
null
null
2010-08-26T05:24:25.250
How to Write a Shell Script to Move Files from FTP Server to Network Share Drive
[ "networking", "command-line", "scripts", "ftp" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T03:04:31.500", "id": "3090", "postId": "3127", "score": "0", "text": "why are you using sudo?", "userDisplayName": null, "userId": "646" }, { "creationDate": "2010-08-26T07:23:23.713", "id": "3098", "postId": "3127", "score": "0", "te...
{ "accepted": true, "body": "<p>Why not just make the FTP folder the actual mount point for the network drive? I run into a similar issue where I'm constantly backing up VirtualMachines on a Linux machine to a Windows network share (since the majority of the company infrastructure is Windows). This is my structure:</p>\n\n<p><code>/media/windows-share</code> is my mount point</p>\n\n<p>For continuity I've created a symlink in my backup application:</p>\n\n<p><code>/opt/backup/mnt</code> so if the mount point changes in the future my program doesn't need an update.</p>\n\n<p>Lastly I employ a cool little tool called <a href=\"https://help.ubuntu.com/community/Autofs\" rel=\"nofollow\"><code>autofs</code></a> (<code>sudo apt-get install autofs</code>) That guide is decent (and up to date) - though I've employed this with a slightly different approach on my <a href=\"http://marcoceppi.com/blog/2010/05/automount-me-baby/\" rel=\"nofollow\">blog</a>.</p>\n\n<p>In your case I would create a symlink where my FTP dropbox is (<code>/home/ftp/&lt;data_dir&gt;/</code>) to the appropriate network folder in <code>/media/&lt;network_share&gt;/&lt;ftp_user_data&gt;</code> that way there's no wasted time in transferring across disks and the files are available immediately.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-08-26T01:57:04.397", "id": "3088", "postId": "3128", "score": "1", "text": "+1 for removing a step rather than fixing a step :) Simplifying, always good, is.", "userDisplayName": null, "userId": "519" }, { "creationDate": "2010-08-26T16:44:34.953", "id": "3135", "postId": "3128", "score": "0", "text": "This is a great answer... Almost done making it work. One thing. In your blog, you used `-fstype=cifs` and this worked for me too. But when I manually mount these shares, I use `smbfs` yet when I tried to add this method to the auto.nfs file it didn't work. Any idea why?", "userDisplayName": null, "userId": "364" }, { "creationDate": "2010-08-26T16:56:47.727", "id": "3140", "postId": "3128", "score": "0", "text": "@nicorellius `smbfs` and `cifs` are basically the same thing. `smbfs` is being depreciated to `cifs` https://help.ubuntu.com/community/SettingUpSamba", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-26T17:02:40.737", "id": "3141", "postId": "3128", "score": "0", "text": "I thought I had it working... But now I can't seem to create that symlink. Getting error: \"hard link not allowed for directory.\" Could you provide some more details exactly how this is setup?", "userDisplayName": null, "userId": "364" }, { "creationDate": "2010-08-26T17:17:50.377", "id": "3143", "postId": "3128", "score": "0", "text": "@Marco Ceppi: I also was able to mount the network share to the local linux directory `/home/ftp/<data_dir>` but when I tried to transfer a file to it using FTP, my FTP client threw an error and the operation failed. I may be confused on how to set these permissions. Do I set them on `/home/ftp/<data_dir>` or on `//server/<network_share>/ftp_user_data`?", "userDisplayName": null, "userId": "364" }, { "creationDate": "2010-08-27T14:14:12.737", "id": "3198", "postId": "3128", "score": "0", "text": "@nicorellius You don't want to make the mount the FTP destination. You want to soft link the mount point (something in `/mnt` or `/media` as I used in my example) Then `ln -s /media/mntpoint/other_dir_on_mnt /home/ftp/somethignhere` I found that autofs had troubles detecting when to mount when a script or other process was trying to access the mount directly.", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-26T01:01:18.303", "id": "3128", "lastActivityDate": "2010-08-26T01:01:18.303", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "41", "parentId": "3127", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Why not just make the FTP folder the actual mount point for the network drive? I run into a similar issue where I'm constantly backing up VirtualMachines on a Linux machine to a Windows network share (since the majority of the company infrastructure is Windows). This is my st...
null
null
null
null
null
3130
1
3133
2010-08-26T01:27:28.467
2
247
<p>Has anyone seen problems with <code>git-svn</code> not installing properly from synaptic in 10.04? Anyone know how to fix this?</p>
128
41
2010-08-26T01:30:56.433
2010-08-26T01:45:41.347
Is git-svn in the 10.04 repos broken?
[ "10.04", "package-management", "development" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T01:30:34.593", "id": "3085", "postId": "3130", "score": "1", "text": "Could you be more specific - I use `Git` on 10.04 without issue. Any error messages, details, etc would be more helpful.", "userDisplayName": null, "userId": "41" }, { "creationDat...
{ "accepted": true, "body": "<p>Oops, it's the <code>git-xxxx</code> format for git commands has been depreciated. <code>git svn</code> seems to work.\n<a href=\"https://bugs.launchpad.net/ubuntu/+source/git-core/+bug/598593\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/git-core/+bug/598593</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-26T01:45:41.347", "id": "3133", "lastActivityDate": "2010-08-26T01:45:41.347", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "128", "parentId": "3130", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Oops, it's the <code>git-xxxx</code> format for git commands has been depreciated. <code>git svn</code> seems to work.\n<a href=\"https://bugs.launchpad.net/ubuntu/+source/git-core/+bug/598593\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/git-core/+bug/598593</...
null
null
null
null
null
3132
1
3172
2010-08-26T01:43:42.087
6
1459
<p>I have an old receiver (USB) and remove control that i am trying to get working on Ubuntu with Boxee. </p> <p>Any suggestions for setting this up? software I need. </p>
333
235
2011-01-24T18:12:06.447
2017-02-12T21:22:23.800
How do I set up an HP remote control?
[ "hardware", "remote", "boxee" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T02:02:28.927", "id": "3089", "postId": "3132", "score": "0", "text": "What kind of remote is it? Do you have specific model information?", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>Install <code>gnome-lirc-properties</code> \"Infrared Remote Control\" from Ubuntu Software Center or</p>\n\n<p><code>sudo apt-get install gnome-lirc-properties</code></p>\n\n<p>It will set up the configuration for your remote in lirc and allow you to test the remote.</p>\n\n<p>After setting that up you need to set up your remote with boxee file. Next Boxee needs a config file for the remote. Copy <code>/opt/boxee/system/Lircmap.xml</code> to <code>$HOME/.boxee/Lircmap.xml</code>. </p>\n\n<p>Now open the Lircmap.xml copy that is in the UserData folder, and add the code from <a href=\"http://ubuntuforums.org/showpost.php?p=6441867&amp;postcount=2\" rel=\"nofollow noreferrer\">this</a> forum post just before the ending tag:</p>\n\n<pre><code>&lt;remote device=\"Streamzap_PC_Remote\"&gt;\n &lt;pause&gt;PAUSE&lt;/pause&gt;\n &lt;stop&gt;STOP&lt;/stop&gt;\n &lt;forward&gt;&amp;gt;&amp;gt;&lt;/forward&gt;\n &lt;reverse&gt;&amp;lt;&amp;lt;&lt;/reverse&gt;\n &lt;left&gt;LEFT&lt;/left&gt;\n &lt;right&gt;RIGHT&lt;/right&gt;\n &lt;up&gt;UP&lt;/up&gt;\n &lt;down&gt;DOWN&lt;/down&gt;\n &lt;select&gt;OK&lt;/select&gt;\n &lt;pageplus&gt;CH_UP&lt;/pageplus&gt;\n &lt;pageminus&gt;CH_DOWN&lt;/pageminus&gt;\n &lt;back&gt;EXIT&lt;/back&gt;\n &lt;menu&gt;MENU&lt;/menu&gt;\n &lt;title&gt;PLAY&lt;/title&gt;\n &lt;info&gt;More&lt;/info&gt;\n &lt;skipplus&gt;&amp;gt;&amp;gt;|&lt;/skipplus&gt;\n &lt;skipminus&gt;|&amp;lt;&amp;lt;&lt;/skipminus&gt;\n &lt;display&gt;Teletext&lt;/display&gt;\n &lt;start&gt;Home&lt;/start&gt;\n &lt;record&gt;RECORD&lt;/record&gt;\n &lt;volumeplus&gt;VOL_UP&lt;/volumeplus&gt;\n &lt;volumeminus&gt;VOL_DOWN&lt;/volumeminus&gt;\n &lt;mute&gt;MUTE&lt;/mute&gt;\n &lt;power&gt;POWER&lt;/power&gt;\n &lt;myvideo&gt;Videos&lt;/myvideo&gt;\n &lt;mymusic&gt;Music&lt;/mymusic&gt;\n &lt;mypictures&gt;Pictures&lt;/mypictures&gt;\n &lt;mytv&gt;TV&lt;/mytv&gt;\n &lt;one&gt;1&lt;/one&gt;\n &lt;two&gt;2&lt;/two&gt;\n &lt;three&gt;3&lt;/three&gt;\n &lt;four&gt;4&lt;/four&gt;\n &lt;five&gt;5&lt;/five&gt;\n &lt;six&gt;6&lt;/six&gt;\n &lt;seven&gt;7&lt;/seven&gt;\n &lt;eight&gt;8&lt;/eight&gt;\n &lt;nine&gt;9&lt;/nine&gt;\n &lt;zero&gt;0&lt;/zero&gt;\n &lt;mytv&gt;RED&lt;/mytv&gt;\n &lt;mymusic&gt;GREEN&lt;/mymusic&gt;\n &lt;mypictures&gt;YELLOW&lt;/mypictures&gt;\n &lt;myvideo&gt;BLUE&lt;/myvideo&gt;\n&lt;/remote&gt;\n</code></pre>\n\n<p>Edit the keys for your particular remote.</p>\n\n<p>Save the file and open Boxee, and the remote should now work.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-27T06:01:40.620", "id": "3172", "lastActivityDate": "2017-02-12T21:22:23.800", "lastEditDate": "2017-02-12T21:22:23.800", "lastEditorDisplayName": null, "lastEditorUserId": "75060", "ownerDisplayName": null, "ownerUserId": "289", "parentId": "3132", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Install <code>gnome-lirc-properties</code> \"Infrared Remote Control\" from Ubuntu Software Center or</p>\n\n<p><code>sudo apt-get install gnome-lirc-properties</code></p>\n\n<p>It will set up the configuration for your remote in lirc and allow you to test the remote.</p>\n\n...
null
null
null
null
null
3135
1
3141
2010-08-26T07:06:53.470
8
7868
<p>I've been messing around with various ways to do this in bash, and I've found <code>pgrep program &gt; /dev/null || program</code> to be the shortest/most elegant way of doing this. Is there a better method than this?</p>
646
null
null
2013-12-27T09:28:09.770
Most elegant way to check if a process is running, and start if not?
[ "bash" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>With <code>pgrep</code>, you might match other programs than just yours. If you want to be sure to match the right program, use <code>pidof</code> instead.</p>\n\n<p>You could also use <code>start-stop-daemon</code> with a PID file. <code>start-stop-daemon</code> will check if the program is running and start it if required. This is what is used in most init scripts.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-26T08:26:37.880", "id": "3102", "postId": "3141", "score": "0", "text": "Going through the man file of start-stop-daemon and it looks nice. Thanks for the insight!", "userDisplayName": null, "userId": "646" }, { "creationDate": "2010-08-26T08:41:34.650", "id": "3104", "postId": "3141", "score": "1", "text": "You might also be interested in the `/lib/lsb/init-functions` library, which most init scripts parse to use wrapper functions such as `start_daemon` or `pidofproc`.", "userDisplayName": null, "userId": "1667" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-26T08:09:49.003", "id": "3141", "lastActivityDate": "2010-08-26T08:09:49.003", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1667", "parentId": "3135", "postTypeId": "2", "score": "9" }
[ { "accepted": true, "body": "<p>With <code>pgrep</code>, you might match other programs than just yours. If you want to be sure to match the right program, use <code>pidof</code> instead.</p>\n\n<p>You could also use <code>start-stop-daemon</code> with a PID file. <code>start-stop-daemon</code> will check i...
null
null
null
null
null
3136
1
3142
2010-08-26T07:26:37.907
5
8384
<p>I am searching for a tool, that extracts meta data out of raw images produced by a digital SLR (in my case Canon EOS 550D).</p> <p>The photos can be converted by a recent version of ufraw (<a href="https://launchpad.net/~pmjdebruijn/+archive/ppa" rel="noreferrer">here</a> is the PPA for that).</p> <p>With my compact camera I simply use exif, which only works on jpg and does not work with raw images.</p> <p>Any hints?</p>
116
null
null
2019-12-26T11:27:20.387
Extracting meta data from raw images (DSLR camera)
[ "command-line", "photography", "photo-management" ]
5
6
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T08:09:51.890", "id": "3100", "postId": "3136", "score": "0", "text": "Are you looking for a commandline tool, or a GUI tool?", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-26T08:43:11.073", "id": "3106", "postId": "3...
{ "accepted": true, "body": "<p>From the description of the package <code>exifprobe</code>:</p>\n<blockquote>\n<p>Exifprobe reads image files produced\nby digital cameras (including several\nso-called &quot;raw&quot; file formats) and\nreports the structure of the files and\nthe auxiliary data and metadata\ncontained within them. In addition to\nTIFF, JPEG, and EXIF, the program\nunderstands several formats which may\ncontain &quot;raw&quot; camera data, including\nMRW, CIFF/CRW, JP2/JPEG2000, RAF, and\nX3F, as well as most most TIFF-derived\n&quot;raw&quot; formats, including DNG, ORF,\nCR2, NEF, K25/KDC/DCR, and PEF.</p>\n<p><a href=\"http://www.virtual-cafe.com/%7Edhh/tools.d/exifprobe.d/exifprobe.html\" rel=\"noreferrer\">http://www.virtual-cafe.com/~dhh/tools.d/exifprobe.d/exifprobe.html</a></p>\n</blockquote>\n<p>Does that work?</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-26T08:40:56.663", "id": "3103", "postId": "3142", "score": "0", "text": "I will give it a try. Since my camera model does not seem to be support, I will have to check it at home. Thanks!", "userDisplayName": null, "userId": "116" }, { "creationDate": "2018-02-12T23:13:59.810", "id": "1627425", "postId": "3142", "score": "0", "text": "The virtual-cafe link is dead, but I found a fork on github that is working on macOS, assume it works on ubuntu: https://github.com/hfiguiere/exifprobe", "userDisplayName": null, "userId": "590022" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-26T08:12:38.537", "id": "3142", "lastActivityDate": "2010-08-26T08:12:38.537", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3136", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>From the description of the package <code>exifprobe</code>:</p>\n<blockquote>\n<p>Exifprobe reads image files produced\nby digital cameras (including several\nso-called &quot;raw&quot; file formats) and\nreports the structure of the files and\nthe auxiliary data and metadata\...
null
null
null
null
null
3137
1
3140
2010-08-26T07:28:20.250
4
4552
<p>Complete story:</p> <p>When I installed Simon Tatham's Portable Puzzle Collection via Ubuntu software center, I noticed some of the newest puzzles were missing. So I decided to get the source files and compile them myself. I uninstalled the collection and downloaded the appropriate tar.gz file from the creator's <a href="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" rel="nofollow">website</a>.</p> <p>When I tried <code>make</code>, I got many error messages and I found out I was missing some libraries. I went on installing lib-gtk-2.0 (I think) and my first compilation ever on linux was a success.</p> <p>I didn't have any decent shortcuts on the appropriate subfolder on the gnome menu (I'm using UNE), so I used <code>alacarte</code> to attach the correct images to the shortcuts.</p> <p>The first thing I noticed was that the other user accounts didn't have the shortcuts as well. Also, all games suffered from the same problem. Whenever the user opened the system menu in any game, that menu remained drawn forever on the window.</p> <p>I didn't like that at all, so I decided to only keep the puzzles that were missing form the original collection and reinstall the rest from Ubuntu software center. I though I would at least have most of the games behaving correctly. Therefore, I used <code>alacarte</code> again to delete the "common" shortcuts. After the installation though, I wasn't getting any of the shortcuts on the gnome menu (other user accounts had them correctly), so I decided to delete alacarte's configuration files found inside <code>~/.config/?</code> (I'm not in front of an Ubuntu-running computer at the moment, so I can't tell for sure).</p> <p>Now my user account profile is broken. When I log on, the top (and only) bar is not loading at all. I don't want to mess up the profile further so I decided to stop here and ask for help. How to restore the top gnome bar missing and have my shortcuts working correctly from now on? Deleting and recreating the user account is not an option.</p> <p>Sorry for the long story (I believe it was necessary to explain the steps I took in order to help others help me). Kudos to the guy who can also tell me why the system menus didn't work correctly when I compiled the games myself.</p> <p><strong>Update</strong>:</p> <p>I'm also missing the windows title bars and borders around. Also the z-order of the windows cannot be changed (Gnome is not bringing the active window in front). Finally, under "Files &amp; Folders" no shortcuts are not working (I'm getting the message "No application is registered as handling this file").</p>
760
67335
2014-08-05T05:23:03.067
2014-08-05T05:23:03.067
User account messed up. How to restore functionality?
[ "gnome", "menu", "ubuntu-netbook", "user-management", "user-profile" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T15:47:53.230", "id": "3132", "postId": "3137", "score": "1", "text": "No need to apologize, the detail is great.", "userDisplayName": null, "userId": "453" } ]
{ "accepted": true, "body": "<p>When you \"remove\" a menu entry with <code>alacarte</code>, what it really does is create a user-local file that describes the application according to the <a href=\"http://www.freedesktop.org/wiki/Specifications/desktop-entry-spec\" rel=\"nofollow\">FreeDesktop.org \"Desktop Entry Specification\"</a>, and indicates that it should be hidden from the menu. Local \"desktop entry\" files override system-wide ones. These local files are located in <code>~/.local/share/applications/</code>. Remove the local *.desktop file, and the system-wide one (as installed by the package) will take over again.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-26T16:46:12.093", "id": "3136", "postId": "3140", "score": "0", "text": "That did the trick. Everything is back to normal. Thank you.", "userDisplayName": null, "userId": "760" }, { "creationDate": "2010-08-26T20:57:23.867", "id": "3151", "postId": "3140", "score": "0", "text": "So `~/.local/share/applications/` stores the desktop entries and `~/.config/menus/` stores the menu structure, correct?", "userDisplayName": null, "userId": "646" }, { "creationDate": "2010-08-26T21:45:14.883", "id": "3157", "postId": "3140", "score": "0", "text": "@aperson: `~/config/menus/` stores some stuff that GNOME uses to create the menus from the \\*.desktop files, but I would have to look up the details myself.", "userDisplayName": null, "userId": "935" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-26T08:04:43.653", "id": "3140", "lastActivityDate": "2010-08-26T08:04:43.653", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3137", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>I assume (perhaps incorrectly) that the UNE uses the same config as normal gnome. To reset your menus to a system-wide standard, run this:</p>\n\n<pre><code>mv ~/.config/menus ~/.config/backupmenus\n</code></pre>\n\n<p>If you can't log in graphically (to the point where you c...
null
null
null
null
null
3146
1
5926
2010-08-26T09:28:15.970
1
409
<p>Because my ubuntu partion was to small, I have enlarged it with the Ubuntu LiveCD + GParted.</p> <p>All went fairly well (it said there were 2 warnings, but nothing severly), but afterwards, after I have logged in, the touchpad stops working.</p> <p>Strange thing is, in the login screen, it still works perfectly, and an external USB mouse also works.</p> <p>I have a HP DV6 2030sd laptop with Ubuntu 10.04 installed.</p> <p>Does anyone know what steps I can take to solve this problem?</p>
1733
1733
2010-08-27T09:11:17.063
2010-10-11T08:51:31.387
Touchpad mouse stopped working after partition changes
[ "10.04", "hardware", "mouse" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-26T14:31:31.123", "id": "3127", "postId": "3146", "score": "3", "text": "Can you try to login as an other user? (if you press ctrl+alt+f1 you will get to a console login prompt, there you can create a user with the command `sudo adduser NewUserName`) This will eliminat...
{ "accepted": true, "body": "<p>I've got it working after switching the hardware enable/disable touchpad button.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T08:51:31.387", "id": "5926", "lastActivityDate": "2010-10-11T08:51:31.387", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1733", "parentId": "3146", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>I've got it working after switching the hardware enable/disable touchpad button.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-11T08:51:31.387", "id": "5926", "la...
null
null
null
null
null
3155
1
3164
2010-08-26T14:44:18.387
1
2578
<p>I am using <code>syslog-ng</code> on a Ubuntu Lucid machine with the following <code>upstart</code> script:</p> <pre><code># syslog-ng - system logging daemon # description "Syslog-ng daemon" start on (local-filesystems and net-device-up IFACE!=lo) stop on runlevel [!2345] expect fork respawn pre-start script test -x /usr/sbin/syslog-ng || { stop; exit 0; } mkdir -p -m0755 /var/run/syslog-ng end script exec /usr/sbin/syslog-ng -p /var/run/syslog-ng/syslog-ng.pid </code></pre> <p>When the <code>syslog-ng</code> configuration file is wrong, <code>syslog-ng</code> outputs an error message on stderr. Unfortunately, this error is caught by upstart and doesn't get to the console when starting the service, so there is no way to know why the service start failed.</p> <p>Is it normal that upstart would catch stderr? Can it be set?</p>
1667
4
2010-08-26T17:30:33.450
2011-11-02T18:19:12.920
upstart, exec and stderr
[ "upstart", "error-handling" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is documented in <a href=\"http://manpages.ubuntu.com/manpages/lucid/en/man5/init.5.html\" rel=\"nofollow\"><code>init(5)</code></a>; you can add the following line to your <code>/etc/init/syslog-ng.conf</code> to see output:</p>\n\n<pre><code>console output\n</code></pre>\n\n<hr>\n\n<p>Alternatively, you can see output from all upstart scripts when you add the following to the kernel boot parameters:</p>\n\n<pre><code>INIT_VERBOSE=yes\n</code></pre>\n\n<p>You can do that temporarily by editing the parameters in the grub menu during boot, or (more) permanently by editing <code>/etc/default/grub</code> and adding it to <code>GRUB_CMDLINE_LINUX</code>, then afterwards run <code>update-grub</code>.</p>\n\n<p>For more information and best practices, see <a href=\"http://upstart.ubuntu.com/cookbook/\" rel=\"nofollow\" title=\"The Upstart Cookbook\">The Upstart Cookbook</a>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-26T21:38:15.307", "id": "3156", "postId": "3164", "score": "0", "text": "Silly me, I was reading `man 1 init` and not even considering `man 5 init`. I'll try that tomorrow, it seems like the right answer :-)", "userDisplayName": null, "userId": "1667" }, { "creationDate": "2011-04-12T18:40:25.783", "id": "38804", "postId": "3164", "score": "0", "text": "I understand adding \"console output\" sends the console output to /dev/console, but where can I read that from? Is it logged in some file?", "userDisplayName": null, "userId": "14129" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-26T21:35:47.253", "id": "3164", "lastActivityDate": "2011-11-02T18:19:12.920", "lastEditDate": "2011-11-02T18:19:12.920", "lastEditorDisplayName": null, "lastEditorUserId": "731", "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3155", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>If the stdout is getting through what you can do is. which will pipe the stderr to stdout which should solve your problem. :)</p>\n\n<pre><code>syslog-ng 2&gt;&amp;1\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-26T18:3...
null
null
null
null
null
3159
1
null
2010-08-26T16:28:03.567
9
47963
<p>Hello this is the response I get from ifconfig. Now I have two eth0 things being showed up. I need to delete the second one which says eth0:avahi. I posted my ifconfig's response on a site as I has problem using wired internet, and they suggested to remove the eth0 avahi, to get internet.</p> <p>But I am a newbie to linux networking and have no idea how to delete this.</p> <p>response for ifconfig</p> <pre><code>eth0 Link encap:Ethernet HWaddr 18:a9:05:22:cd:f9 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) Interrupt:28 Base address:0x4000 eth0:avahi Link encap:Ethernet HWaddr 18:a9:05:22:cd:f9 inet addr:169.254.10.43 Bcast:169.254.255.255 Mask:255.255.0.0 UP BROADCAST MULTICAST MTU:1500 Metric:1 Interrupt:28 Base address:0x4000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:796 errors:0 dropped:0 overruns:0 frame:0 TX packets:796 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:64016 (64.0 KB) TX bytes:64016 (64.0 KB) wlan0 Link encap:Ethernet HWaddr 00:26:82:3c:ac:27 inet6 addr: fe80::226:82ff:fe3c:ac27/64 Scope:Link UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:52142 errors:0 dropped:0 overruns:0 frame:0 TX packets:30404 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:60816983 (60.8 MB) TX bytes:4160159 (4.1 MB) </code></pre>
1739
132
2010-12-31T22:01:26.027
2022-03-05T12:42:02.980
Delete eth0 avahi from the ifconfig list
[ "10.04", "networking", "avahi" ]
5
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Check if <code>avahi</code> is listed in your <code>/etc/network/interfaces</code> file. If it is, delete it from there.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-26T17:10:42.860", "id": "3142", "postId": "3160...
null
null
null
null
null
3165
1
3193
2010-08-26T21:52:02.967
21
31166
<p>I'd like to do something like</p> <pre><code>$ play filename.mid </code></pre> <p>and hear the midi file played without opening up a graphical program. Is there a package for Ubuntu that can do this?</p>
1196
705
2010-12-11T19:56:17.917
2021-04-17T17:33:30.440
How do I play a midi from the command line in Ubuntu?
[ "command-line", "sound", "music", "midi" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There are many different packages/commands you can try:</p>\n\n<ol>\n<li><code>wildmidi</code> (as used by gstreamer)</li>\n<li><code>timidity</code> (found this very CPU intensive)</li>\n<li><code>playmidi</code> (never tried personally)</li>\n</ol>\n", "commentCount": "2", "comments": [ { "creationDate": "2018-08-30T19:38:59.437", "id": "1756085", "postId": "3193", "score": "0", "text": "Do any of these work with sfz soundfont files? Or only with sf2?", "userDisplayName": null, "userId": "704739" }, { "creationDate": "2018-11-19T02:13:05.197", "id": "1801513", "postId": "3193", "score": "0", "text": "wildmidi worked for me, Ubuntu 18.04", "userDisplayName": null, "userId": "489572" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-27T18:41:18.483", "id": "3193", "lastActivityDate": "2010-08-27T18:41:18.483", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "3165", "postTypeId": "2", "score": "25" }
[ { "accepted": null, "body": "<p>You'll likely want the <a href=\"http://manpages.ubuntu.com/manpages/gutsy/man1/playmidi.1.html\"><code>playmidi</code></a> package (<code>sudo apt-get install playmidi</code>) which will allow you to play midi files from the command line.</p>\n\n<p><code>playmidi filename.mi...
null
null
null
null
null
3167
1
3169
2010-08-26T23:01:03.623
223
266209
<p><code>apt-get</code> has a few options which looks the same to me: <code>autoclean</code>, <code>autoremove</code> and <code>clean</code>. What do each of them do?</p>
144
169736
2015-03-04T18:11:33.050
2023-12-28T15:12:28.200
What is difference between the options "autoclean", "autoremove" and "clean"?
[ "apt" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>From the <code>apt-get</code> man page:</p>\n<ul>\n<li><p><b>clean</b>: clean clears out the local repository of retrieved package files.\nIt removes everything but the lock file from\n/var/cache/apt/archives/ and /var/cache/apt/archives/partial/. When\nAPT is used as a dselect(1) method, clean is run automatically.\nThose who do not use dselect will likely want to run apt-get clean\nfrom time to time to free up disk space.</p>\n</li>\n<li><p><b>autoclean</b>: Like clean, autoclean clears out the local repository of retrieved\npackage files. The difference is that it only removes package files\nthat can no longer be downloaded, and are largely useless. This\nallows a cache to be maintained over a long period without it\ngrowing out of control. The configuration option\nAPT::Clean-Installed will prevent installed packages from being\nerased if it is set to off.</p>\n</li>\n<li><p><b>autoremove</b>: is used to remove packages that were automatically\ninstalled to satisfy dependencies for some package and that are no\nlonger needed.</p>\n</li>\n</ul>\n<br>\nEvery command has a manual page, if you want to know what their parameters are or what each of them do, just type in the shell `man ` Ex. `man apt-get`\n<ul>\n<li><a href=\"http://manpages.ubuntu.com/apt-get\" rel=\"noreferrer\">manpage for the <code>apt-get</code> command <img src=\"https://i.stack.imgur.com/Eq5sS.png\" alt=\"Manpage icon\" /></a></li>\n</ul>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-08-27T09:28:07.147", "id": "3185", "postId": "3169", "score": "0", "text": "I know in at least aptitude's case, it will autoremove packages automatically. Not that I want to further the which is better to use argument.", "userDisplayName": null, "userId": "646" }, { "creationDate": "2010-08-27T10:30:02.730", "id": "3187", "postId": "3169", "score": "19", "text": "Every command has a manual page and yet I find myself searching the Internet to find out what I need to do - most of the time it is quicker. I am sure you have seen the huge list of command line options that those man pages have - great for usability but sucks for understanding.", "userDisplayName": null, "userId": "144" }, { "creationDate": "2010-08-27T15:01:50.193", "id": "3202", "postId": "3169", "score": "8", "text": "yeah, I always go to the man pages first, but sometimes I find myself googling for some more usable examples.", "userDisplayName": null, "userId": "431" }, { "creationDate": "2010-08-27T15:03:29.977", "id": "3203", "postId": "3169", "score": "0", "text": "@aperson thats one advantage of aptitude, but AFAIK apt seems to be getting more attention, maybe they will add that feature sometime.", "userDisplayName": null, "userId": "431" }, { "creationDate": "2023-08-10T08:21:30.000", "id": "2594772", "postId": "3169", "score": "0", "text": "@Antony If `--help` isn't enough I usually use `grep` in both cases, it also has a fun option \"--context\", why `man apt` doesn't include the cleans? I don't know... - it is within the `man apt-get` only, however, try using something like `man apt-get | grep autoclean --context=5` - can be very helpful :-) Otherwise I 100% agree.", "userDisplayName": null, "userId": "277898" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-26T23:31:09.783", "id": "3169", "lastActivityDate": "2020-09-24T22:07:21.660", "lastEditDate": "2020-09-24T22:07:21.660", "lastEditorDisplayName": null, "lastEditorUserId": "144", "ownerDisplayName": null, "ownerUserId": "431", "parentId": "3167", "postTypeId": "2", "score": "261" }
[ { "accepted": null, "body": "<p>autoclean: removes all stored archives in your cache for packages that can not be downloaded anymore (thus packages that are no longer in the repo or that have a newer version in the repo).</p>\n\n<p>clean: removes all stored archives in your cache.</p>\n\n<p>autoremove: a wh...
null
null
null
null
null
3170
1
null
2010-08-27T00:16:47.280
3
1982
<p>Example of a failure:</p> <pre><code>***** Processing account GMail Copying folder structure from Gmail to MappedIMAP Establishing connection to imap.gmail.com:993. WARNING: Error occured attempting to sync account GMail: [Errno 8] _ssl.c:490: E OF occurred in violation of protocol </code></pre>
72
72
2010-08-27T18:04:30.000
2010-08-27T18:29:34.697
How to fix SSL error from Python apps (urllib) when behind HTTPS proxy?
[ "ssl" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-11-27T23:35:38.103", "id": "94316", "postId": "3170", "score": "0", "text": "This question appears to be abandoned and unanswered, could you perhaps add more detail to your question? If this question no longer applies then you can either delete it or answer it yourself if...
null
[ { "accepted": null, "body": "<p>It looks like there is a bug in the way either Gmail or whatever offlineimap uses (OpenSSL I assume?) implements SSL?</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-27T18:04:54.867", "id": "3207", "postId": "3175", ...
null
null
2013-03-14T17:06:04.460
null
null
3176
1
3194
2010-08-27T10:19:41.637
1
326
<p>I would like to install <a href="https://stackapps.com/questions/83/stackapplet-stackoverflow-meets-the-gnome-desktop-v1-2-released">stackapplet</a>, but I don't have superuser privileges to install the deb file and the admins will not install it for me.</p> <p>I'm confident that I must be able to install this applet without privileges, but I can't seem to find a really good guide.</p> <p>What are the steps I need to take to install this applet?</p>
1418
-1
2017-04-13T12:25:46.023
2010-08-27T19:01:08.273
How can I install a Gnome Applet without privileges
[ "gnome-panel", "unprivileged" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I am sorry I have not been able to test the following , but I hope it gives us some direction </p>\n\n<p><a href=\"http://old.nabble.com/installing-a-panel-applet-without-being-root-td9261908.html\" rel=\"nofollow\">http://old.nabble.com/installing-a-panel-applet-without-being-root-td9261908.html</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-27T19:01:08.273", "id": "3194", "lastActivityDate": "2010-08-27T19:01:08.273", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "84", "parentId": "3176", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>AFAICS you cannot install stackapplet without superuser privilege because every gnome applet has <a href=\"http://en.wikipedia.org/wiki/Bonobo_%28component_model%29\" rel=\"nofollow\">Bonobo</a> control file (GNOME_AppletName.server) which is in /usr/lib/bonobo/server You Mus...
null
null
null
null
null
3178
1
3195
2010-08-27T11:16:50.490
0
259
<p>I use wvdial in order to connect to the internet using a cdma usb modem that isn't detected by the nm-applet. </p> <p>However, once I've connected, gnome and other gnome applications don't seem able to determine that I am connected to the internet. (e.g. empathy, ubuntu one remain offline, firefox "work offline" has to be disabled manually) </p> <p>The desired effect is: I connect via wvdial and gnome detects this and enables everything appropriately. </p>
624
624
2010-08-27T11:34:44.020
2010-08-27T19:18:53.853
How do I make Gnome (and Gnome applications) automatically detect a wvdial connection?
[ "gnome", "networking" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>There are 3 possible solutions:</p>\n\n<ol>\n<li>make NetworkManager recognize your CDMA modem (via <a href=\"http://cgit.freedesktop.org/ModemManager/ModemManager/tree/\" rel=\"nofollow\">ModemManager</a>)</li>\n<li>make wvdial support the <a href=\"http://cgit.freedesktop.org/NetworkManager/NetworkManager/tree/docs/NetworkManager%20DBUS%20API.txt\" rel=\"nofollow\">NetworkManager dbus protocol</a></li>\n<li>find another tool that supports both</li>\n</ol>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-29T00:24:14.213", "id": "3254", "postId": "3195", "score": "0", "text": "Thanks for all the excellent info. Option 2 is particularly appealing (though I was initially hoping to avoid it) because it means I might get to contribute some code.", "userDisplayName": null, "userId": "624" }, { "creationDate": "2010-08-29T14:53:03.633", "id": "3266", "postId": "3195", "score": "0", "text": "Actually, the best solution would be 1 or maybe 3. If you're very lucky it works the same as or very similar to an already supported modem, but isn't recognised as such. As for option \"3\", you might want to try ConnMan (Ubuntu Netbook Edition 10.10 will probably use that).", "userDisplayName": null, "userId": "935" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-27T19:18:53.853", "id": "3195", "lastActivityDate": "2010-08-27T19:18:53.853", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3178", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>There are 3 possible solutions:</p>\n\n<ol>\n<li>make NetworkManager recognize your CDMA modem (via <a href=\"http://cgit.freedesktop.org/ModemManager/ModemManager/tree/\" rel=\"nofollow\">ModemManager</a>)</li>\n<li>make wvdial support the <a href=\"http://cgit.freedesktop.o...
null
null
null
null
null
3179
1
33428
2010-08-27T11:38:30.600
7
4090
<p>Closing the lid on my Dell Studio 15 which is running Ubuntu 10.04 freezes the screen. This is a new problem in Ubuntu 10.04 which did not exist in 9.10</p> <p>I have tried playing with all the settings in System->Preferences->Screensaver but nothing seems to make any difference. (please note the Power Management settings are accessible from here so I have tried those too.)</p> <p>I don't need hibernate or suspend. I just want to be able to close the lid, and then open it and still have a working laptop.</p> <p>Is their a settings somewhere that will make Ubuntu ignore the lid closing?</p>
448
null
2016-06-03T07:10:19.757
2016-06-03T20:59:48.627
Closing lid freezes laptop
[ "10.04", "laptop" ]
4
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-28T02:47:12.523", "id": "3219", "postId": "3179", "score": "1", "text": "Please file a bug re to it freezing, also explaining if you can reproduce this problem when suspending or hibernating.", "userDisplayName": null, "userId": "66" }, { "creationDate"...
{ "accepted": true, "body": "<p>I solved this by changing to the closed source FLGRX driver.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-04-04T06:36:44.240", "id": "33428", "lastActivityDate": "2011-04-04T06:36:44.240", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "448", "parentId": "3179", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>These settings are in System -> Preferences -> Power Management.</p>\n\n<p><img src=\"https://i.stack.imgur.com/sxfKE.png\" alt=\"power management\"></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-28T02:11:25.480", "id": "3...
null
null
null
user517663
null
3180
1
3181
2010-08-27T11:41:56.883
10
10715
<p>I want to find a text editor capable of running and mainly storing regular expressions for later re-use. It should also be able to run them across multiple files.</p> <p>I know I can get all that with grep, but there is not much for re-use on it. I was able to get some regular expression functionality on Gedit with plugins, but not nearly close to my needs.</p> <p>There is EditPad Pro for Windows (runs on wine) but native is always better :)</p>
539
866
2010-12-31T08:30:08.797
2018-06-12T14:09:50.827
Text editor capable of running complex Regular Expressions?
[ "text-editor", "software-recommendation", "regex" ]
8
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The two classic open source Unix editors are <a href=\"http://www.gnu.org/software/emacs/\" rel=\"nofollow\">GNU emacs</a> and <a href=\"http://www.vim.org/\" rel=\"nofollow\">(g)Vim</a> and both work fine on Ubuntu. They both have more features than you can learn about in a lifetime, including what you're after. There are plenty of others <strike>two</strike> too, but you might as well start with the best. (I'll try not to get into which of these is better, since it's already an epic holy war.)</p>\n\n<p>By the way, sed is probably a better alternative than grep for RegEx manipulations from the commandline, and you can write and save scripts for it. (Of course you can use perl, awk and python for reg ex too.)</p>\n\n<p>Some inspiration from xkcd: <a href=\"http://imgs.xkcd.com/comics/real_programmers.png\" rel=\"nofollow\">http://imgs.xkcd.com/comics/real_programmers.png</a></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-27T13:46:19.750", "id": "3195", "postId": "3181", "score": "2", "text": "I hate to be that guy, but 'too', not 'two'.", "userDisplayName": null, "userId": "1090" }, { "creationDate": "2010-08-27T15:15:24.180", "id": "3204", "postId": "3181", "score": "0", "text": "D'oh! Sorry about the typo. Don't worry. I'm usually that guy.\n\nI had meant to mention that if you want to stick with gEdit, you could install its nice External Tools plugin and use that to run sed scripts on the buffer.", "userDisplayName": null, "userId": "1689" }, { "creationDate": "2015-03-01T19:20:03.187", "id": "822472", "postId": "3181", "score": "0", "text": "@tj111 - Never apologize for being detail oriented. In our line of work, it'd be worrisome if you DIDN'T think it was important. :-)", "userDisplayName": null, "userId": "184992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-08-27T11:47:42.957", "id": "3181", "lastActivityDate": "2013-05-28T19:48:33.463", "lastEditDate": "2013-05-28T19:48:33.463", "lastEditorDisplayName": null, "lastEditorUserId": "47291", "ownerDisplayName": null, "ownerUserId": "1689", "parentId": "3180", "postTypeId": "2", "score": "18" }
[ { "accepted": true, "body": "<p>The two classic open source Unix editors are <a href=\"http://www.gnu.org/software/emacs/\" rel=\"nofollow\">GNU emacs</a> and <a href=\"http://www.vim.org/\" rel=\"nofollow\">(g)Vim</a> and both work fine on Ubuntu. They both have more features than you can learn about in a ...
null
null
null
null
null
3182
1
5168
2010-08-27T12:18:51.220
7
7986
<p>Very odd issue today. I was going to post a thread about another issue and wanted to take a screenshot of a terminal window. I got it all prepped, hit <kbd>Alt</kbd>+<kbd>Printscreen</kbd> and nothing happened.</p> <p>I went into Keyboard Shortcuts to see if redefining the shortcut worked. It did. I tried to set it back to <kbd>Alt</kbd>+<kbd>Printscreen</kbd> but the window just sat there listening for a keypress. It's as if I never pushed a key. </p> <p>Both the <kbd>Alt</kbd> and <kbd>Printscreen</kbd> keys work independently just fine... I've also tried looking at the output of <code>xev</code> as I press the keys. It hears the Alt press but doesn't hear the Printscreen afterwards.</p> <p>I've tried this from both within Compiz and plain metacity. I also have a spare keyboard and that shows identical behaviour (one keyboard is PS/2, the spare is USB - so not a port issue).</p> <p>It's like there's something sitting in the event chain spitting on the event so that nothing else can hear it. My question is basically: how can you find the processes responding to certain events?</p> <p>As requested:</p> <pre><code>oli@bert:~$ xmodmap -pke | grep -i mode keycode 82 = KP_Subtract XF86_Prev_VMode KP_Subtract XF86_Prev_VMode keycode 86 = KP_Add XF86_Next_VMode KP_Add XF86_Next_VMode keycode 100 = Henkan_Mode NoSymbol Henkan_Mode keycode 203 = Mode_switch NoSymbol Mode_switch </code></pre> <p>And </p> <pre><code>oli@bert:~$ xmodmap -pke | grep -i print keycode 107 = Print Sys_Req Print Sys_Req keycode 218 = Print NoSymbol Print </code></pre> <p><strong>Edit:</strong> When I posted this I was on Lucid with a home-built 2.6.35 kernel. It turns out my issue is related to the kernel and not X.</p> <p>Somebody somewhere has decided that alt-printscreen should render a SysRq event. Technically speaking, perhaps it should but this breaks what-must-be over a decade of Linux and Windows "known behaviour".</p>
449
17739
2011-10-31T20:53:21.807
2011-10-31T20:53:21.807
Alt+Printscreen stopped working, how to find processes listening to events
[ "keyboard", "shortcut-keys", "events" ]
4
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-27T13:48:43.903", "id": "3196", "postId": "3182", "score": "0", "text": "I had a similar issue where I wasn't able to use two key sequences on my keyboard. The first was solved by looking at my Keyboard Layout Options and finding that that key was being used to do some...
{ "accepted": true, "body": "<p>Per my edit, this appears to be directly linked to the kernel version 2.6.35 (and probably subsequent kernels) whereby alt+prscr renders a sysrq event.</p>\n\n<p>SysRq appears to be unbindable (at least from my messing around) but you can disable the silly new behaviour by adding the following to <code>/etc/sysctl.conf</code>:</p>\n\n<pre><code>kernel.sysrq = 0\n</code></pre>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-10-07T16:52:19.660", "id": "5428", "postId": "5168", "score": "0", "text": "SysRq is unbindable because that's why it was [created](http://en.wikipedia.org/wiki/SysRq): \"Introduced by IBM with the PC/AT, it was intended to be available as a special key to directly invoke low-level operating system functions with no possibility of conflicting with any existing software.\"", "userDisplayName": "Roger Pate", "userId": null }, { "creationDate": "2010-10-07T22:01:57.467", "id": "5444", "postId": "5168", "score": "0", "text": "@Roger: Perhaps that's the case but for as long as I've been using Linux, the kernel has let it trickle through to be bindable as alt+printscreen. Stopping that behaviour after such a long time is a bug in itself.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-10-07T23:45:16.083", "id": "5448", "postId": "5168", "score": "0", "text": "I'm not saying you're wrong, just explaining why sysrq works the way it does. You might try winkey/super bindings; I use it for almost all of my window manager shortcuts.", "userDisplayName": "Roger Pate", "userId": null }, { "creationDate": "2011-11-24T05:17:36.387", "id": "92979", "postId": "5168", "score": "1", "text": "This is weird: I had the same issue, but before changing anything I tried to see what my current setting was: `sudo sysctl -a | kernel.sysrq` shows... `kernel.sysrq=0` !!! But the fix was still needed: `sudo sysctl -w kernel.sysrq=0` and the problem was gone! Pretty confusing, huh?", "userDisplayName": null, "userId": "11015" }, { "creationDate": "2013-12-09T14:11:12.093", "id": "496464", "postId": "5168", "score": "0", "text": "Mmm... I'm sure that right now the Alt + PrtSc works as intended. The only way to activate sysrq is using Ctrl + Alt + Shift.", "userDisplayName": null, "userId": "169736" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-04T12:11:44.360", "id": "5168", "lastActivityDate": "2010-10-04T12:11:44.360", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "3182", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Did you try just using Print Screen? I've never heard of using Alt with it.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-27T14:30:04.797", "id": "3200", "postId": "3187", "score": "4", "text": "`A...
null
null
null
null
null
3189
1
3199
2010-08-27T16:49:26.707
5
2112
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/1385/how-to-set-up-ubuntu-as-wireless-accesspoint">How to set up ubuntu as wireless accesspoint?</a> </p> </blockquote> <p>Is there an easy, simple way to setup a wireless network so my laptop (which is connected by a wired connection) can share that connection with my mobile phone and other devices?</p> <p>Thank you for any answers in advance!</p>
1755
-1
2017-04-12T07:23:19.023
2010-08-27T22:04:24.253
Is there any way to turn my laptop into a wireless access point for other devices?
[ "wireless", "networking", "sharing" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-27T23:50:08.940", "id": "3213", "postId": "3189", "score": "0", "text": "Duplicate of http://ubuntu.stackexchange.com/questions/1385/how-to-set-up-ubuntu-as-wireless-accesspoint", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>see <a href=\"https://askubuntu.com/questions/1385/how-to-set-up-ubuntu-as-wireless-accesspoint\">How to set up Ubuntu as wireless accesspoint?</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-27T20:43:04.477", "id": "3199", "lastActivityDate": "2010-08-27T20:43:04.477", "lastEditDate": "2017-04-12T07:23:19.023", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "722", "parentId": "3189", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<ol>\n<li>Right click the Network Manager applet and click \"Edit Connections\" </li>\n<li>Go to \"Wireless\" tab and click \"Add\" </li>\n<li>Enter \"ICS\" in the \"Connection name\" field </li>\n<li>Enter \"ICS\" in the SSID field </li>\n<li>Change the Mode to \"AdHoc\"</li...
null
null
2010-08-27T22:25:38.083
null
null
3197
1
3198
2010-08-27T19:20:25.840
8
2697
<p>I don't have access to an Xubuntu install right now so I thought I'd just ask this here.</p> <p>Does Xubuntu (or more specifically, the XFCE panel) support AppIndicators?</p> <p>I'm porting an application to use them and I am curious to know if my app will work there.</p>
5
235
2010-08-27T20:51:04.443
2010-08-27T21:27:22.167
Do AppIndicators work on Xubuntu?
[ "indicator", "xubuntu" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It should definitely be possible because the indicators are made to be cross-platform.</p>\n\n<p>It appears that someone has developed an xfce panel applet to do provide this functionality:\n<a href=\"http://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin\" rel=\"nofollow\">http://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin</a></p>\n\n<p>It doesn't seem very mature though - its at version 0.0.1, which is the first stable release. It is not packaged but is available as source code.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-28T14:45:44.133", "id": "3238", "postId": "3198", "score": "0", "text": "Also, libappindicator should fall back to using the default system tray (become a normal GtkStatusIcon) if the indicator applet is not installed.", "userDisplayName": null, "userId": "172" }, { "creationDate": "2011-05-06T23:40:28.463", "id": "44756", "postId": "3198", "score": "0", "text": "There have since been some updates to that project.", "userDisplayName": null, "userId": "5" }, { "creationDate": "2015-12-29T19:10:25.807", "id": "1053755", "postId": "3198", "score": "0", "text": "In Xubuntu 14.04, `xfce4-indicator-plugin` supports 3 types of indicator: Messages, Sound, Power (partial). Newer releases seem to have better support for Indicator Power and Indicator Network.", "userDisplayName": "user37165", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-27T19:41:10.750", "id": "3198", "lastActivityDate": "2010-08-27T19:41:10.750", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "667", "parentId": "3197", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>It should definitely be possible because the indicators are made to be cross-platform.</p>\n\n<p>It appears that someone has developed an xfce panel applet to do provide this functionality:\n<a href=\"http://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin\" rel...
null
null
null
null
null
3201
1
3202
2010-08-28T00:47:15.103
1
618
<p>I was recently downloading Ubuntu server to put on an old machine to serve media around my house. </p> <p>I was wondering why they recommend the 64-bit version of there server? Does this affect anything if I am putting it on a 5 year old computer? What about 32 bit?</p> <p>Also if you could recommend some best practices for a home server. I would like to share files stream. Also host some webpages as well as use it as my git repository.</p> <p>A tutorial links would be appreciated or very explicit advice :)</p> <p>Please and thank you.</p>
333
67335
2014-08-05T04:25:07.227
2014-08-05T04:25:07.227
Ubuntu Server on 5 year old PC
[ "server", "64-bit", "32-bit" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2014-08-13T05:03:33.107", "id": "690170", "postId": "3201", "score": "0", "text": "@ElefantPhace He is helping keep the site clean and orderly.", "userDisplayName": null, "userId": "44179" } ]
{ "accepted": true, "body": "<p>64bit is recommended because most (probably all) systems sold today as servers are 64bit and have much more than 4GB of RAM, making 64bit necessary. If you're talking about normal 5 year old PC hardware though, I really doubt it's 64bit with 8GB of RAM, so go for 32bit.</p>\n\n<p>I would just install openssh-server and use that to handle both SSH and SFTP (and by extension SSHFS, which lets you have a networked filesystem).</p>\n\n<p>SSHFS howto here: <a href=\"https://help.ubuntu.com/community/SSHFS\" rel=\"nofollow\">https://help.ubuntu.com/community/SSHFS</a></p>\n\n<p>Apache2 or lighttpd for web hosting, depending what you want. Apache2 is pretty easy to get going. Just install it, and put your index.html or index.php (or whatever) in /var/www/ If you SFTP things to /var/www/stuff/ then others can download them from their web browser instead of needing to know how to use SFTP too.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-05-02T15:30:34.950", "id": "43102", "postId": "3202", "score": "0", "text": "Alternately, the server install will prompt you for certain \"tasks\" you want the server to perform (you can do this post-installation with `tasksel`).", "userDisplayName": null, "userId": "186" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-28T01:20:29.610", "id": "3202", "lastActivityDate": "2010-08-28T01:20:29.610", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1158", "parentId": "3201", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>64bit is recommended because most (probably all) systems sold today as servers are 64bit and have much more than 4GB of RAM, making 64bit necessary. If you're talking about normal 5 year old PC hardware though, I really doubt it's 64bit with 8GB of RAM, so go for 32bit.</p>...
null
null
null
null
null
3203
1
3224
2010-08-28T01:32:05.127
4
12490
<p>It's been a few days that I'm trying to set up fastcgi with apache on a Kubuntu server. Despite searching everywhere, I cannot make it to work. If I try to run the site with the cgi application, apache hangs and after the timeout returns a 500 error. </p> <p>Here is what I did: </p> <ul> <li><p>I made sure that mod_fastcgi is installed and enabled:</p> <pre><code># pwd /etc/apache2/mods-enabled # ls -l f* lrwxrwxrwx 1 root root 30 2010-07-22 10:01 fastcgi.conf -&gt; ../mods-available/fastcgi.conf lrwxrwxrwx 1 root root 30 2010-07-22 10:01 fastcgi.load -&gt; ../mods-available/fastcgi.load </code></pre></li> <li><p>As far as I am aware, fastcgi.conf is properly configured:</p> <pre><code>&lt;IfModule mod_fastcgi.c&gt; AddHandler fastcgi-script .fcgi #FastCgiWrapper /usr/lib/apache2/suexec FastCgiIpcDir /var/lib/apache2/fastcgi &lt;/IfModule&gt; </code></pre></li> <li><p>I am using this very simple <a href="http://www.guyrutenberg.com/2007/08/10/introduction-to-c-cgi/" rel="nofollow">sample script</a> to test the set up:</p> <pre><code>#include &lt;iostream&gt; using namespace std; int main() { cout&lt;&lt;"Content-type: text/plain"&lt;&lt;endl&lt;&lt;endl; cout&lt;&lt;"Hello World!"&lt;&lt;endl; return 0; } </code></pre></li> <li>I compiled it. It works fine from the command line.</li> <li>I placed it within a folder visible from the web server: <a href="http://127.0.0.1/fcgitest/run.fcgi" rel="nofollow">http://127.0.0.1/fcgitest/run.fcgi</a> </li> <li>At first I get: "Forbidden. You don't have permission to access /fcgitest/run.fcgi on this server.".</li> <li><p>I add a <code>.htaccess</code> file in the folder:</p> <pre><code>Options +ExecCGI -Indexes </code></pre></li> <li>And now, when I try to access the script address from my web browser, I get the symptom I described at the beggining: the browser first hangs, and after the timeout, I get a 500 Internal Server Error.</li> <li><p>The apache error.log say:</p> <pre><code>Content-type: text/plain Hello World! [Sat Aug 28 09:08:23 2010] [warn] FastCGI: (dynamic) server "/var/www/fcgitest/run.fcgi" (pid 27758) terminated by calling exit with status '0' </code></pre></li> </ul> <p>It seems the output is written to the error logs!! Is there a missing socket configuration, somewhere??</p>
1183
null
null
2010-08-28T13:55:01.940
How to set up apache with fastcgi and a simple test script?
[ "apache2" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-28T06:47:35.330", "id": "3221", "postId": "3203", "score": "0", "text": "Exact duplicate of http://serverfault.com/questions/175515/how-to-set-up-apache-with-fastcgi-and-a-simple-test-script", "userDisplayName": null, "userId": "923" } ]
{ "accepted": true, "body": "<p>As noted by joschi, CGI != FastCGI . A CGI script would fail in this context.</p>\n\n<p><a href=\"http://127.0.0.1/doc/libapache2-mod-fastcgi/mod_fastcgi.html\" rel=\"nofollow\">http://127.0.0.1/doc/libapache2-mod-fastcgi/mod_fastcgi.html</a><br>\n<a href=\"http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html\" rel=\"nofollow\">http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html</a></p>\n\n<blockquote><p>FastCGI Specification Compliance </p>\n\n<p>The FastCGI specification is not implemented in its entirety and I've deviated a bit as well resulting in some Apache specific features.</p> \n\n<p>The file descriptors for stdout and stderr are left open. This is prohibited by the specification. I can't see any reason to require that they be closed, and leaving them open prevents FastCGI applications which were not completely ported to FastCGI from failing miserably. This does not mean the applications shouldn't be fixed such that this doesn't occur, but is invaluable when using a 3rd party library (without source code) which expects to be able to write to stderr. <strong>Anything written to stdout or stderr in this manner will be directed to the main server log</strong>.</p>\n</blockquote>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-28T13:55:01.940", "id": "3224", "lastActivityDate": "2010-08-28T13:55:01.940", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1183", "parentId": "3203", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>As noted by joschi, CGI != FastCGI . A CGI script would fail in this context.</p>\n\n<p><a href=\"http://127.0.0.1/doc/libapache2-mod-fastcgi/mod_fastcgi.html\" rel=\"nofollow\">http://127.0.0.1/doc/libapache2-mod-fastcgi/mod_fastcgi.html</a><br>\n<a href=\"http://www.fastcgi...
null
null
null
null
null
3204
1
3207
2010-08-28T01:36:26.753
4
1847
<p>I have installed <strong>awesome</strong> on top of Ubuntu <code>10.04</code> and switch between Gnome and Awesome sessions (partly because I am still learning awesome and partly because I use a few apps that require Gnome desktop). Further I need to use a proxy server @ work whereas @ home I have a direct connection.</p> <p>Under GNOME, I have defined 2 locations with <code>gnome-network-properties</code> (hereafter, g-n-p) and switch between these as needed.</p> <p>However, when I login to awesome, I am left with the settings as set in my last GNOME session. I can't invoke g-n-p because it needs <code>gnome-settings-daemon</code> to be running which is of course not the case. If I need to change I need to logout and in twice (once into GNOME to switch location and then back into awesome). Since I use many apps within awesome that use system proxy settings (Synaptic, Firefox) I'd like to be able to centrally switch the proxy configuration without leaving the awesome desktop.</p> <p>I understand running gnome-network-properties sets some gconf-editor keys and also updates *_proxy environment vars in <code>/etc/environment</code> (and probably elsewhere also). Is there a way to achieve the same effect via a script or some replacement tool for g-n-p that doesn't use <code>gnome-settings-daemon</code> ?</p>
270
66
2010-08-31T00:19:58.137
2013-01-16T16:29:59.603
Setting http proxy in Awesome WM
[ "10.04", "gnome", "networking", "awesome" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can start <code>gnome-settings-daemon</code> as part of your Awesome start up process. I usually invoke it manually when needed. </p>\n\n<p>Add this to your <code>~/.config/awesome/rc.lua</code> file: \n awful.util.spawn_with_shell(\"gnome-settings-daemon\")</p>\n\n<p>… if you want to run it on startup. For me, at least, this was a lot easier than any other method I've tried. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-28T09:46:02.633", "id": "3222", "postId": "3207", "score": "0", "text": "I will definitely give this a try. However, the reason I use awesome is because (on my rather old laptop) the GNOME desktop uses up far too much resources. With my limited understanding, gnome-setting-daemon is one of the suspects. So, if I don't want to run it on startup, I could still run it like a normal command and then use g-n-p right ? After g-n-p finishes successfully, how do I stop gnome-settings-daemon ?", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-08-31T00:18:37.973", "id": "3348", "postId": "3207", "score": "0", "text": "Yes, you can, that's how I do it, see above. You can stop it using `killall`.", "userDisplayName": null, "userId": "66" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-28T02:52:37.470", "id": "3207", "lastActivityDate": "2010-08-28T02:52:37.470", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "66", "parentId": "3204", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>You can start <code>gnome-settings-daemon</code> as part of your Awesome start up process. I usually invoke it manually when needed. </p>\n\n<p>Add this to your <code>~/.config/awesome/rc.lua</code> file: \n awful.util.spawn_with_shell(\"gnome-settings-daemon\")</p>\n\n<p>…...
null
null
null
null
null
3205
1
null
2010-08-28T02:18:32.360
187
910531
<p>I've just installed Ubuntu 10.04 into VirtualBox on Windows 7. </p> <p>Unfortunately the only options showing for screen resolution are 640x480 and 800x600 and the monitor is showing as 'Unknown'.</p> <p>How would I go about upping the resolution to 1280x1024 (I'm on a 1600x1200 monitor)? </p> <p><em>Update</em><br> I tried mounting the VirtualBox 'Guest Additions' ISO (from the VBox 'Devices' menu) and doing <code>sudo sh ./VBoxLinuxAdditions-x86.run</code> from the mounted drive, which gave 2 new listed resolutions after a reboot (1024x768 and the 16:9 version of that resolution). These worked when I selected them but disappeared when I switched back to another resolution. I tried rebooting and running <code>VBoxLinuxAdditions-x86.run</code> again but onlu the 2 low res options listed this time.<br> I think I'm going to reinstall... </p> <p>Seems to be a VBox problem rather than an Ubuntu problem as after reinstalling 10.4 overwriting the original virtual partition, <code>sudo sh ./VBoxLinuxAdditions-x86.run</code> now has no affect at all. </p>
1761
44179
2014-04-26T01:01:05.600
2023-08-29T15:53:43.913
Higher screen resolution in VirtualBox?
[ "virtualbox", "resolution" ]
30
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-28T17:10:32.857", "id": "3246", "postId": "3205", "score": "0", "text": "What graphics card? It may be an issue with Virtual Box in Windows 7 and/or your graphics card. It works for me on Windows XP with a Radeon HD 5750.", "userDisplayName": null, "userId": ...
null
[ { "accepted": null, "body": "<p>You need to install the VBox guest utilities to add support for the virtualised graphics hardware.</p>\n\n<pre><code>sudo apt-get install virtualbox-guest-utils virtualbox-guest-x11 virtualbox-guest-dkms\n</code></pre>\n\n<p>Previously you might have needed the \"ose\" versio...
null
null
null
null
null
3209
1
null
2010-08-28T05:19:23.907
10
26060
<p>I want to know if there are any other spreadsheet programs besides OpenOffice.org Calc.</p>
1219
527764
2017-03-09T18:33:20.777
2023-02-25T10:07:42.683
What spreadsheet programs are available?
[ "openoffice.org", "productivity" ]
6
1
CC BY-SA 3.0
[ { "creationDate": "2023-07-22T14:10:01.173", "id": "2590235", "postId": "3209", "score": "0", "text": "- calligra https://calligra.org/ - gnumeric http://www.gnumeric.org/ - sc https://www.linuxjournal.com/article/10699 - kspread - pyspread https://pyspread.gitlab.io/", "userDisplayName": nu...
null
[ { "accepted": null, "body": "<p>Try <a href=\"http://projects.gnome.org/gnumeric/\" rel=\"nofollow\">http://projects.gnome.org/gnumeric/</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2010-10-15T15:35:31.827", "contentLicense": "CC BY-SA 2.5", "creationDate": "20...
2010-10-15T15:35:31.827
null
null
null
null
3216
1
3220
2010-08-28T08:19:30.230
8
8776
<p>Amazingly enough, circumstances have left me without a single USB flash drive, or a working CD-R drive. Also, because I moved about six months ago, I got rid of all my extra Ubuntu CDs that I used to get by mail. (cleanup win, hindsight fail) And yet, I need to get a live Ubuntu going to boot up a wonky desktop computer.</p> <p>I tried using unetbootin to put a live CD install onto a portable USB hard-drive, but it won't boot from it (NTLDR missing error).</p> <p>Is this because the disk is NTFS (which it is)? or for some other reason? Is there a difference between booting from a portable USB thumbdrive and a portable USB hard drive, other than potential performance?</p>
199
67335
2014-08-05T05:06:27.403
2014-08-30T03:03:26.600
How do I put Ubuntu on a NON-flash external USB hard-drive?
[ "boot", "system-installation", "live-usb", "backup", "live-cd" ]
5
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-28T10:32:58.817", "id": "3228", "postId": "3216", "score": "1", "text": "NTLDR is because you forgot to overwrite the MBR with Grub.", "userDisplayName": null, "userId": "963" } ]
{ "accepted": true, "body": "<p>There's no difference between a flash drive and a usb hard drive. Both can be used as a boot medium, and in the same way.</p>\n\n<p>If you want to put the live system (installer) on the disk, the partition needs to be FAT32. NTFS cannot be read at this stage. So the partition you boot from (where the live cd contents are put) needs to be formatted as FAT32.</p>\n\n<p>You can also install Ubuntu to the external hard drive, of course, just as you could with a flash drive. That's a different operation from using the drive as a live cd boot medium.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-28T15:03:29.490", "id": "3240", "postId": "3220", "score": "1", "text": "Actually, GRUB2 can read & boot from NTFS (I would have to check to be sure about legacy GRUB; I'm sure it can boot from it but maybe not read, and in that case it requires manual fiddling to specify the sectors to read). Or is this an Unetbootin limitation?", "userDisplayName": null, "userId": "935" }, { "creationDate": "2010-08-28T18:12:26.430", "id": "3251", "postId": "3220", "score": "0", "text": "I thought it was a limitation of the Live CD system.", "userDisplayName": null, "userId": "627" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-28T11:42:38.483", "id": "3220", "lastActivityDate": "2010-08-28T11:42:38.483", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "627", "parentId": "3216", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>You can use <code>$ sudo aptitude install ubiquity</code></p>\n\n<p>Install that on your machine (that's the-ubuntu-installer), then go through installation instruction make sure you set up <em>partions</em> on the usb-drive &amp; at the last step select <em>advanced</em> and...
null
null
null
null
null
3227
1
3238
2010-08-28T14:32:53.860
4
1503
<p>I'm a Canadian, but often get American spelling suggestions from the spell checker in Ubuntu. How do I switch to a Canadian dictionary?</p>
347
25863
2012-11-21T22:15:46.053
2012-11-21T22:15:46.053
How do I changed the language used by the Gnome spell checker?
[ "locale" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><a href=\"https://askubuntu.com/questions/3227/how-do-i-changed-the-language-used-by-the-gnome-spell-checker/3234#3234\">Marco Ceppi is right</a> about this being based on the locale, but the easiest way to change this is through System -> Administration -> Language Support in the graphical user-interface (it will also make sure all the right packages are installed, etc.).</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2015-06-26T18:57:57.257", "id": "917684", "postId": "3238", "score": "0", "text": "Does that mean that the default dictionary for spell check must be the same as the language for the menus and messages?", "userDisplayName": null, "userId": "416671" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-28T15:19:22.590", "id": "3238", "lastActivityDate": "2010-08-28T15:19:22.590", "lastEditDate": "2017-04-12T07:23:19.023", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3227", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>The spell checker is based on your Locale - if you switch it to en_CA (or en_GB if en_CA is not available) you should be more Canadian like spellings.</p>\n\n<p>Get a list of installed languages with the following:</p>\n\n<p><code>locale -a</code></p>\n\n<p>You can view your ...
null
null
null
null
null