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
25675
1
null
2011-02-10T17:19:19.407
2
2968
<p>Installed Ubuntu 10.10 on a hard drive by itself (no windows). All updates are up to date. Everything`works fine except when I plug in a 320 gig Toshiba external hard drive....it is not recognized. When I plug in an 8 gig flash drive it is recognized no problem.</p> <p>What do I mean by "not recognized"? I mean: how do you know it was not recognized. You can check the command "cat /proc/partitions" in a terminal with and without the hdd attached. If you see some difference, it's ok. If the difference is something like "sda1" (sd+letter+number) then you have partition on it, maybe it can't be handled in Ubuntu (no filesystem on it or so). If there is only "sda" in the difference for example (sd+letter, but no number after it) then the drive itself is detected, just no partition is created on it. Also you can check out the messages of the kernel, with the "dmesg" command in the terminal. If there is no disk/partition/anything in /proc/partitions, there can be an USB level problem, you can issue command "lsusb" as it was suggested before my answer. It's really matter of what do you mean about "not recognized". </p> <p>@Marco Ceppi @Oli @Pitto By "not recognized" I meant that when I plug in a 8 gig flash drive an icon immediately appears on the desktop imdicating that there is a flash drive plugged in and I can click on it and view the files on the flash drive. It also shows up on the "Nautilus" default file manager. When I plug in the 320 gig Toshiba external hard drive, I get no indication on the desktop or the file manager (thus "not recogized"). </p> <p>When I run the command <code>cat/proc/partitions/</code> I get an error message </p> <pre><code>Could not open location 'file:///home/bob/cat/proc/partitions' </code></pre> <p>with or without the external hard drive installed. With the <code>dmeg</code> command I get about 10 pages of info with no mention of disk/partition/anything in /proc/partitions. </p> <p>When I run <code>lsusb</code> command I get the following: </p> <pre><code>bob@bob-desktop:~$ lsusb Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 003: ID 04b3:3003 IBM Corp. Rapid Access III Keyboard Bus 003 Device 002: ID 04b3:3004 IBM Corp. Media Access Pro Keyboard Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub </code></pre>
10485
3037
2011-02-10T23:40:36.353
2011-03-02T20:25:32.680
External hard drive not recognized
[ "10.10", "external-hdd" ]
0
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-10T17:30:31.187", "id": "28098", "postId": "25675", "score": "0", "text": "Could you please append your question with the output of `lsusb`. It'll let us know what USB hardware Linux can see.", "userDisplayName": null, "userId": "449" }, { "creationDate...
null
[]
null
null
2012-02-20T23:25:21.667
null
null
25681
1
25690
2011-02-10T18:27:01.157
39
55990
<p>I can seem to run scripts (.sh) with and without them being set as executable. So where exactly this matters?</p>
8238
null
null
2019-08-09T10:48:39.330
Can scripts run even when they are not set as executable?
[ "scripts" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Let's say you have the file <code>myscript</code> containing the following:</p>\n\n<pre><code>#!/bin/bash\necho \"Hello, World!\"\n</code></pre>\n\n<p>If you make this file executable and run it with <code>./myscript</code>, then the kernel will see that the first two bytes are <code>#!</code>, which means it's a script-file. The kernel will then use the rest of the line as the interpreter, and pass the file as its first argument. So, it runs:</p>\n\n<pre><code>/bin/bash myscript\n</code></pre>\n\n<p>and bash reads the file and executes the commands it contains.</p>\n\n<p>Thus, for bash (or whatever interpreter your script requires) to \"execute\" the script, it only needs to be able to read the file.</p>\n\n<p>So, for scripts, the execute bit just makes it a bit more convenient to execute it. As long as bash is executable, you can always run bash with the script file as argument, or run bash interactively and copy paste the script line by line into your terminal to have the commands executed.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-10T20:02:14.243", "id": "28128", "postId": "25690", "score": "0", "text": "Thanks for explaining in detail. :) If I understood it right, any user access to bash just needs read access to the script to run it because bash will take the script as input and will only need to read it. I can stop this behaviour by taking the read permission of the script for that user. Right? So when does this executable permission is used & exactly matters?", "userDisplayName": null, "userId": "8238" }, { "creationDate": "2011-02-10T21:40:41.980", "id": "28139", "postId": "25690", "score": "0", "text": "Yes, if you use \"bash myscript\" then user only need read access for \"myscript\" (and of course executable for /bin/bash if bash is there within the path). However, if you make your script executable, things are a bit different. It's true that from the kernel's point of view, it will be \"/bin/bash myscript\" again if the first line is #!/bin/bash, but to reach that point, first you need to present the script as executable for the user or group. However, that's true if for some user the script is not executable but readable, (s)he can still \"run\" the script with \"bash myscript\" ....", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-10T22:08:36.317", "id": "28150", "postId": "25690", "score": "0", "text": "@LGB So that's pretty much useless. Good thing is to cut the read permission away from a user for that script. Right?", "userDisplayName": null, "userId": "8238" }, { "creationDate": "2011-02-10T22:21:30.010", "id": "28152", "postId": "25690", "score": "0", "text": "@Ashfame: I would say useful rather than useless. The execute bit on regular files is not (and never was intended to be) used for limiting access. It seems like you're expecting that from it. If you have a binary executable, you must have execute permission on it to run it. However, if you have read access to it, you can always copy the file to your own home directory, in which case the copy will be owned by you, so you can add execute permission to it ... and run it. For directories though, it has a bit different purpose. See http://mywiki.wooledge.org/Permissions", "userDisplayName": null, "userId": "9016" }, { "creationDate": "2016-11-17T08:51:43.880", "id": "1306461", "postId": "25690", "score": "2", "text": "What should I use instead of /bin/bash if I don't know the correct interpreter? Is there a command that runs the script according to the shebang line?", "userDisplayName": null, "userId": "4133" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-10T19:03:56.990", "id": "25690", "lastActivityDate": "2011-02-10T19:14:14.657", "lastEditDate": "2011-02-10T19:14:14.657", "lastEditorDisplayName": null, "lastEditorUserId": "9016", "ownerDisplayName": null, "ownerUserId": "9016", "parentId": "25681", "postTypeId": "2", "score": "44" }
[ { "accepted": null, "body": "<p>Don't think of it in the way that. Can I execute this file? Think of it in the way that: Who can execute this file?</p>\n\n<p>If the computer is yours and the file is yours I am sure you can execute it. You might want to look further into commands like <a href=\"http://en.wik...
null
null
null
null
null
25682
1
null
2011-02-10T18:35:49.900
7
271
<p>How would you go about choosing which graphics card to purchase. In the past I've run into situations with graphics cards whose drivers weren't that solid in Linux. </p>
10587
8844
2011-02-10T23:27:29.140
2011-02-11T00:04:14.773
How to research graphics cards
[ "hardware", "graphics" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>If you want to know whether a video card is supported, you have two main guides. </p>\n\n<p>For free drivers, check the <a href=\"http://xorg.freedesktop.org/wiki/Projects/Drivers?action=show&amp;redirect=VideoDrivers\" rel=\"nofollow\">X.org site's list</a> of supported card...
null
null
null
null
null
25683
1
null
2011-02-10T18:44:08.160
6
11179
<p>I'm using the OCR-utility of <em>OCRFeeder</em>. OCRFeeder is using the <em>tesseract</em>-engine. I have installed the several language-packs needed for tesseract. How can I set the language such that tesseract will use the right language-file for converting the scanned document into text?</p>
2191
null
null
2011-02-11T22:34:08.290
How can I specify the language to be used by Tesseract when using OCRFeeder
[ "ocr" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You need to setup the engine command line on OCR Feeder settings. It should look like:</p>\n\n<pre><code>-l lang_id $IMAGE $FILE; cat $FILE.txt\n</code></pre>\n\n<p>Where lang_id is the id as shown on the correspondin language package name.</p>\n", "commentCount": "3", ...
null
null
null
null
null
25685
1
null
2011-02-10T18:48:31.967
7
3451
<p>It seems that Nautilus doesn't have the usual headings under 11.04. I'm used to selecting <em>Edit > Preferences > Behavior</em> and then choosing single-click. How do we enable single-click in 11.04?</p>
10590
158442
2017-11-21T06:02:43.793
2017-11-21T06:02:43.793
Enabling single click to open items in Nautilus
[ "nautilus" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Sounds like it might be a bug. I'm installing Natty now, but in the meantime, it might be worth trying this. Press Alt-F2 to open a run dialogue and enter <code>gconf-editor</code>.</p>\n\n<p>Now scroll down to apps/nautilus/preferences and try altering the click policy the...
null
null
null
null
null
25687
1
null
2011-02-10T18:59:12.203
1
238
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/370/is-there-an-equivalent-to-windows-remote-assistance-ichat-screen-sharing">Is there an equivalent to Windows Remote Assistance/iChat screen sharing?</a> </p> </blockquote> <p>I'm using TeamViewer right now from my Ubuntu system to provide remote support for other Linux and Windows systems. I also have a paid logmein account, but I can't use that in Linux. Are there any other good free remote support utilities like TeamViewer for Ubuntu?</p>
3269
-1
2017-04-13T12:23:28.223
2011-02-11T22:44:12.477
Free remote support applications?
[ "remote-access", "software-recommendation", "remote-assistance" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2011-06-05T20:26:30.660
null
null
25692
1
25698
2011-02-10T19:27:14.617
18
14265
<p>I <a href="http://www.omgubuntu.co.uk/2011/02/suspended-sentence-becomes-first-post-release-app-to-land-in-ubuntu/" rel="nofollow noreferrer">keep reading</a> about an <a href="https://askubuntu.com/questions/8570/what-is-http-extras-ubuntu-com-repository-for">extras repository</a> for Ubuntu with new software that comes out independently of the distro release. How do I enable it?</p>
235
-1
2017-04-13T12:24:27.937
2012-05-23T15:50:40.530
How do I enable the "extras" repository?
[ "package-management", "software-center", "software-sources" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This repository should be enabled by default and is only available for 10.10 and up.</p>\n<h1>Ubuntu Desktop</h1>\n<p>In the Software Center (Applications -&gt; Ubuntu Software Center) navigate to Edit -&gt; Software Sources...</p>\n<p><img src=\"https://i.stack.imgur.com/I8bDk.png\" alt=\"software sources\" /></p>\n<p>From there navigate to the Other Software tab and ensure the Independent sources are selected</p>\n<p><img src=\"https://i.stack.imgur.com/xQZn9.png\" alt=\"independent\" /></p>\n<p>Press close and allow the sources to reload.</p>\n<h1>Ubuntu Server</h1>\n<p>Open the APT Sources list</p>\n<pre><code>sudoedit /etc/apt/sources.list\n</code></pre>\n<p>Locate the lines which say</p>\n<p><img src=\"https://i.stack.imgur.com/WTMC0.png\" alt=\"deb\" /></p>\n<p>Remove the hash (<code>#</code>) tag from those lines. If the hashes are not present then that source is already enabled. If those lines aren't there at all you will need to add them to the bottom of the file:</p>\n<pre><code>deb http://extras.ubuntu.com/ubuntu precise main\ndeb-src http://extras.ubuntu.com/ubuntu precise main\n</code></pre>\n<p>Close the editor and run</p>\n<pre><code>sudo apt-get update\n</code></pre>\n<p>This will download the package cache from the extra's location.</p>\n<p>Reference:</p>\n<ul>\n<li><a href=\"https://wiki.ubuntu.com/AppReviews\" rel=\"nofollow noreferrer\">https://wiki.ubuntu.com/AppReviews</a></li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-11T05:24:22.933", "id": "28203", "postId": "25698", "score": "0", "text": "explained like a pro, for newbies ;)", "userDisplayName": null, "userId": "3778" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-10T19:40:44.947", "id": "25698", "lastActivityDate": "2012-05-23T15:50:40.530", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "41", "parentId": "25692", "postTypeId": "2", "score": "18" }
[ { "accepted": true, "body": "<p>This repository should be enabled by default and is only available for 10.10 and up.</p>\n<h1>Ubuntu Desktop</h1>\n<p>In the Software Center (Applications -&gt; Ubuntu Software Center) navigate to Edit -&gt; Software Sources...</p>\n<p><img src=\"https://i.stack.imgur.com/I8b...
null
null
null
null
null
25693
1
null
2011-02-09T21:52:49.397
4
4229
<p>When I use apt to get a package, I have been receiving the same error message. Here is an example trying to install wicd (which is already installed):</p> <pre><code> Reading package lists... Building dependency tree... Reading state information... wicd is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded. 3 not fully installed or removed. After this operation, 0B of additional disk space will be used. Setting up tex-common (2.06) ... debconf: unable to initialize frontend: Dialog debconf: (Dialog frontend requires a screen at least 13 lines tall and 31 columns wide.) debconf: falling back to frontend: Readline Running mktexlsr. This may take some time... done. No packages found matching texlive-base. dpkg: error processing tex-common (--configure): subprocess installed post-installation script returned error exit status 1 dpkg: dependency problems prevent configuration of texlive-binaries: texlive-binaries depends on tex-common (&gt;= 2.00); however: Package tex-common is not configured yet. dpkg: error processing texlive-binaries (--configure): dependency problems - leaving unconfigured dpkg: dependency problems prevent configuration of dvipng: dvipng depends on texlive-base-bin; however: Package texlive-base-bin is not installed. Package texlive-binaries which provides texlive-base-bin is not configured yet. dpkg: error processing dvipng (--configure): dependency problems - leaving unconfigured No apport report written because the error message indicates its a followup error from a previous failure. No apport report written because the error message indicates its a followup error from a previous failure. Errors were encountered while processing: tex-common texlive-binaries dvipng E: Sub-process /usr/bin/dpkg returned an error code (1) </code></pre> <p>I'm not sure if this is a problem with apt or with dpkg, but it certainly doesn't look good!</p>
null
null
null
2012-08-15T05:22:51.240
dpkg behaving strangely?
[ "apt", "dpkg" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-10T18:44:35.313", "id": "28124", "postId": "25693", "score": "0", "text": "What exact command did you use?", "userDisplayName": null, "userId": "2591" }, { "creationDate": "2011-02-10T21:26:47.023", "id": "28136", "postId": "25693", "score":...
null
[ { "accepted": null, "body": "<p>It looks like you are missing <a href=\"https://apps.ubuntu.com/cat/applications/texlive-base\" rel=\"nofollow noreferrer\">texlive-base <img src=\"https://hostmar.co/software-small\" alt=\"Install texlive-base\"></a>.</p>\n\n<p>You can install it in the Software Center from ...
null
null
null
null
Tom Henderson
25695
1
null
2011-02-10T19:34:34.650
9
46959
<pre><code>Boot from (hd0,0) ext3 238ac8ca-9576-443d-8e23-8dd836cd2683 Starting up ... mount: mounting /dev/disk/by-uuid/238ac8ca-9576-443d-8e23-8dd836cd2683 on /root failed: Invalid argument mount: mounting /dev on /root/dev failed: No such file or directory mount: mounting /sys on /root/sys failed: No such file or directory mount: mounting /proc on /root/proc failed: No such file or directory Target filesystem doesn't have requested /sbin/init. No init found. Try passing init= bootarg. BusyBox v1.15.3 (Ubuntu 1:1.15.3-1ubuntu5) built in shell (ash) Enter 'help' for a list of built-in commands. </code></pre>
null
3037
2011-02-10T23:44:35.880
2020-08-19T13:42:35.670
Initramfs error during boot
[ "root", "init", "initramfs" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2011-08-26T20:08:55.210", "id": "67083", "postId": "25695", "score": "1", "text": "Why a bounty, given the asking user is not seen on askubuntu from \"Feb 12 at 16:04\"?", "userDisplayName": null, "userId": "2647" }, { "creationDate": "2011-08-27T04:04:50.520",...
null
[ { "accepted": null, "body": "<p>Boot loader tries to boot from a partition which is not a correct linux root.\nWould you please provide more information?How did it happen?</p>\n\n<p>If it happened after an unexpected shutdown (just a guess) maybe file system check can help you: <a href=\"http://members.iine...
null
null
null
null
user10593
25701
1
null
2011-02-10T19:56:03.317
3
332
<p>I use two computers, a Linux one for coding and building and a Windows one which has the programming application to load the built program onto the hardware. Both computers have access to a network drive which I use to pass the files from Linux to Windows.</p> <p>My problem is, that every time I build I have to copy the files from where the are created to the network drive. How can I make some sort of file in the network drive on Ubuntu that always mirrors the file which is built in the different location, like a pointer? Thanks!</p>
5124
3037
2011-02-10T20:32:54.010
2011-02-10T21:27:22.407
How can I make a permanently updated copy of a file in a different place to the original file?
[ "files", "sync", "clipboard" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Many options come to mind but here are two.</p>\n\n<p>1) Work directly from files on the actual network share. (I personally would use NFS on the nix machine and tell the coding app on the Win7 machine to open / save all the working files on that mapped drive)</p>\n\n<p>2) Dr...
null
null
null
null
null
25702
1
26445
2011-02-10T20:19:10.577
2
1296
<p>I have paired my nokia 3110c via bt on my pc, I can receive a file from my pc to the phone, but I can not browse the contents of phone from my computer. Here is the error message</p> <pre><code>Error: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. Please select another viewer and try again. </code></pre> <p>How can I transfer contents from my phone to my computer?</p>
25373
235
2011-02-15T14:45:41.517
2011-02-15T14:45:41.517
Error : Could not display "obex://" when paired with a Nokia 3110c
[ "bluetooth", "file-sharing" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I have solved the problem, or rather say found the reason behind the problem.</p>\n\n<p>The main reason behind this problem was battery level, </p>\n\n<p>(Guess) if the battery level reaches below some point, the device doesn't recognize or process the request sent by the machine and can not send proper reply to machine. That can be the reason why we can not access the file system. </p>\n\n<p>We have also tried one samsung phone, and a sony Erickson phone with low battery (in each case more than 60% battery is drained) and got same result.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-15T05:45:24.667", "id": "26445", "lastActivityDate": "2011-02-15T05:45:24.667", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "25373", "parentId": "25702", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>Most likely you will need to debug <code>obex-data-server</code>.</p>\n\n<p>You can install <code>qt4-dev-tools</code>, launch <code>qdbusviewer</code> and search for \"obex\" in the session bus. If it doesn't find anything, launch <code>obex-data-server</code> from terminal....
null
null
null
null
null
25707
1
25718
2011-02-10T20:47:29.440
1
495
<p>I reinstalled my desktop machine with Ubuntu 10.10., coming from Gentoo where I used XFCE. My home is usually NFS-mounted from a server. During the install I let the installer set up my user, but of course my NFS-home wasn't mounted then; I have a regular /home/user now.</p> <p>If I <code>mv /home /home.old</code> and mount my NFS-home to /home instead, I cannot login because Gnome complains about some config-files (sorry, no exact error message as there is no way to copy&amp;paste this). </p> <p>Which of my /home.old/user directories do I have to copy over to my NFS-home so that Gnome is happy again?</p>
9976
41
2011-02-10T20:51:33.327
2011-02-10T21:32:59.370
Merge home directory after fresh installation with existing (Gentoo) home
[ "gnome", "configuration", "home-directory", "nfs" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Well, I guess .gnome2 and .gnome2_private and similar. However, if I were you, I would create a new user (with empty home) to log into gnome. Then you can check the new user's home and you will clearly see what kind of directories are created so you will know what you need copy then.</p>\n\n<p>By the way, it's a bit odd situation: you told that you used XFCE on that NFS mounted share and no gnome (?). Then gnome should create directories at the first time. Are you sure that you (as the user, I mean, including gnome) can write to the mounted NFS /home? Isn't it possible that you used with different uid/gid with gentoo and/or different uid mapping policy with NFS export and/or mount?</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-11T16:54:27.673", "id": "28315", "postId": "25718", "score": "0", "text": "It definitely wasn't a permission problem, I had checked that. Moving .gnome* did the trick. I guess the problem comes from the fact that albeit running XFCE, if you start some gnome-based applications, they will write stuff to .gnome* and obviously some of that wasn't compatible.", "userDisplayName": null, "userId": "9976" }, { "creationDate": "2011-02-11T16:55:08.470", "id": "28316", "postId": "25718", "score": "0", "text": "Oh, forgot to add: if anyone should have a similar problem, also check for .mozilla, as you might be running incompatible versions of firefox.", "userDisplayName": null, "userId": "9976" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-10T21:32:59.370", "id": "25718", "lastActivityDate": "2011-02-10T21:32:59.370", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25707", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Well, I guess .gnome2 and .gnome2_private and similar. However, if I were you, I would create a new user (with empty home) to log into gnome. Then you can check the new user's home and you will clearly see what kind of directories are created so you will know what you need co...
null
null
null
null
null
25713
1
25715
2011-02-10T21:17:22.720
27
33933
<p>I have postgresql 8.4 installed on my desktop. It keeps starting on bootup because I think I used default settings. </p> <p>so I issue <code>/etc/init.d/postgresql stop</code> everytime and sometimes i keep forgetting</p> <p>It has folder paths as,</p> <pre><code>/etc/postgresql/8.4/main /usr/lib/postgresql/8.4 </code></pre> <p>There are a lot of configuration files and if someone can tell me where to look and what to change, that will be great. </p> <p>Thanks.</p>
10596
61218
2017-05-24T11:05:55.607
2019-06-23T19:29:24.253
How to stop postgres from autostarting during start up
[ "postgresql" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>This can help you: <a href=\"http://www.linuxquestions.org/questions/linux-general-1/how-to-remove-postgresql-from-startup-481963/#post2417585\">http://www.linuxquestions.org/questions/linux-general-1/how-to-remove-postgresql-from-startup-481963/#post2417585</a></p>\n\n<p>But install chkconfig first:</p>\n\n<pre><code>sudo apt-get install chkconfig\n</code></pre>\n\n<p>and then use it</p>\n\n<pre><code>chkconfig\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-10T22:17:28.510", "id": "28151", "postId": "25715", "score": "6", "text": "`update-rc.d` is more native for Debian.", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-02-10T22:34:22.670", "id": "28154", "postId": "25715", "score": "0", "text": "You're welcome :) Check out this link http://www.debuntu.org/how-to-manage-services-with-update-rc.d too.Thanks to ulidtko.", "userDisplayName": null, "userId": "10494" }, { "creationDate": "2020-11-25T18:23:38.387", "id": "2200500", "postId": "25715", "score": "0", "text": "Using systemctl (see other answers) is intended method when using systemd, e.g. on Ubuntu.", "userDisplayName": null, "userId": "11307" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-10T21:26:33.577", "id": "25715", "lastActivityDate": "2011-02-10T21:26:33.577", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10494", "parentId": "25713", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>This can help you: <a href=\"http://www.linuxquestions.org/questions/linux-general-1/how-to-remove-postgresql-from-startup-481963/#post2417585\">http://www.linuxquestions.org/questions/linux-general-1/how-to-remove-postgresql-from-startup-481963/#post2417585</a></p>\n\n<p>But...
null
null
null
null
null
25714
1
25721
2011-02-10T21:20:49.143
1
239
<p>How to add a contextual menu item to .psd files in Nautilus? The menu item would execute a script and pass it the path of the file.</p>
2331
null
null
2017-02-24T06:02:56.330
How to add a contextual menu item to .psd files in Nautilus?
[ "nautilus", "scripts" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Install <a href=\"http://packages.ubuntu.com/nautilus-actions\" rel=\"nofollow noreferrer\">nautilus-actions</a>. This lets you add items to the context menu.</p>\n\n<pre><code>sudo apt-get install nautilus-actions\n</code></pre>\n\n<p>Open <strong>System>Preferences>Nautilus Actions Configuration</strong></p>\n\n<p>You can define new menu items, and use conditions to ensure they only display for psd files.</p>\n\n<p><a href=\"http://techthrob.com/2009/03/02/howto-add-items-to-the-right-click-menu-in-nautilus/\" rel=\"nofollow noreferrer\">This page</a> has a decent walkthrough.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-10T21:41:19.227", "id": "25721", "lastActivityDate": "2017-02-24T06:02:56.330", "lastEditDate": "2017-02-24T06:02:56.330", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "3251", "parentId": "25714", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>if you want Gnome-wide action on particular MIME type of file (within your login), you make right mouse click on one of those files icon in Nautilus, choose \"Open with Other Application...\" and in dialog popped up, make open edit window \"Use a custom command\" at bottom, t...
null
null
null
null
null
25717
1
25722
2011-02-10T21:31:52.990
48
96881
<p>How to enable the backports repository so I can get newer versions of software?</p>
7035
44179
2014-12-15T19:36:40.257
2018-10-04T08:24:07.323
How do I enable the "backports" repository?
[ "package-management", "software-center", "software-sources", "backport" ]
3
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Ubuntu Backports are enabled by default in Ubuntu.</p>\n\n<p>If for some motive you still don't get the backports use any of these 2 ways:</p>\n\n<ol>\n<li><p>Click the Ubuntu button on the launcher and search for \"Software Sources\". Search for \"Software\" if using 12.04+.</p></li>\n<li><p>Press ALT+F2 and Type: <code>gksu software-properties-gtk</code></p></li>\n</ol>\n\n<p>Any of the 2 Ways will get you to the <strong>Software Sources Manager</strong> or <strong>Software &amp; Updates</strong>. In here Activate all 4 options in the <strong>Ubuntu Software</strong> Tab and in the <strong>Updates Tab</strong>. This should enable the Extras for your Ubuntu Version.</p>\n\n<p><img src=\"https://i.stack.imgur.com/XMGTm.png\" alt=\"Ubuntu Software Sources - Ubuntu Software Tab\"></p>\n\n<p><img src=\"https://i.stack.imgur.com/3qhj0.png\" alt=\"Ubuntu Software Sources - Updates Tab\"></p>\n\n<p>After this just click on the <strong>CLOSE</strong> Button and it should let you know that it needs to update because of the changes you made. Note that in the <strong>Updates</strong> tab, the Backport option is the 4th one in there. It's the one that says <strong>Unsupported updates</strong>.</p>\n\n<p>To activate the backports (Which is automatically enabled since 11.10) from the terminal (In cases where you are working on a server and want the backports enabled) do the following after opening the terminal (This example is using Ubuntu 13.04):</p>\n\n<pre><code>sudo nano /etc/apt/sources.list\n</code></pre>\n\n<p>And look for a commented line that mentions the keyword backport, should look something like <code>raring-backports</code> for 13.04, <code>precise-backports</code> for 12.04 and son. In this case it looks like this:</p>\n\n<pre><code> ##deb http://archive.ubuntu.com/ubuntu raring-backports main restricted universe multiverse\n ##deb-src http://archive.ubuntu.com/ubuntu raring-backports main restricted universe multiverse\n</code></pre>\n\n<p>uncomment this lines so they look like this:</p>\n\n<pre><code> deb http://archive.ubuntu.com/ubuntu raring-backports main restricted universe multiverse\n deb-src http://archive.ubuntu.com/ubuntu raring-backports main restricted universe multiverse\n</code></pre>\n\n<p>save the file and run the following to receive the backport updates:</p>\n\n<pre><code>sudo apt-get update \nsudo apt-get upgrade\n</code></pre>\n\n<p>NOTE - If the lines are not found, simply add them and change the name of the version to the one you are using as explained above.</p>\n\n<p>Reference</p>\n\n<ul>\n<li><a href=\"https://help.ubuntu.com/community/UbuntuBackports\" rel=\"noreferrer\">https://help.ubuntu.com/community/UbuntuBackports</a></li>\n</ul>\n", "commentCount": "1", "comments": [ { "creationDate": "2014-09-23T12:11:56.953", "id": "719129", "postId": "25722", "score": "0", "text": "After doing this, I had to tell apt to always use backports as well (as specified in the answer by Seth)", "userDisplayName": null, "userId": "4345" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-10T21:47:59.720", "id": "25722", "lastActivityDate": "2013-09-28T13:50:54.387", "lastEditDate": "2013-09-28T13:50:54.387", "lastEditorDisplayName": null, "lastEditorUserId": "169736", "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "25717", "postTypeId": "2", "score": "34" }
[ { "accepted": true, "body": "<p>Ubuntu Backports are enabled by default in Ubuntu.</p>\n\n<p>If for some motive you still don't get the backports use any of these 2 ways:</p>\n\n<ol>\n<li><p>Click the Ubuntu button on the launcher and search for \"Software Sources\". Search for \"Software\" if using 12.04+....
null
null
null
null
null
25723
1
25744
2011-02-10T21:51:39.833
4
6439
<p>This is similar to <a href="https://askubuntu.com/questions/18222/how-to-prevent-system-applications-like-the-software-center-from-asking-for-pas">How to prevent system applications (like the Software Center) from asking for password?</a> However that solution does not work for Synaptic Package Manager in 10.04.</p>
7463
-1
2017-04-13T12:23:07.557
2018-01-26T20:05:36.867
How to prevent Synaptic Package Manager from asking for password?
[ "10.04", "security", "password", "policykit" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-10T21:55:28.487", "id": "28147", "postId": "25723", "score": "2", "text": "I know you what you want to achieve, and you might have heard this before, but: This is not a good idea.", "userDisplayName": "user6658", "userId": null }, { "creationDate": "201...
{ "accepted": true, "body": "<p>The Software Centre falls on PolicyKit for its permissions. This allows the fine grain permissions you've seen. Synaptic does not. Like the command line tools, it needs to run as root.</p>\n\n<p>The most simple way to allow a user access to it without having to type their password is by editing <code>/etc/sudoers</code>. This would allow you to set certain <code>sudo</code> commands to not require a password.</p>\n\n<pre><code>username ALL=(ALL) ALL, NOPASSWD: /usr/sbin/synaptic\n</code></pre>\n\n<p><a href=\"https://web.archive.org/web/20081201235559/http://snippets.dzone.com/posts/show/838\" rel=\"nofollow noreferrer\">Nabbed from here</a>.</p>\n\n<p>You might then have to edit the launcher from <code>gksu synaptic</code> to <code>sudo synaptic</code>. But you might not.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2018-01-26T16:47:49.227", "id": "1616735", "postId": "25744", "score": "0", "text": "I have no root password on my Raspberry Pi and it still asked for it. Only adding `sudo ` to the beginning of the launcher fixed it for me.", "userDisplayName": null, "userId": "730949" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-11T00:17:12.937", "id": "25744", "lastActivityDate": "2018-01-26T20:05:36.867", "lastEditDate": "2018-01-26T20:05:36.867", "lastEditorDisplayName": null, "lastEditorUserId": "616451", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "25723", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>The Software Centre falls on PolicyKit for its permissions. This allows the fine grain permissions you've seen. Synaptic does not. Like the command line tools, it needs to run as root.</p>\n\n<p>The most simple way to allow a user access to it without having to type their pas...
null
null
null
null
null
25724
1
25726
2011-02-10T21:51:57.117
12
8918
<p>I am transferring from 8.10 to 10.10. I was wondering what is the difference between Ubuntu Software Centre and Synaptic Package Manager in 10.10? For what kinds of things do I need to go which? </p> <p>Thanks!</p>
1471
3037
2011-02-10T23:46:51.943
2016-07-30T18:04:50.067
What is the difference between Ubuntu Software Centre and Synaptic Package Manager?
[ "package-management", "software-center", "synaptic" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Both of them are package managers. Software center is simple to use, but synaptic is more complicated and provides more options (more details about packages for example). Synaptic will be removed from Ubuntu soon (but still available to install) since software center can do the work (<a href=\"http://www.webupd8.org/2010/09/synaptic-is-going-bye-bye-soon.html\" rel=\"nofollow\">here</a>).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-10T21:56:27.047", "id": "25726", "lastActivityDate": "2016-07-30T18:04:50.067", "lastEditDate": "2016-07-30T18:04:50.067", "lastEditorDisplayName": null, "lastEditorUserId": "10494", "ownerDisplayName": null, "ownerUserId": "10494", "parentId": "25724", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>Both of them are package managers. Software center is simple to use, but synaptic is more complicated and provides more options (more details about packages for example). Synaptic will be removed from Ubuntu soon (but still available to install) since software center can do t...
null
null
2013-12-26T22:21:23.073
null
null
25725
1
41263
2011-02-10T21:55:14.863
3
3038
<p>My laptop's battery performance is awful. I can get about an hour and a half out of it, so I've been looking for some ways to boost the power efficiency of my laptop.</p> <p>I saw the tip to enable this:</p> <pre><code>echo 1 &gt; /sys/devices/system/cpu/sched_mc_power_savings </code></pre> <p>But it does not exist on this installation. What happened to it?</p>
10599
235
2011-02-17T22:21:14.260
2011-05-08T12:41:31.247
What happened to sched_mc_power_savings
[ "laptop", "power-management", "battery", "cpu" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This seems to be part of <a href=\"http://manpages.ubuntu.com/manpages/natty/man8/laptop-mode.conf.8.html\" rel=\"nofollow\">laptop_mode (Ubuntu man page)</a>: <code>sudo apt-get install laptop-mode-tools</code></p>\n\n<p><code>more /etc/laptop-mode/conf.d/sched-mc-power-savings.conf</code> and on the bottom it says:</p>\n\n<pre>\n# Control multi-core power-saving tunables for the process scheduler?\n# Set to 0 to disable\nCONTROL_SCHED_MC_POWER_SAVINGS=\"auto\"\n</pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-08T12:41:31.247", "id": "41263", "lastActivityDate": "2011-05-08T12:41:31.247", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "15811", "parentId": "25725", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Same for me! I have read that for somebody recompiling the kernel with the right processor family (core 2 instead of standard) resolved that problem (see <a href=\"http://www.linux-solved.com/post/Solved-Missing-sys-devices-system-cpu-sched-mc-power-savings-61510.html\" rel=\...
null
null
null
null
null
25727
1
25741
2011-02-10T22:02:33.660
2
26342
<p>I'm trying build the Android source using these packages. ButI am getting this error:</p> <pre><code>$ sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev ia32-libs x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev [sudo] password for asdf: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package libc6-dev-i386 E: Unable to locate package lib32ncurses5-dev E: Unable to locate package ia32-libs E: Unable to locate package lib32readline5-dev E: Unable to locate package lib32z-dev </code></pre> <p>I tried to download &amp; install say libc6-dev-i386 debian package form <a href="http://packages.ubuntu.com/maverick-updates/libc6-dev-i386" rel="nofollow">here</a>. But when I double click on the .deb file Ubuntu Software Manager says wrong architecture 'amd64'.</p> <p>(My OS: 32-bit Ubuntu 10.10 (updated), Processor: AMD phenom II 64-bit.)</p>
10123
8844
2011-02-11T02:56:03.703
2011-02-11T14:43:37.650
How do I install the build dependencies for Android?
[ "10.10", "apt", "build", "package-management", "32-bit" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I believe that the android.com page is a little out of date. There are a lot of different workarounds that are floating around the net. I'll try to summarize what worked for me. </p>\n\n<p>Two helpful, if imperfect, pages are located here: </p>\n\n<p><a href=\"http://www.crashcourse.ca/wiki/index.php/Android_on_Ubuntu_10.04#Building_Android_in_its_entirety\" rel=\"nofollow\">crashcourse.ca</a><br>\n<a href=\"http://www.wildartist.org/archives/1178\" rel=\"nofollow\">wildartist</a> </p>\n\n<p>First, it looks like you'll probably want to use <code>java6</code> and not <code>java5</code>, judging by <a href=\"http://groups.google.com/group/android-building/tree/browse_frm/month/2010-07/47f5cd36168b5e33?rnum=161&amp;_done=/group/android-building/browse_frm/month/2010-07?&amp;pli=1\" rel=\"nofollow\">some of the group threads</a> . So if you see java5 in instructions, know that you'll need to substitute in either the sun java6 or open java 6.</p>\n\n<p>Here are the packages I needed for my 32-bit system:</p>\n\n<pre><code>sudo apt-get install git-core gnupg flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev openjdk-6-jdk ant gcc-multilib g++-multilib\n</code></pre>\n\n<p>After those are in place, build <code>repo</code> : </p>\n\n<pre><code>sudo curl http://android.git.kernel.org/repo -o /usr/local/bin/repo \nsudo chmod a+x /usr/local/bin/repo\n</code></pre>\n\n<p>Then in your build directory:</p>\n\n<pre><code>repo init -u git://android.git.kernel.org/platform/manifest.git \nrepo sync\n</code></pre>\n\n<p>The <a href=\"http://www.wildartist.org/archives/1178\" rel=\"nofollow\">wildartist site</a> continues: </p>\n\n<blockquote>\n <p>If you encounter the message “command not found” then you can do it with the following commands:</p>\n\n<pre><code>$ sudo sh /usr/local/bin/repo init -u git://android.git.kernel.org/platform/manifest.git\n$ sudo sh /usr/local/bin/repo sync\n</code></pre>\n \n <p>It will take much time to get the code\n even though the line is fast as the\n project itself is really huge. After\n the long waiting, you will find that\n the checkout process has been ended.\n The next thing to do is MAKE to build\n the project. But you will meet a\n message that the Java version is not\n correct and the build process fails.\n Then you can modify the\n build/core/main.mk file to change the\n text ”1.5″ to “1.6″.</p>\n</blockquote>\n\n<p>At this point you should have the dependencies and the code take care of. You will still need to <code>make</code> . </p>\n\n<p>Because the code base and supporting libraries and components are changing, it's hard to keep the instructions perfectly up-to-date, which is why there are so many conflicting how-to's for this process. </p>\n", "commentCount": "9", "comments": [ { "creationDate": "2011-02-11T00:44:34.410", "id": "28168", "postId": "25741", "score": "0", "text": "I am afraid, It even doesn't work. My OS is 10.10 32 bit (processor 64bit arch). for the first command it is unable to locate: ib32z1-dev lib32ncurses5-dev also it can't locate ia32-libs.", "userDisplayName": null, "userId": "10123" }, { "creationDate": "2011-02-11T01:17:37.847", "id": "28174", "postId": "25741", "score": "0", "text": "@newcomer See if you can get these: `sudo apt-get install git-core gnupg flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev openjdk-6-jdk ant git-core gnupg flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev`", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T01:40:38.777", "id": "28177", "postId": "25741", "score": "0", "text": "@jgbelacqua: liblz-dev install was successful and it says libncurses5-dev was installed before. So I need three more packages lib32readline5-dev libc6-dev-i386 ia32-libs (fyi I have jdk installed in my machine and I can run android app in emulator using eclipse)", "userDisplayName": null, "userId": "10123" }, { "creationDate": "2011-02-11T01:52:30.733", "id": "28178", "postId": "25741", "score": "0", "text": "Try `libc6-dev` and `libreadline5-dev` . You won't need ia32-libs with your 32-bit OS.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T02:00:23.783", "id": "28179", "postId": "25741", "score": "0", "text": "Ok, everything installed. but when I try to initialize a repo client using: $ repo init -u git://android.git.kernel.org/platform/manifest.git it shows error **Traceback (most recent call last):\n File \"/home/mashruf/bin/repo\", line 91, in <module>\n import readline\nImportError: No module named readline\n**", "userDisplayName": null, "userId": "10123" }, { "creationDate": "2011-02-11T02:06:41.063", "id": "28180", "postId": "25741", "score": "0", "text": "Try running repo as `/usr/local/bin/repo` ? Otherwise `sudo curl http://android.git.kernel.org/repo -o /usr/local/bin/repo` and then `sudo chmod a+x /usr/local/bin/repo` and retry.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T02:19:33.113", "id": "28182", "postId": "25741", "score": "0", "text": "No. what does it mean by No module named readline?", "userDisplayName": null, "userId": "10123" }, { "creationDate": "2011-02-11T02:27:30.360", "id": "28183", "postId": "25741", "score": "0", "text": "I'm not sure what is in the repo script, but apparently it can't find the readline libraries. Those should have been there with libreadline5-dev . Here's another page that looks almost right-- has worked so far for my 32-bit sys: [android into ubuntu](http://www.wildartist.org/archives/1178) . \nExceptions are that the `chmod a+x` line there shouldn't have a `~` , and I used java6 instead of 5.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T19:38:18.910", "id": "28350", "postId": "25741", "score": "0", "text": "Yess!! I am downloading the source now and that is from 10.10. The readline Module was something from Python. My python installation was erroneous! Thank you for your nice editing here, Hope someone looking here will have a clear understanding", "userDisplayName": null, "userId": "10123" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-10T23:53:36.093", "id": "25741", "lastActivityDate": "2011-02-11T03:09:46.500", "lastEditDate": "2011-02-11T03:09:46.500", "lastEditorDisplayName": null, "lastEditorUserId": "8844", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "25727", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>You're trying to install some 32-bit packages which are not available in your repositories.You can not install i386 packages since your configuration is 64-bit.\nTry finding similar packages in Synaptic package manager.For example search for libc6-dev and install suitable pac...
null
null
null
null
null
25732
1
null
2011-02-10T22:39:58.263
5
32286
<p>I notice when I do:</p> <pre> sudo update-initramfs -u </pre> <p>With the latest kernel release (2.6.38) I get the following warning messages:</p> <pre> update-initramfs: Generating /boot/initrd.img-2.6.38-3-generic-pae W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-2.fw for module r8169 W: Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-1.fw for module r8169 </pre> <p>How can I resolve this problem?</p> <p><em><strong>Dean Thomson Feb 14 at 4:11 wrote:</em></strong></p> <blockquote> <p>Unfortunately, the linux-firmware package isn't for <strong>Maverick</strong>.</p> </blockquote>
2767
8515
2011-08-10T01:24:10.157
2015-07-09T20:11:25.710
Possible missing firmware /lib/firmware/rtl_nic/rtl8168d-2.fw for module r8169 with 2.6.38 kernel
[ "10.10", "kernel", "realtek", "initramfs", "firmware" ]
4
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>take a look at this PPA... it has updated firmware packages:</p>\n\n<ul>\n<li><a href=\"https://launchpad.net/~chasedouglas/+archive/linux-firmware\" rel=\"nofollow noreferrer\">https://launchpad.net/~chasedouglas/+archive/linux-firmware</a></li>\n<li><a href=\"https://launch...
null
null
null
null
null
25739
1
null
2011-02-10T23:43:30.377
1
1449
<p>Is there a way to force DVDs to be auto-mounted using the "unhide" option by default? Currently, in order to see hidden files on a DVD that Ubuntu has auto-mounted, I have to unmount it and then re-mount manually like this:</p> <pre><code>sudo mount -t udf -o ro,unhide /dev/cdrom ~/cdrom0/ </code></pre>
2186
235
2011-02-10T23:58:28.927
2011-10-18T06:53:12.587
Force DVDs to be auto-mounted using "unhide" option by default?
[ "gnome", "mount", "dvd", "automount" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Use a text editor (not a word processor!) and edit the file /etc/fstab (note you need to be root or use sudo to do this.)</p>\n\n<p>One of the lines should concern the DVD/CD, something like:</p>\n\n<pre><code>/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 ...
null
null
null
null
null
25742
1
null
2011-02-10T23:58:00.727
3
144
<p>Some of the items in the Wine menu are given a prefix that is their entire path.</p> <p><img src="https://i.stack.imgur.com/ZFzEi.png" alt="enter image description here"></p> <p>The items that don't have the long prefix seem to work fine, but those that do, don't respond to the Properties button or double-click in the menu editor. They take a lot of space, and look ugly, but I can't rename them. </p> <p>I've tried editing their associated files, there doesn't appear to be anything different about them to the ones that are working fine. They weren't always like that - it just happened after an upgrade one day and it's been like that ever since.</p>
9215
235
2011-02-11T00:00:55.243
2011-02-11T00:00:55.243
Why is this happening with the wine menu?
[ "wine" ]
0
3
CC BY-SA 2.5
[ { "creationDate": "2011-03-21T02:46:11.887", "id": "35062", "postId": "25742", "score": "0", "text": "This sounds like https://bugs.launchpad.net/wine/+bug/148565", "userDisplayName": null, "userId": "12435" }, { "creationDate": "2011-03-21T12:20:23.713", "id": "35124", "...
null
[]
null
null
2012-02-21T22:08:42.327
null
null
25745
1
null
2011-02-11T00:35:15.713
19
24988
<p>Recently VLC has been having issues displaying video in fullscreen mode. AFAIK, nothing has changed with the video card drivers and it's certainly the same version of VLC. (/me shakes a fist at the repository maintainers)</p> <p>This has worked without issue in the past. In fact, I've had as many as 6 instances of VLC running, each playing a video. One was always fullscreen on my second monitor, while the others were tiled on my primary monitor. I was able to toggle any of the other 5 into fullscreen mode and the video displayed without issue.</p> <p>Lately, I've been having trouble running 2 instances in fullscreen mode. (Sometimes, even a single instance will not display the video in fullscreen.) VLC will continue to play the video, but in fullscreen mode I see nothing but a black screen. Sometimes, the video will display if I maximize the VLC window. Other times, I have to settle for a smaller sized window.</p> <p>I don't know if this is pertinent, but sometimes changing the min/max state of a Firefox window (Minefield, specifically) seemed to allow the troublesome instance to display the video in fullscreen mode. However, that did not prove to be a consistent workaround. Sometimes, it seemed that closing a Firefox window did the trick, though that isn't consistently successful either. (I futzed with Firefox, because with the crazy number of windows and tabs that I normally have open, it regularly hogs about 1 GB of RAM.)</p> <p>Another bit of funkiness that comes to mind is the fact that my secondary monitor is considered the primary on boot-up. I use xrandr to designate the real 1st monitor as primary after boot-up, as suggested by someone in a <a href="https://unix.stackexchange.com/questions/5263/is-it-possible-to-control-which-monitor-is-considered-the-primary-monitor">question I asked on the Unix &amp; Linux SE site</a>.</p> <p>Specs: </p> <ul> <li>Ubuntu 10.10 w/ Gnome and Compiz </li> <li>8GB RAM </li> <li>AMD Phenom II 965 Black Edition </li> <li>Asus M4A79 Deluxe mobo </li> <li>XFX ATI Radeon HD 5750 w/ 1GB RAM </li> </ul> <p>VLC is configured to use the hardware overlay for video (as per the default setting)</p> <p>Does anyone have an idea what may cause this issue or how I may go about troubleshooting it? Right now I have 2 instances of VLC playing, each in fullscreen mode on a separate monitor. </p>
80
-1
2017-04-13T12:37:16.607
2015-11-24T08:39:07.060
VLC will sometimes have issues displaying video in fullscreen.
[ "video", "ati", "vlc", "fullscreen" ]
4
9
CC BY-SA 3.0
[ { "creationDate": "2011-02-11T00:40:32.527", "id": "28167", "postId": "25745", "score": "1", "text": "@jorge I don't understand how a black screenshot would shed any light on the situation. :)", "userDisplayName": null, "userId": "80" }, { "creationDate": "2011-02-11T00:49:01.163...
null
[ { "accepted": null, "body": "<p>In <code>Tools</code> > <code>Preferences</code> > <code>Video</code> > <code>Output</code> change the Default to X11, save and restart vlc.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2013-08-20T04:21:19.843", "id": "426457", ...
null
null
null
null
null
25746
1
25749
2011-02-11T01:12:04.350
10
48743
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4662/where-is-the-x-org-config-file-how-do-i-configure-x-there">Where is the X.org config file? How do I configure X there?</a> </p> </blockquote> <p>I'm trying to get my video card properly setup to handle 3D acceleration. After searching a bit, I've come across a few howtos that tell me I need to edit my xorg.conf file. That file doesn't exist. X.org is installed by default, I'm sure, and I figured this video card would be widely supported.</p> <p>00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 09)</p> <p>Any ideas on how I can get this to work properly and play Starcraft II? Or any game for that matter? No resolution problems or anything, just no 3D rendering.</p>
10556
-1
2017-04-13T12:24:27.937
2011-02-11T11:56:29.493
/etc/X11/xorg.conf doesn't exist?
[ "intel-graphics", "xorg" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You COULD create your own xorg.conf by typing in a tty (not running gdm) the following:</p>\n\n<p><code>X -configure</code></p>\n\n<p>That will create a file called <strong>xorg.conf.new</strong></p>\n\n<p>To test the file type <code>X -config xorg.conf.new</code></p>\n\n<p>If you can load X and see the mouse and a good resolution then you can press CTRL+ALT+BACKSPACE to quit.</p>\n\n<p>Copy then xorg.conf.new to the new location</p>\n\n<p><code>cp xorg.conf.new /etc/X11/xorg.conf</code></p>\n\n<p>Run <code>startx</code> to test.</p>\n\n<p>Also the file does not exist since X.org does not needed anymore for some video cards (as i understand) only some Video cards have xorg.conf because of specific configurations (Like Nvidia and Ati). The rest of the X.org configuration options are in <strong>/usr/share/X11</strong> like synaptics.</p>\n\n<p>Now to test out if you have Direct Rendering do this:</p>\n\n<p><code>glxinfo | grep -i \"Direct Rendering\"</code> If it says YES then you can run several games. If it says NO then you might need more configuration. Also run <code>glxgears</code> to see how many FPS you have. If the glx commands are not there run <code>sudo apt-get install mesa-utils</code></p>\n\n<p>I can not guarantee that it will make it work for starcraft 2 (Remember you also need to have wine installed) </p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-02-11T02:51:06.107", "id": "28186", "postId": "25749", "score": "1", "text": "after some poking around, I found out it's a problem with Starcraft II, not my drivers. Accepted because the answer is relevant to the question, but the question I asked was in fact, the wrong one.", "userDisplayName": null, "userId": "10556" }, { "creationDate": "2011-02-11T03:55:32.140", "id": "28191", "postId": "25749", "score": "0", "text": "Thanks for this excellent answer! I had no idea that X had a -configure flag. Is this new?", "userDisplayName": null, "userId": "2315" }, { "creationDate": "2011-02-11T04:38:16.283", "id": "28197", "postId": "25749", "score": "1", "text": "\"The rest of the X.org configuration options are in /usr/share/X11\" This is ridiculously useful information that I haven't seen anywhere else.", "userDisplayName": null, "userId": "8515" }, { "creationDate": "2011-02-11T08:13:14.300", "id": "28218", "postId": "25749", "score": "0", "text": "grep -i is better for \"testing\" direct rendering, since output of glxinfo has that text with lower case, at least on my machine ...", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2017-05-12T17:15:51.323", "id": "1440672", "postId": "25749", "score": "0", "text": "You have to stop the x server before X -configure.", "userDisplayName": null, "userId": "284313" }, { "creationDate": "2019-06-05T06:19:31.197", "id": "1908456", "postId": "25749", "score": "0", "text": "I have an error after `X -configure` command: \"Cannot establish any listening sockets - Make sure an X server isn't already running\"", "userDisplayName": null, "userId": "671890" }, { "creationDate": "2019-06-05T14:04:08.600", "id": "1908682", "postId": "25749", "score": "0", "text": "@Dr.X Make sure you are not running this from the desktop (or an Xorg based environment)", "userDisplayName": null, "userId": "7035" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T01:35:14.640", "id": "25749", "lastActivityDate": "2011-02-11T11:56:29.493", "lastEditDate": "2011-02-11T11:56:29.493", "lastEditorDisplayName": null, "lastEditorUserId": "7035", "ownerDisplayName": null, "ownerUserId": "7035", "parentId": "25746", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>You COULD create your own xorg.conf by typing in a tty (not running gdm) the following:</p>\n\n<p><code>X -configure</code></p>\n\n<p>That will create a file called <strong>xorg.conf.new</strong></p>\n\n<p>To test the file type <code>X -config xorg.conf.new</code></p>\n\n<p>I...
null
null
2011-02-11T14:19:48.037
null
null
25747
1
null
2011-02-11T01:17:00.840
11
1497
<p>I have both KDE and GNOME desktop environments installed on Ubuntu 10.10. When I add the entry <code>OnlyShowIn=GNOME;</code> in a .desktop file, the application doesn't appear in the KDE menu.</p> <p>However, when I add <code>OnlyShowIn=KDE;</code> the file still appears in the GNOME menu. Does anyone know why this isn't working? Does anyone have a workaround?</p>
10606
3037
2011-02-11T07:53:50.387
2020-06-19T03:24:43.850
Why doesn't GNOME respect OnlyShowIn=KDE; in .desktop files?
[ "10.10", "gnome", "kde", "menu" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T16:23:31.683", "id": "28303", "postId": "25747", "score": "1", "text": "Works here. Which file have you edited?", "userDisplayName": null, "userId": "2647" } ]
null
[ { "accepted": null, "body": "<p>I don't know about the whole Gnome story but you could use this in the meanwhile:</p>\n<p><a href=\"http://linux-apps.com/content/show.php/Gnome+Menu+Extended+(Debian+Package)?content=73515\" rel=\"nofollow noreferrer\">Gnome Menu Extended (Debian package)</a></p>\n<p>There's...
null
null
null
null
null
25748
1
null
2011-02-11T01:17:16.227
2
404
<p>Yesterday my WUBI/Vista installation was working fine. I shut it down at the train station, all good then when I attempted to boot Ubuntu at home I got a message saying the UUID for root could not be found. By booting with the Ubuntu live CD I found that the <code>C:\ubuntu\disks</code> folder stat structure was broken, reported as <code>"??? ??? ??"</code> kinda thing. I booted into Windows, scheduled a CHKDSK, ran that on boot which found some errors and rebooted. Still no dice.</p> <p>I am not stressed because it appears my home directory is still there with all my content so I don't mind re-installing the OS (probably will clean it up some). </p> <p>What is the best path from here to repair the WUBI installation? Is there anything else I should do to repair it? I'm looking at whether the drive is dying now to work out why this occured. Possibly I moved the laptop before shutdown had completed.</p>
null
3037
2011-02-11T07:59:17.353
2011-02-11T07:59:17.353
WUBI installation can no longer boot, UUID disk not found
[ "10.10", "wubi", "windows-vista" ]
0
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T01:23:16.297", "id": "28176", "postId": "25748", "score": "0", "text": "I always say this never install with wubi, never worth the trouble it saves you upfront.", "userDisplayName": null, "userId": "333" }, { "creationDate": "2011-11-30T19:39:59.737"...
null
[]
null
null
2011-12-01T13:19:21.840
null
user10607
25750
1
74723
2011-02-11T01:53:42.347
2
98
<p>I just tried out using the Ubuntu One Contacts app for Android. First I imported all the contacts from my phone, SIM-card and Google mail account, then I spent quite a while removing duplicates which got imported. Then I tried to sync it for the first time.</p> <p>The strange thing is that I also got all the contacts which I removed from my contacts list on the website. So I have to set "show only contacts with phone numbers" to get all the email addresses I imported from Google earlier to not show up, even though I deleted them from the contacts list and have only Ubuntu One contacts showing.</p> <p>Why is that?</p> <p>Thank you!</p>
10609
3037
2011-02-11T08:01:49.550
2011-11-02T11:18:20.430
When syncing, removed contacts still show up (One contacts)
[ "ubuntu-one", "sync", "contacts" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>guess it was just a sync problem since this got sorted out later on...</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-11-02T11:18:20.430", "id": "74723", "lastActivityDate": "2011-11-02T11:18:20.430", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10609", "parentId": "25750", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>guess it was just a sync problem since this got sorted out later on...</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-11-02T11:18:20.430", "id": "74723", "lastActivit...
null
null
null
null
null
25753
1
null
2011-02-11T03:43:21.747
4
1474
<p>My Ubuntu 10.10 on my laptop Lenovo T400 is not able to suspend or hibernate. </p> <p>Whenever I click Suspend or Hibernate, </p> <ul> <li>the moon LED on the bottom of the lid flashes a few seconds, the screen quickly shows something like "some devices fail to suspend, error 5",</li> <li>and then the moon LED goes off and the display still has ambient light illumination. I suppose in suspend or hibernation state, the display should have no illumination, just like when the laptop is turned off, right?</li> <li>If I press any key, the unlock screen dialogue will pop out.</li> </ul> <p>I searched a little on the internet, and installed 'acpi-support' according to some advice but it does not help. Any suggestions to solve this problem? Thanks and regards!</p> <hr> <p>ADDED:</p> <p>Laptop specifications:</p> <pre><code>CPU Intel Mobile Core 2 Duo P8800 @ 2.66GHz Penryn 45nm Technology RAM 1.9GB Single-Channel DDR3 @ 532MHz (7-7-7-20) Motherboard LENOVO 2764CTO (None) Graphics ThinkPad Display 1440x900 @ 1440x900 ATI Mobility Radeon HD 3400 Series (Lenovo) Hard Drives 244GB Western Digital WDC WD2500BEVS-08VAT2 (SATA) Optical Drives HL-DT-ST DVDRAM GSA-U20N AZCDW EFCPUZ452 SCSI CdRom Device AZCDW EFCPUZ452 SCSI CdRom Device Audio Conexant 20561 SmartAudio HD </code></pre>
1471
1471
2011-02-11T04:23:05.893
2011-10-15T14:32:12.747
Not able to suspend or hibernate
[ "10.10", "suspend", "hibernate" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T09:28:29.610", "id": "28227", "postId": "25753", "score": "0", "text": "how large is your swap partition?", "userDisplayName": null, "userId": "8498" }, { "creationDate": "2011-02-11T12:54:47.363", "id": "28250", "postId": "25753", "score...
null
[ { "accepted": null, "body": "<p>What graphics adapter do you have? The proprietary drivers for nVidia and ATI sometimes do not play well with ACPI suspend mode.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-11T04:24:01.710", "id": "28193", "postI...
null
null
null
null
null
25754
1
null
2011-02-11T03:44:22.307
0
399
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/24187/support-trendnet-tew-643pi-wireless-n-network-card">Support TrendNet TEW-643PI Wireless N network card</a> </p> </blockquote> <p>I've unstalled Ubuntu, but I can't connect to my wireless network.</p> <p>I have a Trendnet TEW-643pi card, and many post say it will not work. Should I connect my ethernet and try to update the drivers?</p>
null
-1
2017-04-13T12:24:13.310
2011-02-11T08:05:19.797
Wireless network card not working (Trendnet TEW-643pi)
[ "10.10", "wireless" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-03-12T19:03:45.567
null
user10610
25759
1
null
2011-02-11T05:54:47.897
5
10262
<p>Currently, whenever I insert a CD or DVD into my DVD drive, it mounts to a location such as <code>/media/&lt;LABEL&gt;</code>, where <code>&lt;LABEL&gt;</code> is the arbitrary label assigned to the optical disc.</p> <p>I remember, once upon a time, CD and DVD media being reliably located at /media/cdrom0 or something similar. Why was this changed? And how do I get this old behavior back for this drive?</p> <p>I can understand this behavior for USB sticks. It makes sense for those. But not for CD/DVD media, in my opinion. For example, because of this, I have no way to configure Wine to point to my DVD drive, as the mount point changes with every single CD I insert.</p> <p><strong>TL;DR: How do I make CD/DVD media always mount to <code>/media/cdrom0</code>?</strong></p>
2186
null
null
2012-12-14T07:13:21.717
Auto-mount CD/DVD drive to single, specific mount point every time?
[ "gnome", "mount", "automount" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T17:43:31.083", "id": "28328", "postId": "25759", "score": "0", "text": "Another instance of this issue: http://lists.fedoraproject.org/pipermail/users/2011-January/391226.html (replies begin at http://lists.fedoraproject.org/pipermail/users/2011-January/391284.html)...
null
[ { "accepted": null, "body": "<p>If you have one cdrom drive, add this line to your /etc/fstab:</p>\n\n<p><code>/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0</code></p>\n\n<p>Make sure you edit it as root. Ie: <code>gksudo gedit /etc/fstab</code> or <code>sudo nano /etc/fstab</code>.</p>...
null
null
null
null
null
25761
1
25835
2011-02-11T06:38:04.793
2
2344
<p>I updated my system using the Update Manager and now I am getting a "Broken Package" error.</p> <p>I went into Synaptic Package Manager and clicked on <em>Fix Broken Packages</em> but then I got this error:</p> <pre><code>E: /var/cache/apt/archives/dockmanager_0.1.0~bzr80-0ubuntu1~10.10~dockers1_i386.deb: trying to overwrite '/usr/share/dockmanager/data/skype_away.svg', which is also in package faenza-icon-theme 0.8 </code></pre> <p>I cannot install or remove anything until the broken package is fixed. What should I do now?</p> <p><strong>UPDATE:</strong></p> <p>As suggested in the answers, I ran the commands</p> <pre><code>sudo apt-get purge faenza-icon-theme sudo apt-get -f install </code></pre> <p>But still get the same error, here is what I get:</p> <p><a href="http://paste.ubuntu.com/565877/" rel="nofollow">http://paste.ubuntu.com/565877/</a></p> <p><strong>UPDATE 2:</strong></p> <p>Fixed using <a href="http://www.webupd8.org/2011/02/fix-dpkg-error-trying-to-overwrite-x.html" rel="nofollow">http://www.webupd8.org/2011/02/fix-dpkg-error-trying-to-overwrite-x.html</a></p>
2910
16835
2016-07-14T02:52:59.780
2016-07-14T04:21:07.800
Broken package error after updating
[ "package-management", "synaptic" ]
4
1
CC BY-SA 3.0
[ { "creationDate": "2011-02-16T13:00:13.330", "id": "29292", "postId": "25761", "score": "0", "text": "If you get the solution then please mark the question as answered", "userDisplayName": null, "userId": "4980" } ]
{ "accepted": true, "body": "<p>...And here is the fix -- <a href=\"http://www.webupd8.org/2011/02/fix-dpkg-error-trying-to-overwrite-x.html\" rel=\"nofollow\">http://www.webupd8.org/2011/02/fix-dpkg-error-trying-to-overwrite-x.html</a></p>\n", "commentCount": "1", "comments": [ { "creationDate": "2016-07-14T04:09:59.477", "id": "1203614", "postId": "25835", "score": "0", "text": "While this link may theoretically answer the question, it is best to include the essential parts of the answer here in case that link disappears.", "userDisplayName": null, "userId": "16835" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T15:16:46.790", "id": "25835", "lastActivityDate": "2011-02-11T15:16:46.790", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2910", "parentId": "25761", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p>First, remove the faenza-icon-theme package:</p>\n\n<pre><code>sudo apt-get purge faenza-icon-theme\n</code></pre>\n\n<p>Now, try to reinstall the dockmanager.</p>\n\n<p>You can also try to run:</p>\n\n<pre><code>sudo apt-get install -f\n</code></pre>\n", "commentCount": ...
null
null
null
null
null
25764
1
null
2010-09-13T20:00:49.100
7
16781
<p>I'm dual booting W7 and Ubuntu (installed from Wubi). I've had it up and running a few times but today I'm getting a message from Windows Boot Manager when I select Ubuntu that wubildr.mbr is missing or corrupt. Any help would be greatly appreciated. </p>
2271
866
2011-02-13T19:29:58.197
2014-04-07T19:42:28.847
wubildr.mbr missing or corrupt
[ "windows-7", "wubi" ]
5
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-15T01:33:25.247", "id": "4229", "postId": "25764", "score": "0", "text": "Is Ubuntu on the same drive as Windows, or external? Are you using anything special on your disk, such as encryption or RAID?", "userDisplayName": null, "userId": "2224" }, { "cre...
null
[ { "accepted": null, "body": "<p>It is a general problem that happens with WUBI.Since Ubuntu is installed to a file inside windows partition,it becomes susceptible to corruptions that generally happen in Windows.You can reinstall Ubuntu but I recommend a full install.</p>\n", "commentCount": "1", "co...
null
0
null
null
creade
25767
1
null
2011-02-11T08:11:06.557
2
471
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/9922/how-do-i-disable-the-home-encryption-offered-during-install">How do I disable the Home encryption offered during install?</a> </p> </blockquote> <p>I have installed Ubuntu as a virtual machine on my Windows machine. During installation I selected to use home directory data encryption. Now I have a problem that I am running out of disk space on my virtual machine. <em>Disk Usage Analyzer</em> tool shows that <em>.ecryptfs</em> folder occupies the same amount of disk space as my home directory. What do I have to do to get rid of this directory and would it be safe?</p>
9025
-1
2017-04-13T12:23:09.107
2011-02-11T08:27:33.990
How to get rid of home data encryption?
[ "encryption", "ecryptfs" ]
0
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T13:23:36.340", "id": "28257", "postId": "25767", "score": "1", "text": ".ecryptfs is using the same amount of space as your home folder because it is your (actual) home folder. The data is not duplicated. ~/.ecryptfs contains the encrypted files, and ubuntu mounts i...
null
[]
null
null
2011-06-05T20:27:03.530
null
null
25768
1
25803
2011-02-11T08:14:29.370
13
19660
<p>I know it's the compose key, and I set it to right <kbd>Alt</kbd> and I set the "3rd level" option to the <kbd>Shift</kbd> + <kbd>Alt</kbd>, but I can't figure out for the life of me for example how to do the copyright symbol, or the registered mark, or trademark symbol, etc. I try alt then c but I get č.</p>
2490
169736
2014-03-25T13:15:20.103
2017-07-09T16:03:17.730
Typing special character ©/copyright?
[ "keyboard-layout" ]
4
2
CC BY-SA 3.0
[ { "creationDate": "2011-02-11T08:29:39.737", "id": "28222", "postId": "25768", "score": "1", "text": "This very much depends on the keyboard layout you're using. Go to *System → Preferences → Keyboard → Layouts* to see which one you're using, and add it to the question. If you're lucky, you can ...
{ "accepted": true, "body": "<h2>Compose key</h2>\n\n<p>Compose,o,c will produce ©.</p>\n\n<p>You can view the combinations in your locale's <em>Compose</em> file, e.g. </p>\n\n<pre><code>/usr/share/X11/locale/en_US.UTF-8/Compose\n</code></pre>\n\n<p>For those without a compose key configured (it isn't by default). <a href=\"https://askubuntu.com/a/70788/349837\">Go here</a> for latest versions.\nOn <strong>Ubuntu 12.04</strong> the setting is hidden away at System > Preferences > Keyboard > Layout > Options... > Compose Key Position. I prefer to use the \"menu\" key as compose, but it's a matter of preference. </p>\n\n<h2>AltGr (Third-level modifier)</h2>\n\n<p>On a UK English layout, <kbd>AltGr</kbd>+<kbd>Shift</kbd>+<kbd>c</kbd> also produces ©.</p>\n\n<p>The standard USA layout doesn't include many characters at the third level as US keyboards have a second <kbd>Alt</kbd> rather than <kbd>AltGr</kbd>.</p>\n\n<p>The layouts \"USA International (AltGr dead keys)\" and \"USA International\" have © at <kbd>AltGr</kbd>+<kbd>c</kbd>. \"USA International (AltGr dead keys)\" would be better for most as the other turns the apostrophe into a dead key for the acute accent.</p>\n\n<p>The Ubuntu documentation has a <a href=\"https://help.ubuntu.com/community/GtkComposeTable\" rel=\"noreferrer\">comprehensive list of Compose key sequences</a> plus <a href=\"https://help.ubuntu.com/community/ComposeKey\" rel=\"noreferrer\">further info on Compose and AltGr</a>.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-11T12:45:23.873", "id": "28248", "postId": "25803", "score": "2", "text": "I remember hearing about an alternative US layout that includes a bunch of third level chars (emulating AltGr). Does that exist?", "userDisplayName": null, "userId": "1067" }, { "creationDate": "2011-02-11T12:55:00.673", "id": "28251", "postId": "25803", "score": "0", "text": "Ah yes, USA International does.", "userDisplayName": null, "userId": "3251" }, { "creationDate": "2011-02-11T13:05:57.600", "id": "28254", "postId": "25803", "score": "0", "text": "+1 good and accurate answer. Adding the setting for the Compose key would make it even better: System > Preferences > Keyboard > Layout > Options... > Compose Key Position (in a basement disused lavatory with a sign on the door \"beware of tiger\" could they hide it better?)", "userDisplayName": null, "userId": "1078" }, { "creationDate": "2011-02-14T00:49:04.930", "id": "28801", "postId": "25803", "score": "0", "text": "Thanks so much! Is there a place i can learn all of these?", "userDisplayName": null, "userId": "2490" }, { "creationDate": "2012-05-09T15:07:49.063", "id": "159941", "postId": "25803", "score": "0", "text": "English (Macintosh) also has a very rich selection of third-level chars, notably sensibly placed math/scientific chars (https://personal.crocodoc.com/oImDdk4).", "userDisplayName": null, "userId": "61027" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-11T12:03:07.737", "id": "25803", "lastActivityDate": "2017-06-25T18:47:38.700", "lastEditDate": "2017-06-25T18:47:38.700", "lastEditorDisplayName": null, "lastEditorUserId": "349837", "ownerDisplayName": null, "ownerUserId": "3251", "parentId": "25768", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<h2>Compose key</h2>\n\n<p>Compose,o,c will produce ©.</p>\n\n<p>You can view the combinations in your locale's <em>Compose</em> file, e.g. </p>\n\n<pre><code>/usr/share/X11/locale/en_US.UTF-8/Compose\n</code></pre>\n\n<p>For those without a compose key configured (it isn't b...
null
null
null
null
null
25769
1
25773
2011-02-11T08:25:24.673
18
844
<p>The <a href="https://help.ubuntu.com/community/Repositories/Ubuntu">Ubuntu wiki</a> describes the "sections" of the official Ubuntu repositories as follows:</p> <blockquote> <p>Main - Officially supported software. </p> <p>Restricted - Supported software that is not available under a completely free license. </p> <p>Universe - Community maintained software, i.e. not officially supported software. </p> <p>Multiverse - Software that is not free.</p> </blockquote> <p>I thought that software in the Ubuntu repositories had to be open source, however doesn't the description of the <em>Multiverse</em> directly contradicts this?</p>
866
1067
2011-02-11T10:15:19.923
2011-06-30T13:54:05.720
Why do we have non-free software in the official repositories?
[ "official-repositories", "open-source" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T14:05:03.240", "id": "28263", "postId": "25769", "score": "1", "text": "There are different reasons, most of them subjective and argumentative.", "userDisplayName": null, "userId": "742" } ]
{ "accepted": true, "body": "<p>The software in <em>Multiverse</em> is \"<a href=\"http://en.wikipedia.org/wiki/Gratis\" rel=\"nofollow\">gratis</a>\", but not free. These are some examples of cases in which software would be appropriate in Multiverse:</p>\n\n<ul>\n<li><p>The Software is <a href=\"http://en.wikipedia.org/wiki/Libdvdcss2\" rel=\"nofollow\">not legal</a> in every jurisdiction (DVD Decryption, ...)</p></li>\n<li><p>It's <a href=\"http://en.wikipedia.org/wiki/Software_patent\" rel=\"nofollow\">software-patent encumbered</a> (MP3 Codecs, ...)</p></li>\n<li><p>It doesn't provide the user with <strong>all of</strong> the <a href=\"http://en.wikipedia.org/wiki/Free_software#Definition\" rel=\"nofollow\">four essential Freedoms</a>:</p>\n\n<ol>\n<li><strong>Run</strong> the program for any purpose.</li>\n<li><strong>Study</strong> how the program works, and change it to make it do what you want.</li>\n<li><strong>Redistribute</strong> copies at will.</li>\n<li>Modify the program, and <strong>release modified versions</strong>.</li>\n</ol>\n\n<p>Note that those do <em>not</em> include a requirement that modified version be released with a license that grants the same freedom. This is called <a href=\"http://en.wikipedia.org/wiki/Copyleft\" rel=\"nofollow\">copyleft</a>, and it's seperate from pure free software.</p></li>\n<li><p>There are issues with the licensing (like missing, unclear or invalid copyright notices) </p></li>\n<li><p>Any of the above is disputed or unclear</p></li>\n</ul>\n\n<p>As htorque quotes, \"The onus is on you to verify your rights to use this software \".</p>\n\n<p>Note also: much of the software in Ubuntu enters the repositories through being in Debian first, so the <a href=\"http://www.debian.org/social_contract\" rel=\"nofollow\">Debian Social Contract &amp; The Debian Free Software Guidelines</a> are of some relevance. </p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-11T11:33:14.097", "id": "28236", "postId": "25773", "score": "1", "text": "Great info, but as far as I can see this doesn't answer the question. It talks about what is the situation, but not why. I believe that you can expand a little bit the answer with that info.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2011-02-11T11:48:44.670", "id": "28238", "postId": "25773", "score": "1", "text": "very good point. But I'm very hesitant to explain why, because there isn't really a well documented, factual answer. It's going to be subjective. I don't want to get into a holy-war argument. But I'll think about it, and see if I can't find a few documented reasons. Maybe @MarkShuttleworth should answer the question. (he is [around](http://askubuntu.com/users/5287/mark-shuttleworth)) ;-)", "userDisplayName": null, "userId": "1067" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T08:43:59.340", "id": "25773", "lastActivityDate": "2011-02-12T05:05:43.973", "lastEditDate": "2011-02-12T05:05:43.973", "lastEditorDisplayName": null, "lastEditorUserId": "3357", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "25769", "postTypeId": "2", "score": "16" }
[ { "accepted": true, "body": "<p>The software in <em>Multiverse</em> is \"<a href=\"http://en.wikipedia.org/wiki/Gratis\" rel=\"nofollow\">gratis</a>\", but not free. These are some examples of cases in which software would be appropriate in Multiverse:</p>\n\n<ul>\n<li><p>The Software is <a href=\"http://en...
null
null
null
null
null
25772
1
25776
2011-02-11T08:43:45.767
0
1189
<p>Not long ago, <a href="http://www.canonical.com/content/canonical-releases-world%E2%80%99s-most-comprehensive-date-component-catalog-linux" rel="nofollow">Canonical published a database of supported components for Ubuntu</a>, and I noticed, that my video card Manhattan [Mobility Radeon HD 5000 Series] have full support only at Ubuntu 10.04 LTS, but I have installed 10.10, and want to know, does it have support on this version too?</p>
10623
235
2011-02-12T20:56:49.983
2011-04-14T10:40:20.060
Manhattan [Mobility Radeon HD 5000 Series] support on 10.10
[ "10.10", "10.04", "video", "ati", "support" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It's a list of <em>Ubuntu certified</em> (tested by Canonical for OEMs) and <em>Ubuntu ready</em> (tested by OEMs) hardware, that's <strong>guaranteed</strong> to work on the specific systems they were tested on.</p>\n\n<p>This doesn't mean that hardware not on that list won't work fine with Ubuntu - but it's possible. This also doesn't mean that hardware on that list won't work with older, later, or future versions of Ubuntu - but, again, it's possible.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-11T09:12:04.893", "id": "28225", "postId": "25776", "score": "0", "text": "I see. Thanks for the comment! PS: I cannot get my video card working on Ubuntu 10.10", "userDisplayName": null, "userId": "10623" }, { "creationDate": "2011-04-14T10:52:47.563", "id": "39091", "postId": "25776", "score": "0", "text": "have you tried manually installing the latest fglrx ati driver.", "userDisplayName": null, "userId": "5845" }, { "creationDate": "2011-05-13T07:11:48.690", "id": "46378", "postId": "25776", "score": "0", "text": "Yes, I tried catalyst 11.5. It's working now, but have big performance problems and graphical bugs, but at least system boots without problems...", "userDisplayName": null, "userId": "10623" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T09:01:42.090", "id": "25776", "lastActivityDate": "2011-02-11T09:27:42.457", "lastEditDate": "2011-02-11T09:27:42.457", "lastEditorDisplayName": null, "lastEditorUserId": "3037", "ownerDisplayName": null, "ownerUserId": "3037", "parentId": "25772", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>It's a list of <em>Ubuntu certified</em> (tested by Canonical for OEMs) and <em>Ubuntu ready</em> (tested by OEMs) hardware, that's <strong>guaranteed</strong> to work on the specific systems they were tested on.</p>\n\n<p>This doesn't mean that hardware not on that list won...
null
null
null
null
null
25775
1
null
2011-02-11T08:58:14.697
0
1068
<p>3 vertical dots appears instead of Network Manager applet in Panel. I can connect to ethernet but I'm not able to connect to my wireless network. I tried to add/remove the Notification area from the Panel, but nothing helps.</p>
null
1067
2011-02-11T09:02:55.003
2012-03-07T15:48:37.137
Network Manager disappeared
[ "gnome-panel", "network-manager" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>There are 3 possible solutions for this problem,</p>\n\n<p>I prefer to take a look at: </p>\n\n<p><a href=\"http://www.ubuntugeek.com/possible-solutions-to-fix-the-missing-network-manager-icon-in-ubuntu-9-10.html\" rel=\"nofollow\">http://www.ubuntugeek.com/possible-solutions...
null
null
null
null
user10625
25778
1
null
2011-02-11T09:26:38.417
22
11013
<p>I've two interfaces: eth0 and wlan0 on a notebook.</p> <p>Possible use cases:</p> <ul> <li>eth0 grants me Internet access, and wlan0 is currently connected to a router which does not have Internet-connectivity. For development purposes, I need to connect to the wlan0 by default, but use eth0 for surfing</li> <li>eth0 and wlan0 are both connected to the Internet. For a torrent application, eth0 should be used for speed, but for portability of the notebook, SSH should have a connection over wlan0</li> <li>eth0 is a wire connection, wlan0 is a wireless one. Sensible data should be transferred over eth0, but other traffic can go over wlan0 as well.</li> </ul> <p>Is there a way to force applications (like <code>nc.traditional</code> or <code>firefox</code>) to use a certain network interface? A wrapper like <code>example-wrapper eth0 program</code> is fine too if such program exist. It would be nice if it could configured within Firefox (in runtime). I'd like to avoid IPTables solutions if possible.</p>
6969
6969
2011-02-11T20:36:56.770
2014-09-17T15:24:01.397
How can an application (like Firefox) be forced to use a certain network interface?
[ "networking", "firefox" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T12:53:37.793", "id": "28249", "postId": "25778", "score": "4", "text": "this is also helpful for multiple internet connection with one doing torrent while other being used for surfing.", "userDisplayName": null, "userId": "5877" }, { "creationDate": ...
null
[ { "accepted": null, "body": "<p><a href=\"http://ubuntuforums.org/showpost.php?p=7550769&amp;postcount=5\" rel=\"nofollow\">Here</a> is a sample solution. It uses SOCKS server, setup on current machine to route coneections. Each application should be configured to use each server.</p>\n", "commentCount"...
null
null
null
null
null
25779
1
null
2011-02-11T09:32:36.827
3
4689
<p>I'm sshing into my friends machine and I'm wondering how would i launch a GNOME session over SSH? I need to open a web browser on his machine to view something which can only be done from his hostname. What's the easiest way to achieve this via SSH?</p>
3120
null
null
2011-02-11T10:54:05.550
Launch a GNOME session in a Ubuntu machine I'm SSH'd into?
[ "gnome", "xorg", "ssh" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T11:29:34.563", "id": "28234", "postId": "25779", "score": "0", "text": "I don't think it's a good idea to launch a whole gnome session. If you only want to launch a web browser there, you can do it, try ssh -X ... and launch firefox or other web browser you like.", ...
null
[ { "accepted": null, "body": "<p>try <code>ssh -X user@hostname</code>. When you then get the prompt you can just type in <code>firefox</code> or any X application on the remote machine and pipe the visual output to your machine.</p>\n", "commentCount": "1", "comments": [ { "creationDat...
null
null
null
null
null
25785
1
null
2011-02-11T09:53:52.823
84
35914
<p>Will there be a way to disable auto-hide behavior of global application menu in Unity. While I would prefer to have this behavior disabled by default (as it is bad UX), it looks like it's here to stay, so I'm wondering if, as a user, I will be able to turn it off.</p>
10629
787506
2018-04-13T18:53:10.520
2018-04-13T18:53:10.520
Can auto-hide for the application menu be turned off in Unity?
[ "unity", "panel", "appmenu", "menu-bar", "autohide" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>The is suggested in the following bug.\nAs a user you can vote for it.</p>\n\n<p><a href=\"https://bugs.launchpad.net/unity/+bug/732653\">Menus are hidden by default </a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense"...
null
null
null
null
null
25786
1
27210
2011-02-11T10:04:52.937
6
3525
<p><strong>I would like to deactivate the amplification feature on my sound volume slider.</strong> Using any amplification makes the sound really bad with clipping sounds taking over.</p> <p>It's really annoying to have to worry about where the amplification starts/stops when adjusting the slider from my keyboard or through the Gnome panel (sound thingy). I have to open the "Sound preferences" after each time adjusting the volume and ensure that the level is set to 100% unamplified.</p> <p><strong>So can I do this someway easy in Ubuntu 10.10?</strong></p>
8236
null
null
2023-07-15T18:34:52.567
Deactivate volume amplification?
[ "10.10", "sound", "gnome-panel", "soundcard", "volume-control" ]
7
8
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T16:40:26.990", "id": "28308", "postId": "25786", "score": "0", "text": "Why \"just don't do that\" recipe isn't working for you?", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-02-11T16:44:09.017", "id": "28311", "postI...
{ "accepted": true, "body": "<p>Actually, you CAN slide all the way up: when using the indicator applet icon, the max slider IS 100% <strong><em>unamplified</em></strong></p>\n\n<p>To raise it <em>ABOVE</em> 100% (ie, to use <em>amplified</em> levels), you must go Sound Preferences.</p>\n\n<p>So, when using the applet icont, go ahead and dont worry, it wont be amplified.</p>\n\n<p>You can check this yourself: open the Sound Preferences window, and leave it open, visible on the desktop</p>\n\n<p>Now access the indicator apllet icon, and slide up and down the volume level. Compare them (both will slide at the same time), and you will see that, using the applet, you can only go as far as 100% unamplified.</p>\n\n<p>Hope that helps!</p>\n\n<p>(i also had the same concern when i started using Ubuntu.. its a huge relief when you realize you dont have to open Sound Preferences anymore to \"adjust\" it ;)</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-02-20T07:36:59.270", "id": "29980", "postId": "27210", "score": "0", "text": "I don't know about that, I've never messed with Sound Preferences, but going 100% from the indicator applet breaks the sound.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-02-20T11:31:14.007", "id": "30017", "postId": "27210", "score": "1", "text": "@toki, maybe your issue is realted to speakers quality. My laptop also gives bad sound even if its not amplified (like 90% already sounds bad). But the original questioner has a different issue: he was worried about beyond-100% values, the amplification that Sound Preferences allows. He said that 100% works fine. And I answered that the applet icon respect that limit, and dont go above 100%, and amplified values can only be achieved in Sound Preferences.", "userDisplayName": null, "userId": "11015" }, { "creationDate": "2011-02-20T13:38:03.703", "id": "30043", "postId": "27210", "score": "1", "text": "Pardon me, but you are mistaken on both points. First, it's not something to do with my hardware because on Windows I don't detect any distortion in sound with full volume unlike on Ubuntu, and I've experienced the same thing with the laptop I bought recently. Secondly, as you can read in the comments under the question, the questioner clearly mentions that he keeps the sound level at two bars to avoid distortion in reply to my suggestion to do so - I fail to see where he mentioned that it works 100% fine.", "userDisplayName": null, "userId": "814" }, { "creationDate": "2011-02-23T16:26:26.953", "id": "30684", "postId": "27210", "score": "0", "text": "Thanks for your answer @Mestrelion. I've tried your recommendations and it appears that when going over the \"unamplified\" mark, sound becomes unstable, really unstable and begins to crackle/pop almost immediately :(", "userDisplayName": null, "userId": "8236" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-20T06:42:08.907", "id": "27210", "lastActivityDate": "2011-02-20T06:42:08.907", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "11015", "parentId": "25786", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>I always install the pulse audio volume control its official name is \"pavucontrol\", available in the software centre. With Music player playing adjust the playback volume. I find 80% improves the sound as it appears most players, always set their outputs at 100% and this di...
null
null
null
null
null
25788
1
25801
2011-02-11T10:17:03.040
0
93
<p>I have a Samsung Galaxy 5, but the <a href="https://one.ubuntu.com/phones/" rel="nofollow">Ubuntu One phone page</a> reports it as "Other/Unspecified"? How do I add my phone's information?</p>
10609
711
2011-02-11T11:53:02.240
2011-02-11T11:56:15.480
Why does the Ubuntu One website report my phone as "My Phone: Other/Unspecified"?
[ "ubuntu-one" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>That phone information page is merely to give you the right instructions for enabling contact sync on your phone, and the database (which we get from funambol) is by no means complete. Given that you're seeing that page for the first time with your phone already there, it means that you've successfully set up your phone without going via the phone setup webpage (yay for us! the installer works), so you don't need the instructions, so you should be fine.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T11:56:15.480", "id": "25801", "lastActivityDate": "2011-02-11T11:56:15.480", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "711", "parentId": "25788", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>That phone information page is merely to give you the right instructions for enabling contact sync on your phone, and the database (which we get from funambol) is by no means complete. Given that you're seeing that page for the first time with your phone already there, it mea...
null
null
null
null
null
25789
1
null
2011-02-11T10:19:54.813
5
1969
<p>Cramming window controls and window title into the top panel, doesn't really appeal to me, since it looks like it's a permanent fixture, I'm wondering if there is a way to disable this behavior.</p>
10629
235
2011-11-06T18:55:16.103
2012-01-29T20:33:15.353
Is there a way to remove maximized window controls/title from top panel in Unity
[ "unity", "panel", "window-buttons" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-05-02T06:09:38.777", "id": "166003", "postId": "25789", "score": "0", "text": "I'm feeling the same pain. I've opened a bug report here, hoping it will get addressed in 11.10 : https://bugs.launchpad.net/ubuntu/+source/unity/+bug/775346", "userDisplayName": null, ...
null
[ { "accepted": null, "body": "<p>I suppose you could uninstall indicator-appmenu but I've not tried that and removing it is not really a supported configuration in 11.04.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-28T16:37:47.057", "id": "41636", ...
null
null
null
null
null
25790
1
null
2011-02-11T10:29:09.547
4
7120
<p>I just got known that GTK+ 3.0.0 <a href="http://mail.gnome.org/archives/gtk-list/2011-February/msg00031.html" rel="nofollow">has been released</a>.</p> <ul> <li><p>Will Ubuntu 10.10/11.04 come with runtime libraries for GTK+ 3.0? Are these installed by default?</p></li> <li><p>Will Ubuntu have development libraries and header files for compilation of GTK+ 3.0 programs?</p></li> <li><p>When will Ubuntu (as whole) move to GTK 3?</p></li> </ul> <p>I'm mostly concerned about moving <a href="https://launchpad.net/audio-recorder" rel="nofollow">audio-recorder app</a> from GTK+ 2.x to 3.0.</p> <p>References:</p> <ul> <li><a href="http://library.gnome.org/devel/gtk3/3.0/gtk-migrating-2-to-3.html" rel="nofollow">Migrating from GTK+ 2 to GTK+ 3</a> guide</li> <li>GTK+ 3 <a href="http://library.gnome.org/devel/gtk3/3.0/index.html" rel="nofollow">Reference Manual</a>:</li> </ul>
4772
235
2011-02-11T19:59:29.843
2011-12-30T15:08:28.797
When will Ubuntu migrate to GTK+ 3.0?
[ "gtk" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-03-07T11:43:36.980", "id": "32641", "postId": "25790", "score": "0", "text": "how can i know abt the gtk version which ubuntu does have during installation...and do nautilus use gtk..??? \r\n\r\nin what IDE nautilus is written..?", "userDisplayName": "user11965", ...
null
[ { "accepted": null, "body": "<p>It will be available in Natty (11.04):\n<a href=\"https://launchpad.net/ubuntu/+source/gtk+3.0\" rel=\"nofollow\">https://launchpad.net/ubuntu/+source/gtk+3.0</a></p>\n\n<p>Apart from that fact I'm not sure if it is a good idea to rush to a recent version of a library in your...
null
null
null
null
null
25793
1
25810
2011-02-11T10:40:07.603
3
341
<p>Since Opera now support extensions and I use it for my daily use (great integration of Torrent downloader, browser and mail application), will there be an extension or is there any instructions on how to sync clients with Opera and Ubuntu One?</p>
10609
3037
2011-02-11T11:22:59.283
2011-02-11T13:24:54.670
Will there be an Ubuntu One sync extension for the Opera browser?
[ "ubuntu-one", "sync", "contacts", "opera" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>We don't currently have plans to bring contacts sync to Opera, but if someone is interested in building an extension to do that I am happy to provide all the Ubuntu One information that would be needed to do so! If you, or someone you find, wants to make Opera a better citizen on the Ubuntu desktop, that'd be really cool.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-12T01:16:04.737", "id": "28406", "postId": "25810", "score": "0", "text": "I've been interested in creating an extension for a while and it would be great to find a reason to start a project so I can learn more! I would love to have the information needed to create an extension but I cannot promise that it will be done in the near future. But if you would like to give me the information needed, I would be honored :)", "userDisplayName": null, "userId": "10609" }, { "creationDate": "2011-02-13T01:48:47.090", "id": "28606", "postId": "25810", "score": "0", "text": "Excellent. Chase me down on IRC (aquarius) and I'll be happy to chat this over with you!", "userDisplayName": null, "userId": "2387" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T13:24:54.670", "id": "25810", "lastActivityDate": "2011-02-11T13:24:54.670", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2387", "parentId": "25793", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>As far as I know opera does have its own mechanism for sync, or do you need Ubuntu One specific and opera's own is not acceptable choice for you?</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-12T01:13:41.417", "id": "28405...
null
null
null
null
null
25794
1
null
2011-02-11T10:41:49.800
-1
538
<p>I am in server 1. I need to remotely login to server 2 from server 1. Now from server 2 I will run a script that will scp some file to server3.</p> <p>I need to write a script in server 1 that will will automatically remote login from server 1 i.e. it reads password of user@server2 from some file or i can echo password in ssh command. and then it runs the the script in server 2 automatically without any user interference of running it.the automation of scp of server 2 to server 3 has been done in the script that is in server 2. I just need the automation of above mentioned query.</p> <p>Without using expect or ssh-keygen</p>
null
1165986
2023-01-27T21:07:40.673
2023-01-27T21:07:40.673
Automation of remote login such that password of remote machine is read from somewhere
[ "scripts", "remote", "scp" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2011-02-11T11:10:57.010", "id": "28233", "postId": "25794", "score": "0", "text": "dublicate: http://superuser.com/q/244478", "userDisplayName": null, "userId": "3940" }, { "creationDate": "2011-02-11T13:49:11.450", "id": "28260", "postId": "25794", ...
null
[ { "accepted": null, "body": "<p>By using ssh and scp you can use key based authentication instead of passwords. Then you can make this \"automated\" without user interaction which would be the case with password authentication. Some hits about this topic with google:</p>\n\n<p><a href=\"http://www.debuntu.o...
null
null
2014-04-18T02:00:24.983
null
user10631
25799
1
25804
2011-02-11T11:26:52.353
6
933
<p>I was just at a lecture, where I noticed the lecturer using a command (probably aliased) to jump to a specific folder.</p> <p>Example:</p> <pre><code>~/code$ j sciproj ~/projects/sciproj2011/$ </code></pre> <p>This looked quite slick, so I started wondering:</p> <p>Is this a standard utility, and if so, what is the name?</p> <p>I have two theories as to how it works:</p> <ol> <li><p>It can both create, delete and jump to aliases directly from the command-line in the style of the example, without having to set up aliases in a configuration file or script or whatnot manually.</p></li> <li><p>It searches the home directory for a folder matching the name and jumps to it.</p></li> </ol> <p>The second option seems a bit slow, however, so the first would be preferred.</p>
9506
null
null
2014-08-27T16:15:02.083
Quick path jumping
[ "command-line", "software-recommendation", "paths" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T11:54:23.910", "id": "28240", "postId": "25799", "score": "2", "text": "https://github.com/joelthelion/autojump", "userDisplayName": null, "userId": "1543" } ]
{ "accepted": true, "body": "<p>As an addition to sagarchalise's comment:</p>\n\n<p>It's in natty: <a href=\"http://packages.ubuntu.com/natty/autojump\" rel=\"nofollow\">http://packages.ubuntu.com/natty/autojump</a></p>\n\n<p>Should work in older releases as well.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-11T12:34:09.190", "id": "28246", "postId": "25804", "score": "0", "text": "Excellent; looks like the thing he was using.", "userDisplayName": null, "userId": "9506" }, { "creationDate": "2011-02-11T13:02:05.923", "id": "28253", "postId": "25804", "score": "0", "text": "It's not in maverick, is it?", "userDisplayName": null, "userId": "1067" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T12:09:02.047", "id": "25804", "lastActivityDate": "2011-02-11T12:09:02.047", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4469", "parentId": "25799", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>How about this?</p>\n\n<pre><code>function j() { for dir in ~/projects/$@*; do if [ -d $dir ]; then cd \"$dir\"; fi; done ;}\n</code></pre>\n\n<p>It finds the nearest possible match. So say I have a dir listing like this:</p>\n\n<pre><code>~/projects/\n~/projects/apples/\n~/p...
null
null
null
null
null
25800
1
25807
2011-02-11T11:46:00.883
0
864
<p>i have a pc with dual boot - "windows 7 and Ubuntu 10.10". is it possible to run my windows 7 through Ubuntu login? if possible what app should i have and please give my instructions to install and use it. thank you.</p>
6698
7035
2011-06-07T02:47:53.087
2011-06-07T02:47:53.087
How to run preinstalled Windows 7 through Ubuntu logged in system?
[ "windows-7" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Though I am not a windows user, I guess you can do something similar with some kind of virtualization technology. I guess some desktop virtualization software like VirtualBox (or vmware, etc) can be used. However you may have got problems that you want to run the preinstalled windows OS ... I am not sure if it's possible with VirtualBox or similar software, as far as I remember I've read somewhere that it's possible in theory though you will have problems: \"inside\" the virtual machine, win7 will see different hardware \"environment' than it would, if it runs on the \"bare iron\". Some kind of multiple hardware profiles (in windows, I mean) may help. I've just found this, maybe it's useful:</p>\n\n<p><a href=\"http://www.squidoo.com/use-existing-windows-installation-and-apps-in-ubuntu\" rel=\"nofollow\">http://www.squidoo.com/use-existing-windows-installation-and-apps-in-ubuntu</a></p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-02-11T13:12:40.293", "id": "28255", "postId": "25807", "score": "0", "text": "Ok, it's about XP,no idea if the same theory works with win7 ... Maybe it worths a try anyway ...", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T13:39:36.090", "id": "28258", "postId": "25807", "score": "0", "text": "I wouldn't recommend that for Windows 7. Windows Activation is much stricter than it was for Windows XP. An OEM (vendor installed) version of Windows 7 will almost certainly refuse to run as a VM as it's different \"hardware\", and it would probably involve a call to Microsoft to get it working again when booting normally.", "userDisplayName": null, "userId": "3251" }, { "creationDate": "2011-02-11T21:15:01.807", "id": "28370", "postId": "25807", "score": "0", "text": "Ok, I trust you, as I've told, I am not a windows user at all. Anyway it's not possible to use \"hardware profiles\" in win7? Interesting ...", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T22:24:52.860", "id": "28385", "postId": "25807", "score": "1", "text": "I've run W7 Enterprise version from a native partition in VMWare Workstation under Debian. I had to use Enterprise because my company uses a network licensing server to activate the OSes. I've read about the strict hardware change problems with other versions of W7 though. I'm not sure about the legalities, but you might be able to find an activation \"patch\" for W7 which would overcome the problem if you only have a Home edition license for example.", "userDisplayName": null, "userId": "10458" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T12:51:23.167", "id": "25807", "lastActivityDate": "2011-02-11T12:51:23.167", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25800", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Though I am not a windows user, I guess you can do something similar with some kind of virtualization technology. I guess some desktop virtualization software like VirtualBox (or vmware, etc) can be used. However you may have got problems that you want to run the preinstalled...
null
null
null
null
null
25811
1
25812
2011-02-11T13:28:28.767
24
4825
<p>Is there a way to make Chrome/Chromium's notifications use notify-osd instead of the ugly boxes it uses by default?</p>
9494
41
2011-02-16T19:46:16.037
2016-09-09T23:48:33.027
Chrome desktop notifications use notify-osd?
[ "google-chrome", "chromium", "notify-osd" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2016-09-07T00:59:55.273", "id": "1247518", "postId": "25811", "score": "1", "text": "Probably not helpful, but... use Firefox instead of Chrome and you can enjoy native system notifications with [GNotifier](https://addons.mozilla.org/en-US/firefox/addon/gnotifier/).", "use...
{ "accepted": true, "body": "<p>Yeah: <a href=\"https://launchpad.net/chromify-osd\" rel=\"nofollow noreferrer\">Chromify-OSD</a>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/QJx1C.png\" alt=\"enter image description here\"></p>\n\n<p>This can be installed from the <a href=\"https://chrome.google.com/webstore/detail/nmgdlkljbfeeinemfljcbmnkmbeligmn\" rel=\"nofollow noreferrer\">Google Chrome Web Store</a>.</p>\n\n<p>To install it, just go to the webstore and click the \"Add to Chrome\" button - it'll do the rest.</p>\n\n<p>To use it, you'll <em>probably</em> need to restart Chrome, at that point it should be working.</p>\n\n<p>All bugs should be reported to the <a href=\"https://launchpad.net/chromify-osd\" rel=\"nofollow noreferrer\">launchpad.net project page</a> - for more on reporting bugs, take a look at this question: <a href=\"https://askubuntu.com/questions/5121/how-do-i-report-a-bug\">How do I report a bug?</a></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-11T21:15:59.603", "id": "28371", "postId": "25812", "score": "0", "text": "Thanks for the link, but as fluteflute said, any help in installing it?", "userDisplayName": null, "userId": "9494" }, { "creationDate": "2011-02-17T09:03:40.117", "id": "29432", "postId": "25812", "score": "0", "text": "You just have to go to the site mentioned and click install.", "userDisplayName": null, "userId": "5149" }, { "creationDate": "2011-11-02T19:41:28.967", "id": "84812", "postId": "25812", "score": "0", "text": "Hm, it does not appear to work. I've installed it, restarted Chromium for good measure, and went to http://www.html5rocks.com/en/tutorials/notifications/quick/ to test. I get ugly white boxes in the lower-right screen corner instead of pretty black OSD bubbles in the upper-right corner.", "userDisplayName": null, "userId": "136" }, { "creationDate": "2011-11-02T19:43:01.087", "id": "84813", "postId": "25812", "score": "0", "text": "Oh, silly me TL;DRed on the description in the web store. \"This is a first release which does not support HTML5 notifications (but will in next release, view LaunchPad project page)\". What *other* Chromium notifications are there?", "userDisplayName": null, "userId": "136" }, { "creationDate": "2012-07-17T08:03:07.013", "id": "201601", "postId": "25812", "score": "0", "text": "There is a new fork which is recently updated: [LinuxNativeNotification](https://github.com/tualatrix/LinuxNativeNotification) featured on [OMGubuntu](http://www.omgubuntu.co.uk/2012/05/how-to-get-chrome-to-use-ubuntu-notifications)", "userDisplayName": null, "userId": "20334" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-11T13:35:49.923", "id": "25812", "lastActivityDate": "2011-08-18T12:20:44.103", "lastEditDate": "2017-04-13T12:25:10.160", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "449", "parentId": "25811", "postTypeId": "2", "score": "19" }
[ { "accepted": true, "body": "<p>Yeah: <a href=\"https://launchpad.net/chromify-osd\" rel=\"nofollow noreferrer\">Chromify-OSD</a>.</p>\n\n<p><img src=\"https://i.stack.imgur.com/QJx1C.png\" alt=\"enter image description here\"></p>\n\n<p>This can be installed from the <a href=\"https://chrome.google.com/web...
null
null
null
null
null
25813
1
25816
2011-02-11T13:49:42.850
29
87644
<p>When i use the cp or move command in a terminal window, i'm currently with bash in a certain folder like this.</p> <pre><code>NES@server:~/Desktop/dir1$ </code></pre> <p>And now i wanna copy a file from here <code>~/anotherdir/dir2</code> into the current chosen folder in bash (dir1) i would use the command</p> <pre><code>cp ~/anotherdir/dir2/file ~/Desktop/dir1 </code></pre> <p>does a shortcut string exist to refer to the current chosen directory? So that in this example i don't have to provide the full path to the target dir, but the command knows it should use the current chosen directory in bash? i.e. as ~ stands for the home directory?</p>
7155
8844
2011-02-11T15:49:26.447
2021-11-23T14:31:07.983
Commandline shortcut for current directory similar to ~ for home directory?
[ "bash", "command-line", "shortcuts" ]
8
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Your current directory is <code>.</code> . So, <code>cp /foo/fam/foo .</code> copies the file to your current directory.</p>\n\n<p>The analogous construction for \"one directory up,\" or the parent directory of your current working directory, is two dots, i.e., <code>..</code> . (Thanks @djeikyb .) </p>\n\n<p>So, from <code>/usr/house/firstfloor/basement</code> , cd <code>..</code> takes you one level up to <code>/usr/house/firstfloor</code>. </p>\n\n<p>In the same example (starting from <code>/usr/house/firstfloor/basement</code>, the command <code>cd ../..</code> would take you to <code>/usr/house</code> . </p>\n\n<p>You can also use <code>$PWD</code> with <code>echo</code> to get your current directory: </p>\n\n<pre><code>echo $PWD\n</code></pre>\n\n<p>Incidentally, <code>$OLDPWD</code> will give you your previous directory. (Which in <code>bash</code> you can also reach by typing <code>cd -</code> .)</p>\n", "commentCount": "11", "comments": [ { "creationDate": "2011-02-11T14:04:35.197", "id": "28262", "postId": "25816", "score": "3", "text": "Good a time as any to learn that `..` means one directory lower. Can be used multiple times, ie `cd ../..`", "userDisplayName": null, "userId": "8515" }, { "creationDate": "2011-02-11T14:13:01.033", "id": "28266", "postId": "25816", "score": "1", "text": "@djeikyb -- you meant above, I'm sure. So, cd `..` will take you to the parent directory of your current directory. Good point.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T14:23:07.350", "id": "28271", "postId": "25816", "score": "0", "text": "Or is the only the use of 'parent directory' by consensus, and 'up' and 'down' are not the standard conventions I thought they were?", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T14:24:16.850", "id": "28274", "postId": "25816", "score": "1", "text": "And I'd mention `popd` and `pushd` but that's turning into an essay.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T19:46:14.663", "id": "28353", "postId": "25816", "score": "3", "text": "One small difference to remember: `.` and `..` are filesystem-level, so any program will accept them. On the other hand, shortcuts such as `~` and `~-` are part of the shell.", "userDisplayName": null, "userId": "1325" }, { "creationDate": "2011-02-11T20:35:44.120", "id": "28360", "postId": "25816", "score": "0", "text": "You can also always brute force it by using something like this: `cp something/else \"\\`pwd\\`\"`. But that's silly.", "userDisplayName": null, "userId": "6645" }, { "creationDate": "2011-02-11T22:11:38.010", "id": "28378", "postId": "25816", "score": "2", "text": "+1 for `cd -`; didn't know it existed.", "userDisplayName": null, "userId": "2337" }, { "creationDate": "2011-02-21T09:15:21.410", "id": "30197", "postId": "25816", "score": "0", "text": "@jgbelacqua I think you are right on the standard convention. Occasionally I fall into my original (wrong) imagining of `/` as the root of a tree, with many branches of directories growing upwards. Of course the root metaphor really refers to the base stem and its many downward veins. Oops.", "userDisplayName": null, "userId": "8515" }, { "creationDate": "2011-02-21T18:14:56.427", "id": "30256", "postId": "25816", "score": "0", "text": "@djeikyb And yet the root to leaf metaphor does make sense, and is used in other settings. But 'sub'-directory is certainly used in English as convention. And I see that this appears normal in French, Spanish, German, Danish at least (going on cognates). Maybe super- or sur-directory just didn't work in English. I need someone to point me to a filesystem history link. :P", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-21T22:13:56.190", "id": "30315", "postId": "25816", "score": "0", "text": "Haha, super-directory just doesn't have a ring to it. The parent-child metaphor works well; clearly emphasises up vs down.", "userDisplayName": null, "userId": "8515" }, { "creationDate": "2016-02-11T23:38:59.677", "id": "1087673", "postId": "25816", "score": "0", "text": "so then: ----> cp textfile.txt ./newDir ----> will copy the textfile which exists in the current directory into the newDir subdirectory?", "userDisplayName": null, "userId": "453324" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-11T13:55:57.830", "id": "25816", "lastActivityDate": "2016-10-23T16:55:12.060", "lastEditDate": "2016-10-23T16:55:12.060", "lastEditorDisplayName": null, "lastEditorUserId": "158442", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "25813", "postTypeId": "2", "score": "49" }
[ { "accepted": null, "body": "<p>You can use $(pwd), it will resolve to the output from the pwd command.</p>\n\n<p>Example:</p>\n\n<pre><code>echo $(pwd)\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-11T15:52:13.053", "id": "28293", "po...
null
null
null
null
null
25822
1
25831
2011-02-11T14:25:33.913
1
8712
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/6200/how-do-i-open-visio-files">How do I open Visio files?</a> </p> </blockquote> <p>Can anyone suggest a program which can open MS Visio .vsd files for editing in Ubuntu?</p>
9302
-1
2017-04-13T12:23:09.107
2013-11-29T17:01:48.893
viewing/editing .vsd files in ubuntu
[ "visio" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>As far as I know (and I've researched this for somebody else before), there are no desktop apps that can open Visio VSDs on Linux. Even Visio under Wine seems to struggle.</p>\n\n<p>However, there is <a href=\"http://www.zamzar.com/\" rel=\"nofollow\">Zamzar</a>. It's a webservice that converts lots of documents. You just have to give them the file, tell them what you want in return and give them an email address. Might sound fishy but they're under UK privacy law, which despite our government, is actually pretty strict. <a href=\"http://www.zamzar.com/privacy.php\" rel=\"nofollow\">Their privacy policy</a> explicitly says they don't sell on your details or documents.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T15:12:00.010", "id": "25831", "lastActivityDate": "2011-02-11T15:12:00.010", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "25822", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>As far as I know (and I've researched this for somebody else before), there are no desktop apps that can open Visio VSDs on Linux. Even Visio under Wine seems to struggle.</p>\n\n<p>However, there is <a href=\"http://www.zamzar.com/\" rel=\"nofollow\">Zamzar</a>. It's a webse...
null
null
2011-02-11T16:44:49.067
null
null
25823
1
null
2011-02-11T14:29:21.117
6
4124
<p>i.e. i have a file called Porträt.pdf.</p> <p>But the filename was created with a charsets which isn't properly shown in ubuntu like the following example.</p> <p><img src="https://i.stack.imgur.com/PvLOc.png" alt="enter image description here"></p> <p>What would be the best practice to rename such chars in filenames, when you have several filenames and you can't use this special char because of it's coding in terminal commands?</p>
7155
null
null
2013-05-09T00:55:02.970
Best practice to replace unknown chars from unknown charsets in filenames?
[ "character-set", "rename" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I guess that modern OSes often chooses UTF-8 for encoding file names. In this sense it's not a problem to have non-US characters in the file names. What you have experienced is probably the result of a file name which was created with non-UTF-8 encoding. It's quite hard to te...
null
null
null
null
null
25826
1
25827
2011-02-11T14:55:05.483
1
1963
<p>I run a command from my computer:</p> <pre><code>ssh user@server-name "df -hP | egrep '(/home|/cors)'" </code></pre> <p>the problem is that i get 3 more rows:</p> <pre><code>tput: No value for $TERM and no -T specified tput: No value for $TERM and no -T specified /etc/bash.bashrc.local: line 9: HISTSIZE: readonly variable </code></pre> <p>What should I do, to not get this 3 rows?</p> <p>Br, Wolfy</p>
3921
null
null
2011-02-11T16:28:33.357
Execute commands on remote computer
[ "ssh", "command-line" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You say you <strong><em>also</em></strong> get these rows, so I assume you get the output you want, along with these stderr messages. You could just redirect the stderr parts to <code>/dev/null</code> like this:</p>\n\n<pre><code>ssh user@server-name \"df -hP | egrep '(/home|/cors)' 2&gt;/dev/null\"\n</code></pre>\n\n<p>or </p>\n\n<pre><code>ssh user@server-name \"df -hP 2&gt;/dev/null | egrep '(/home|/cors)'\"\n</code></pre>\n\n<p>Depending on what's making the error.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-15T07:44:17.743", "id": "29085", "postId": "25827", "score": "0", "text": "ssh user@server-name \"df -h | egrep '(/home|/cors)'\" 2>/dev/null solved the problem... tnx", "userDisplayName": null, "userId": "3921" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T15:05:03.390", "id": "25827", "lastActivityDate": "2011-02-11T15:05:03.390", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "25826", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>You say you <strong><em>also</em></strong> get these rows, so I assume you get the output you want, along with these stderr messages. You could just redirect the stderr parts to <code>/dev/null</code> like this:</p>\n\n<pre><code>ssh user@server-name \"df -hP | egrep '(/home|...
null
null
null
null
null
25828
1
25836
2011-02-11T15:05:19.120
2
303
<p>I am still fairly new to linux hosting and am currently working on some policies for our production ubuntu servers. The servers are public facing webservers with ssh access from the public network and database servers with ssh access from the internal private network. We are a small hosting company so in the past with windows servers we used one user account and one password that each of us used internally. Anyone outside of the company who needed to access the server for FTP or anything else had their own user account. Is that okay to do in the linux world, or would most people recommend using individual accounts for each person who needs to access the server?</p>
9270
null
null
2011-02-11T15:17:32.340
Proper policy for user setup
[ "users" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It's mater of taste, however from security reasons, I think it's better to have more users. Why? Because even \"internal workers\" of your company may have different works so they need different privileges. It's always better to give only the minimal rights for a given function/program/user/etc which is just enough. If you have only one user for more people, you may need to give more rights, so many people using that single user will have more rights than they need. It can be an issue if that account is cracked, or even if a worker make a mistake like removing files, etc, many examples can be mentioned. Also the worker itself can be an enemy (it's quite usual think in the IT ground ...) so it's better to separate people/their rights etc. I guess it's not an Ubuntu specific topic, it's about all OSes. That's also a reason that Ubuntu - unlike many other Linux and/or UNIX distributions - don't have root user by default (cannot be logged in, since no valid password): it's quite dangerous to log in as root, since you (or anybody who managed to log in ...) have \"unlimited\" access. It's always better to have more fine tuned security system than \"all or nothing\".</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-11T16:53:32.290", "id": "28314", "postId": "25836", "score": "0", "text": "Thanks for the answer. I know it is more of a general discussion topic, but I am still new to Linux OSes, especially Ubuntu and would like to try to find out what other Ubuntu people do.", "userDisplayName": null, "userId": "9270" }, { "creationDate": "2011-02-11T16:55:43.923", "id": "28317", "postId": "25836", "score": "0", "text": "You're welcome. However as I've stated, I think it's not a Linux specific topic, but it's a more general one, \"minimal needed privileges\" is a very good advice for every systems :)", "userDisplayName": null, "userId": "10579" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T15:17:32.340", "id": "25836", "lastActivityDate": "2011-02-11T15:17:32.340", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25828", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It's mater of taste, however from security reasons, I think it's better to have more users. Why? Because even \"internal workers\" of your company may have different works so they need different privileges. It's always better to give only the minimal rights for a given functi...
null
null
null
null
null
25829
1
25832
2011-02-11T15:07:56.367
1
796
<p>I have a user who's home directory is a Mercurial repository.</p> <p>Mercurial notified me that there were 2 new unversioned files in my repository. <code>.bash_history</code> and <code>.cache/motd.legal-displayed</code>. </p> <p>I assume bash_history is the history of bash commands for my user. I have no idea what the other is.</p> <p>I don't want these files to be versioned by Mercurial, are they safe to just delete, or will they come back, or mess something up? Can they be moved to somewhere else? Or do I have to add them to my .hgignore file?</p>
7499
null
null
2011-02-11T16:10:11.727
.bash_history and .cache
[ "bash", "files", "mercurial" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Would it be a problem to use a directory inside the home as Mercurial repo, and not the home directory itself? I just ask this, since it's a bit unfortunate: like bash creates .bash_history, some commands can have there config files written into the home, so you have to fight with those as well, whenever you use some commands/utils of these kind. </p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-02-11T15:17:11.203", "id": "28284", "postId": "25832", "score": "0", "text": "Not sure, the reason why this is, is because it is a website, and the website is under version control, and the users home directory is set to this for FTP.", "userDisplayName": null, "userId": "7499" }, { "creationDate": "2011-02-11T15:24:36.953", "id": "28286", "postId": "25832", "score": "1", "text": "I see, the question if you want/can modify FTP to access that separated directory inside the user's home as the \"ftp root\" (and/or the website too?), I think it's a more clean solution to start with the basis, than using workarounds like putting .bash_history in .hgignore or so. As an internet system engineer since 10 years, I can tell that every time I want only a workaround (and not rethinking the concept) will make me pay later quite badly ... Anyway for sure you can do whatever you want, I only wanted to share my own experiences and opinion about the topic now.", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T15:31:19.043", "id": "28288", "postId": "25832", "score": "0", "text": "Thanks, that makes sense and is really why I posted this question rather than just adding them to .hgignore, can you point me someone that explains how to make the users home directory, and the users ftp root, separate? Thanks.", "userDisplayName": null, "userId": "7499" }, { "creationDate": "2011-02-11T16:02:09.183", "id": "28297", "postId": "25832", "score": "0", "text": "What kind of ftp server are you using?", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T18:28:10.423", "id": "28336", "postId": "25832", "score": "0", "text": "@LGB I am using `vsftpd`", "userDisplayName": null, "userId": "7499" }, { "creationDate": "2011-02-11T18:42:16.080", "id": "28341", "postId": "25832", "score": "0", "text": "I haven't ever used vsftpd. It would be the best to set up a virtual user (as far as I know it supports that) with the home directory set to the directory inside the \"real UNIX user\", which holds your repo. Then you can have even different username/passwd for that FTP, and also for the UNIX shell access (login, via ssh, or whatever). I like this solution more, then you have separated control over the FTP \"part\" and the shell level access.", "userDisplayName": null, "userId": "10579" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T15:12:04.560", "id": "25832", "lastActivityDate": "2011-02-11T15:12:04.560", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25829", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Would it be a problem to use a directory inside the home as Mercurial repo, and not the home directory itself? I just ask this, since it's a bit unfortunate: like bash creates .bash_history, some commands can have there config files written into the home, so you have to fight...
null
null
null
null
null
25833
1
25846
2011-02-11T15:12:30.140
15
26828
<p>I have a desktop install of ubuntu, not server. But I am running a localhost LAMP stack for development. Is there a simple mail server I can install so that PHP's sendmail works? </p> <p>Ideally it will have few options and minimal configuration, and preferably a GUI rather than CL interface.</p> <p>EDIT to add - do I use the Local Only configuration to test php mail()? <img src="https://i.stack.imgur.com/d556N.png" alt="enter image description here"></p>
2664
2664
2011-02-11T18:31:25.363
2017-11-19T21:38:43.907
Is there a simple mail server I can install?
[ "mail", "lamp" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The easiest one I've ever installed is postfix with dovecot. There is a dovecot-postfix package, but it also looks like the Ubuntu server team has packaged this as mail-stack-delivery :</p>\n\n<pre><code>Description: mail server delivery agent stack provided by Ubuntu server team\n Ubuntu's mail stack provides fully operational delivery with\n safe defaults and additional options. Out of the box it supports IMAP,\n POP3 and SMTP services with SASL authentication and Maildir as default\n storage engine.\n</code></pre>\n\n<p>Looking in the Software Center, I see that dovecot-postfix is present as a meta-pacakge (but I don't know if it will be called that a release or two from now). But that is what I'd recommend -- it's straightforward and secure. </p>\n\n<p>From the command line on my 10.10 desktop, I installed this via apt-get : </p>\n\n<p><code>sudo apt-get install dovecot-postfix</code></p>\n\n<p>Give it a shot if you like, and if you have questions, just start a new post.</p>\n\n<hr>\n\n<p>Here's a oldish (2009) <a href=\"https://ubuntuserver.wordpress.com/2009/02/13/an-improved-mail-server-stack-in-jaunty-dovecot-and-postfix-integration/\" rel=\"nofollow\">Ubuntu Server Blog post</a> that gives some of the details on the dovecot-postfix configuration. </p>\n\n<p>I'm trying to find out more information on the current status of Ubuntu-centric mailserver projects. Right now I'm not finding much more than a <a href=\"https://wiki.ubuntu.com/MaverickServerMoreMailIntegration\" rel=\"nofollow\">May 2010 wiki post</a> about making anti-spam/virus integration easier. </p>\n", "commentCount": "6", "comments": [ { "creationDate": "2011-02-11T17:07:57.893", "id": "28318", "postId": "25846", "score": "1", "text": "Why do you want to use Dovecot as well? It's a POP3/IMAP server. Unless someone wants to receive mails too and give the ability to the user to access them via POP3/IMAP, it's not needed. Only one thing when it can be useful: postfix can use dovecot's auth daemon to use as authentication backend for SMTP authentication. However I think it's not needed for PHP's mail(), unless someone has its own \"manually written\" mailing solution for PHP which involves even SMTP authentication in case of mail submission. In other cases, simply \"postfix\" package should be enough.", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T17:27:03.397", "id": "28322", "postId": "25846", "score": "0", "text": "I know it was easily configured, and I installed it for the auth and security features, as you mentioned. I've installed it and it works, whereas I have not installed just postfix by itself on an Ubuntu system, so I can't personally vouch for that.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T18:30:16.567", "id": "28338", "postId": "25846", "score": "0", "text": "@jgbelacqua, so I decided to give your version a shot. Since this is strictly a dev environment, and all I want to do is test php mail() functionality, would I use the Local configuration? (I've added a screenshot of the config screen to my original post.)", "userDisplayName": null, "userId": "2664" }, { "creationDate": "2011-02-11T18:30:46.643", "id": "28339", "postId": "25846", "score": "0", "text": "We use postfix at our ISP where I work, but of course it's not the scale of \"simple mail server for PHP mail() only\" :)", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T19:57:25.053", "id": "28355", "postId": "25846", "score": "0", "text": "@Emmy You should be able to use 'internet site' for testing.", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-11T22:21:01.733", "id": "28383", "postId": "25846", "score": "1", "text": "@jgbelacqua - thanks. It worked! I had to change the protocol setting from sendmail to just plain mail (in my php code) but it did send just fine.", "userDisplayName": null, "userId": "2664" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T16:26:18.770", "id": "25846", "lastActivityDate": "2011-02-11T20:21:53.083", "lastEditDate": "2011-02-11T20:21:53.083", "lastEditorDisplayName": null, "lastEditorUserId": "8844", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "25833", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Well, GUI or CL interface for a mail server is not as important question, since you don't need UI for a mail server anyway, only at for initial configuration (ok, and maybe at times when there are configuration changes like relayhost, etc, but it's quite rare situation with a...
null
null
null
null
null
25838
1
25841
2011-02-11T15:41:42.343
2
2877
<p>I just learned there are several ways to transfer files between Windows on two computers from <a href="http://windows.microsoft.com/en-US/windows-vista/File-sharing-essentials" rel="nofollow">here</a>. I was wondering </p> <ol> <li>what are the possible ways to transfer files between Ubuntus on two computers? And between a Ubuntu 8.10 computer and a Windows-7 computer, or between a Ubuntu 10.10 and a Windows-xp?</li> <li>Which way requires minimum extra hardwares and which way can achieve the highest transfer speed?</li> </ol> <p>Thanks and regards!</p> <p>PS: I have a rounter.</p>
1471
null
null
2011-02-11T19:01:59.277
What are ways for file transfer between computers
[ "windows", "file-sharing" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Between Linux/UNIX boxes, ssh/scp is quite good solution, it also provide you an encrypted file transfer. Note, that with \"sshfs\" (there is an ubuntu package called this, you can install it) you can even \"mount\" (with FUSE, but it's not important to know) the remote directory, and you can read/write then, as it was a local filesystem, you don't need to copy files \"manually\" each time. I even use the machine in the other part of the country, with sshfs to play videos, so I don't need to \"download\" them first (well, if the network bandwidth is enough for this). For windows, you can have the usual \"shares\" and you can mount as CIFS.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-11T15:56:57.697", "id": "28296", "postId": "25841", "score": "0", "text": "With gvfs you don't need `sshfs`. Just launch nautilus, hit Ctrl+L, put `sftp://user@host:/path` and press enter.", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-02-11T16:05:33.033", "id": "28299", "postId": "25841", "score": "1", "text": "Yes, but using sshfs it's much \"deeper\" thing. Using gvfs you only have that file system available for programs using gvfs. With sshfs it will work with every single softwares which uses file system. I more like universal solutions than others which only work in \"special cases\". For sure, if you need only nautilus for file browsing, it's quite OK (and maybe even simplier) to do that. However personally, I like to mount my home on the remote machine at boot time, so I can access it every time, with every softwares. [gfvs can be mounted with fuse btw, but it's another story :)]", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T23:13:53.390", "id": "28397", "postId": "25841", "score": "0", "text": "I meant with this: you can have your gvfs solution, but how work in shell with those files? sshfs give you a filesystem level access on the syscall level, so it's universal, everybody is happy, end of story :) :)", "userDisplayName": null, "userId": "10579" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T15:54:10.687", "id": "25841", "lastActivityDate": "2011-02-11T15:54:10.687", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25838", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>My favourite is through ssh. You can use the fish:// handler to achieve file management and sharing through via ssh both in dolphin (in KDE) or nautilus (in GNOME). Also you'd be able to add a \"shortcut\" to shared folders in the Ubuntu menu, clicking on \"Resource\" and the...
null
null
null
null
null
25849
1
25895
2011-02-11T16:33:05.193
4
1185
<p>So I'm sure you've heard the song before, but after trying to sync my notes with Ubuntu One(on 10.10 AMD64) I get "Could not synchronize notes. Check the details below and try again." Of course the problem is that there are no details and trying again doesn't help. So I ran <code>tomboy -debug</code> and compared my error to any thing I could find about similar problems (such as the post <a href="https://bugs.launchpad.net/ubuntu/+source/tomboy/+bug/575937" rel="nofollow">here</a>) but found nothing useful.</p> <p>Any way here's my first error, I got this using preferences>synchronization>Ubuntu_one</p> <pre><code>[ERROR 21:08:42.271] Synchronization failed with the following exception: String was not recognized as a valid DateTime. at System.DateTime.Parse (System.String s, IFormatProvider provider, DateTimeStyles styles) [0x00000] in &lt;filename unknown&gt;:0 at System.DateTime.Parse (System.String s, IFormatProvider provider) [0x00000] in &lt;filename unknown&gt;:0 at System.DateTime.Parse (System.String s) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.NoteInfo.ParseJson (Hyena.Json.JsonObject jsonObj) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.UserInfo.ParseJsonNoteArray (Hyena.Json.JsonArray jsonArray) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.UserInfo.ParseJsonNotes (System.String jsonString, System.Nullable`1&amp; latestSyncRevision) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.UserInfo.GetNotes (Boolean includeContent, Int32 sinceRevision, System.Nullable`1&amp; latestSyncRevision) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.WebSyncServer.GetNoteUpdatesSince (Int32 revision) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.Sync.SyncManager.SynchronizationThread () [0x00000] in &lt;filename unknown&gt;:0 </code></pre> <p>The next thing I tried was using preferences>synchronization>tomboy_web with the default 'http://one.ubuntu.com/notes/' and got the same error plus one more.</p> <pre><code>[ERROR 21:12:31.949] System.ObjectDisposedException: The object was used after being disposed. at System.Net.HttpListener.CheckDisposed () [0x00000] in &lt;filename unknown&gt;:0 at System.Net.HttpListener.EndGetContext (IAsyncResult asyncResult) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.WebSyncPreferencesWidget.&lt;OnAuthButtonClicked&gt;m__1 (IAsyncResult localResult) [0x00000] in &lt;filename unknown&gt;:0 [ERROR 21:13:19.245] Synchronization failed with the following exception: String was not recognized as a valid DateTime. at System.DateTime.Parse (System.String s, IFormatProvider provider, DateTimeStyles styles) [0x00000] in &lt;filename unknown&gt;:0 at System.DateTime.Parse (System.String s, IFormatProvider provider) [0x00000] in &lt;filename unknown&gt;:0 at System.DateTime.Parse (System.String s) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.NoteInfo.ParseJson (Hyena.Json.JsonObject jsonObj) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.UserInfo.ParseJsonNoteArray (Hyena.Json.JsonArray jsonArray) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.UserInfo.ParseJsonNotes (System.String jsonString, System.Nullable`1&amp; latestSyncRevision) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.Api.UserInfo.GetNotes (Boolean includeContent, Int32 sinceRevision, System.Nullable`1&amp; latestSyncRevision) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.WebSync.WebSyncServer.GetNoteUpdatesSince (Int32 revision) [0x00000] in &lt;filename unknown&gt;:0 at Tomboy.Sync.SyncManager.SynchronizationThread () [0x00000] in &lt;filename unknown&gt;:0 </code></pre> <p>I Have also tried removing then re-adding My computer from my Ubuntu One account, but that did not help either. The only other Thing I have noticed is that under system>preferences>ubuntu one >services, "Notes" is not listed as a service. I don't know if this is normal or not. Thanks for any help and please let me know if anything is confusing. </p>
10611
235
2011-02-12T01:11:12.253
2011-10-17T11:54:14.397
Tomboy error while tring to sync with Ubuntu one; Can anyone help?
[ "10.10", "ubuntu-one", "sync", "tomboy" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T23:02:11.537", "id": "28394", "postId": "25849", "score": "1", "text": "This shouldn't be happening. Could you please [file a bug](https://bugs.launchpad.net/ubuntu/+source/tomboy/+filebug?field.title=Another+Tomboy+error+while+tring+to+sync+with+Ubuntu+one)?", ...
{ "accepted": true, "body": "<p>So for the time being My notes are syncing again. Turns out there was <a href=\"https://bugs.launchpad.net/ubuntuone-servers/+bug/709378\" rel=\"nofollow\">Bug</a> reported on launchpad that was the same as mine. The fix was some what annoying, but all I did was back up my local notes, delete all notes from the U1 server,restart tomboy, and try syncing again. It seems that editing a note from the U1 web interface can cause the errors above.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-30T19:53:51.827", "id": "51376", "postId": "25895", "score": "1", "text": "It didn't work for me.\nI've removed and readded computer from account and it doesn't help too before I tried to remove my notes from Ubuntu One site.\nWhat was helpful for me - cleaning and readding sync preferences in Tomboy. Problem began on laptop with 10.10 when I've installed 11.04 Beta 1 on PC. Upgrading laptop's Ubuntu to 11.04 release didn't help. Cleaning sync preferences did.", "userDisplayName": "user15723", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-11T23:47:06.350", "id": "25895", "lastActivityDate": "2011-04-30T21:04:55.557", "lastEditDate": "2011-04-30T21:04:55.557", "lastEditorDisplayName": null, "lastEditorUserId": "1992", "ownerDisplayName": null, "ownerUserId": "10611", "parentId": "25849", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>So for the time being My notes are syncing again. Turns out there was <a href=\"https://bugs.launchpad.net/ubuntuone-servers/+bug/709378\" rel=\"nofollow\">Bug</a> reported on launchpad that was the same as mine. The fix was some what annoying, but all I did was back up my lo...
null
null
null
null
null
25856
1
25858
2011-02-11T17:15:16.867
4
4941
<p>Under Windows one of my favorite software packages was <a href="http://cFosSpeed" rel="nofollow">cFosSpeed</a>, a traffic shaping tool. It yields major performance improvements when, for example, having a video conversation while downloading a torrent in the background.</p> <p>Is there an alternative for this under Ubuntu?</p>
2192
866
2011-02-11T17:28:39.300
2016-12-26T02:37:42.467
Traffic shaping (like cFosSpeed)?
[ "software-recommendation", "internet" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The Linux kernel itself has these capabilities, but for sure, it's not trivial to set up for people not familiar with these in-deep stuffs (using the command line oriented \"tc\" command which can manipulate the traffic control capabilities of the Linux kernel). I am not sure that you asks about an easy-to-use GUI, or you need only the theory. Maybe this helps:</p>\n\n<p><a href=\"http://lartc.org/wondershaper/\" rel=\"nofollow\">http://lartc.org/wondershaper/</a></p>\n\n<p>It has at least a script, so you don't need to reinvent the wheel too much :)</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-11T18:11:58.300", "id": "28332", "postId": "25858", "score": "0", "text": "What I'm looking for is some easy-to-use traffic shaping program. It does not necessarily need to have a gui :).", "userDisplayName": null, "userId": "2192" }, { "creationDate": "2011-02-11T18:28:22.840", "id": "28337", "postId": "25858", "score": "0", "text": "Ok, then you try to use this \"wondershaper\", it's a script, but easy to use, maybe some parameters need to be set up first (in the script itself) but otherwise I don't think that it's hard to use ...", "userDisplayName": null, "userId": "10579" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T17:22:32.083", "id": "25858", "lastActivityDate": "2011-02-11T17:22:32.083", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25856", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>The Linux kernel itself has these capabilities, but for sure, it's not trivial to set up for people not familiar with these in-deep stuffs (using the command line oriented \"tc\" command which can manipulate the traffic control capabilities of the Linux kernel). I am not sure...
null
null
null
null
null
25860
1
null
2011-02-11T17:10:05.960
1
1196
<p>Immediately after I start the <code>./qt-sdk-linux-x86-opensource-2010.05.1.bin</code> setup and press submit, I get a "Segmentation fault" in the Terminal. What should I do?</p>
null
1067
2011-02-12T09:28:59.537
2020-09-10T17:30:32.003
Qt-sdk Setup causes Segmentation Fault
[ "qt" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T17:19:16.953", "id": "28325", "postId": "25860", "score": "0", "text": "It's something about a segmentation error during setup... but I think english would be better :D", "userDisplayName": "Skurmedel", "userId": null }, { "creationDate": "2011-02-11...
null
[ { "accepted": null, "body": "<p>You probably don't need to install the \"official\" Qt SDK in order to do Linux Qt development. You can install the Qt development libraries (<code>libqt4-dev</code>, etc.) and programs (e.g. Qt creator) from within the Ubuntu repositories. If you're trying to compile your ...
null
null
null
null
NekitoSP
25861
1
null
2011-02-11T17:48:11.207
3
207
<p>I rebooted the hard way after my system jammed again because FF eats all the ram. (that's a different problem)</p> <p>I've always gotten away with it, but not this time.</p> <p>The system came up ok BUT it absolutely refuses to log onto the local house wifi net. I know the net is ok as the Windows box I'm writing this on is on it right now.</p> <p>I deleted the connection and rentered the password but it will not go on. <code>/var/lib/NetworkManager/NetworkManager.state</code> says everything is turned on.</p> <p>I know this is my fault but I'd really like to get back on the net. The machine is a Toshiba Satellite. </p> <p>Any suggestions?</p>
10649
235
2011-02-12T20:52:06.493
2011-02-12T22:02:18.010
Wifi won't enter working net after hard reboot
[ "10.10", "networking", "wireless" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T22:00:23.000", "id": "28375", "postId": "25861", "score": "0", "text": "Can't you *see* wireless networks or *connect* to a wireless network? It's an important difference.", "userDisplayName": null, "userId": "6969" }, { "creationDate": "2011-02-11T2...
null
[ { "accepted": null, "body": "<p>Some troubleshooting steps :</p>\n\n<p>Open a terminal and run <code>tail -f /var/log/kern.log</code>, then try connecting to your terminal. On a successful authentication, you should see something like this :</p>\n\n<pre><code>Feb 12 21:45:37 GroovyTosh kernel: [19329.56023...
null
null
null
null
null
25862
1
26387
2011-02-11T17:55:53.117
19
43102
<p>I can listen to view the video with built-in audio (ac3) and listen to the audio track as regular sound file, but how to do these same time? </p> <p>Can't see such options in Totem, Kplayer, VLC, KMplayer, Gnome-Mplayer.</p> <p>Also I can't find how to do this using mplayer, though I may be lost in its huge man file.</p> <p>Thanks.</p>
635
635
2011-02-14T20:10:44.247
2016-07-30T18:02:32.413
How to view video file with external ac3 audio track?
[ "video", "sound", "video-player", "mplayer" ]
7
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>As workaround for other possible readers of this question.</p>\n\n<p>Used advices from <a href=\"https://askubuntu.com/questions/12038/add-an-audio-file-to-and-mkv-video\">this thread</a> to add the sound track into the video. This works perfectly.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-14T20:11:44.713", "id": "26387", "lastActivityDate": "2011-02-14T20:11:44.713", "lastEditDate": "2017-04-13T12:25:10.107", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "635", "parentId": "25862", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>First install smplayer:</p>\n\n<pre><code>sudo apt-get install smplayer\n</code></pre>\n\n<p>Then open the video file and select audio > load external audio file</p>\n\n<p><img src=\"https://i.stack.imgur.com/w9Phv.png\" alt=\"enter image description here\"></p>\n", "comm...
null
null
null
null
null
25864
1
25869
2011-02-11T18:37:09.917
0
2189
<p>for some reason the Google Chrome I installed from the Ubuntu Software Centre is not working. Version number: 9.0.597.94-r73967 (google-chrome-stable). What can be wrong?</p> <p>Also, what exactly is Chromium web browser? What's the difference between the two. Firefox is working fine, but I prefer Google Chrome.</p>
10652
3037
2011-02-11T19:58:29.997
2011-02-11T20:27:01.567
Google Chrome not working
[ "10.10", "google-chrome" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2011-02-11T19:31:20.850", "id": "28348", "postId": "25864", "score": "1", "text": "for short: Chrome is Chromium re-branded and with propietary software built in it, what exactly does not work with Chrome?", "userDisplayName": null, "userId": "4203" }, { "creat...
{ "accepted": true, "body": "<p>What do you mean with \"non working\"? \nWhat's the issue you experience? \nChromium and Google Chrome is <em>almost</em> the same by the way. Chromium is an open source software, and usually not as stable as Google Chrome. Google releases Chrome based on Chromium regularly. Chrome itself is not entirely an open source software, it contains some not-free pieces as well. Chromium is mainly for developers, but for sure, someone can install it to use ... There are different channels for Chromium, such as snapshots and more stable but less regular versions, it's up to you what you use.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-02-11T19:28:50.897", "id": "28347", "postId": "25869", "score": "0", "text": "Thank, I'm quite sure I know the difference between Chrome and Chromium now - thanks for that :) What I mean with \"not working\" is this: I will type in a url in the address bar, but it don't go past \"send request...\" In the end - after roughly 2 minutes - it will say: \n\nThis webpage is not available\nThe webpage at http://www.facebook.com/ might be temporarily down or it may have moved permanently to a new web address.\nHere are some suggestions:\nReload this web page later.\nError 118 (net::ERR_CONNECTION_TIMED_OUT): The operation timed out.", "userDisplayName": null, "userId": "10652" }, { "creationDate": "2011-02-11T19:41:20.383", "id": "28351", "postId": "25869", "score": "0", "text": "are you using a proxy?", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-02-11T19:43:49.147", "id": "28352", "postId": "25869", "score": "0", "text": "The question has this part too: \"Also, what exactly is Chromium web browser? What's the difference between the two\", I answered for that part with my description. Hmm, this issue seems to be connection related, if you start another web browser on the same machine, does it work? If yes, is it possible that you're using proxy or so with the working browser, but not with the other?", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-11T20:35:11.450", "id": "28359", "postId": "25869", "score": "0", "text": "Yap, I got that one too :) The \"what is Chromium\" answer. I'm using a proxy yes. I'm actually on firefox now - on the same system. So the problem has to be with Chrome. Ok, wait, maybe not. I'm on an University network. In Windows 7 you only have to change the LAN settings in IE for Internet to work on any browser... RESOLVED! Thanks. I changed the proxy setting in Chrome as well - everything is working fine now. Thank you so much!", "userDisplayName": null, "userId": "10652" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T19:08:09.047", "id": "25869", "lastActivityDate": "2011-02-11T20:27:01.567", "lastEditDate": "2011-02-11T20:27:01.567", "lastEditorDisplayName": null, "lastEditorUserId": "6005", "ownerDisplayName": null, "ownerUserId": "10579", "parentId": "25864", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>What do you mean with \"non working\"? \nWhat's the issue you experience? \nChromium and Google Chrome is <em>almost</em> the same by the way. Chromium is an open source software, and usually not as stable as Google Chrome. Google releases Chrome based on Chromium regularly. ...
null
null
null
null
null
25865
1
25866
2011-02-11T18:44:32.043
2
3110
<p>I recently started to use ubuntu to program - University standards. I was checking out different text editors and tried to install VIM through Ubuntu Software Centre. Everything went fine and I got it installed, but I couldn't find the launcher (not sure if that is the right term). Any reason why this might be the case?</p>
10652
null
null
2017-02-24T07:13:09.913
VIM text editor not found
[ "vim", "text-editor" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Vim is a text based editor (to be used in a terminal), not a GUI program. It doesn't use menus but keyboard shortcuts. I use it a lot, but this is likely because I grow used to it long time ago, while I was working on Xenix and SCO Unix machines.</p>\n\n<p>It has no launcher on the menu, open the terminal and type <code>vim</code> to start it.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-02-11T18:54:05.220", "id": "28342", "postId": "25866", "score": "0", "text": "What is the correct English here, \"to be used on the terminal\" or \"to be used at the terminal\"?.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2011-02-11T18:58:50.437", "id": "28343", "postId": "25866", "score": "1", "text": "I would say \"in the terminal\" :) But my English is quite poor, so I am not sure ....", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-12T02:45:46.543", "id": "28420", "postId": "25866", "score": "0", "text": "Regarding \"on\" versus \"at\" the terminal -- in the sense you used it, I find both clear and acceptable. \"in\" is perhaps better just because it is a bit more concrete (i.e., less abstract). But \"at the terminal\" is fine, too -- that's a good idiomatic way to say it (in my opinion).", "userDisplayName": null, "userId": "8844" }, { "creationDate": "2011-02-13T00:37:30.937", "id": "28603", "postId": "25866", "score": "0", "text": "Jorge, LGB, jgbelacqua: Thanks for linguistic info/editing.", "userDisplayName": null, "userId": "211" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T18:53:21.850", "id": "25866", "lastActivityDate": "2011-02-11T18:54:37.390", "lastEditDate": "2011-02-11T18:54:37.390", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "211", "parentId": "25865", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p>Vim is a text based editor (to be used in a terminal), not a GUI program. It doesn't use menus but keyboard shortcuts. I use it a lot, but this is likely because I grow used to it long time ago, while I was working on Xenix and SCO Unix machines.</p>\n\n<p>It has no launcher ...
null
null
null
null
null
25872
1
25875
2011-02-11T19:21:47.137
1
642
<p>First of all, I don't use indicator applet, but I suppose that the icon/process managing Tomboy is the same for both indicator applet and system tray.</p> <p>I want only notificaitons in my system tray (apps have a different dwelling!). How do I, if at all possible, force Tomboy to always start in the "search all notes" mode WITHOUT showing a system tray icon?</p>
145
null
null
2011-02-11T20:02:58.170
Disable Tomboy System Tray
[ "tomboy" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I did some checking around in gconf, and sadly this is not possible in the standard version. You could add the unsupported <a href=\"https://launchpad.net/~tomboy-packagers/+archive/development\" rel=\"nofollow noreferrer\">tomboy ppa</a> and use the latest version (which has no indicator applet) and then disable the icon in gconf (/apps/tomboy/enable_tray_icon).</p>\n\n<p><img src=\"https://i.stack.imgur.com/8G07d.png\" alt=\"gconf-editor\">\n<em>This setting would normally work, but only in the latest version of tomboy</em></p>\n\n<p>I would also like to suggest that you report a wishlist bug on indicator applet to allow hiding <em>(I would, but I know I would be ignored :P)</em>.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2011-02-14T03:46:42.303", "id": "28821", "postId": "25875", "score": "0", "text": "Thanks, that's exactly what I wanted! I actually had that version already due to indicator applet related bugs! (Why would you be ignored?)", "userDisplayName": null, "userId": "145" }, { "creationDate": "2011-02-14T14:49:43.453", "id": "28946", "postId": "25875", "score": "0", "text": "Lol I won't go into why I would be ignored, but I'm almost certain I would be :)", "userDisplayName": null, "userId": "1992" }, { "creationDate": "2011-02-22T19:58:54.447", "id": "30507", "postId": "25875", "score": "0", "text": "It would be great if you would note which version number adds this feature (or even the first version you know of that has this feature, even if you're not sure that's the version that added it). That way, people can just check their version number instead of having to look up the PPA. Thanks! :)", "userDisplayName": null, "userId": "3256" }, { "creationDate": "2011-02-22T23:00:11.513", "id": "30543", "postId": "25875", "score": "0", "text": "I have the standard version, so I really can't tell without upgrading again.", "userDisplayName": null, "userId": "1992" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T20:02:58.170", "id": "25875", "lastActivityDate": "2011-02-11T20:02:58.170", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1992", "parentId": "25872", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I did some checking around in gconf, and sadly this is not possible in the standard version. You could add the unsupported <a href=\"https://launchpad.net/~tomboy-packagers/+archive/development\" rel=\"nofollow noreferrer\">tomboy ppa</a> and use the latest version (which has...
null
null
null
null
null
25877
1
null
2011-02-11T20:33:47.580
3
1838
<p>Is the <a href="http://www.logitech.com/en-us/keyboards/keyboard/devices/k750-keyboard?wt.mc_id=global_pr-k750_redirect_112010" rel="nofollow">Logitech K750</a> working in Ubuntu 10.10, Maverick Meerkat?</p>
null
106495
2013-06-09T14:51:03.530
2013-06-09T14:51:03.530
Will a Logitech K750 keyboard work?
[ "10.10", "drivers", "compatibility" ]
4
2
CC BY-SA 3.0
[ { "creationDate": "2011-02-14T22:42:35.580", "id": "58851", "postId": "25877", "score": "0", "text": "It uses the logitech unified wireless receiver. So the questions are: 1. Does the logitech unified receiver work with meerkat?\n2. Does the logitech unified receiver work with this keyboard when...
null
[ { "accepted": null, "body": "<p>Both my keyboard and mouse both use the wireless receiver and they both worked with NO fiddling at all.........Work perfect (mx 3200 Lazer)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creation...
null
null
null
null
user10657
25880
1
25881
2011-02-11T20:51:58.427
23
1429
<p>I <a href="http://lwn.net/Articles/426395/" rel="noreferrer">read recently</a> that someone demonstrated a security attack on a PC via the use of automount and a USB stick.</p> <p>How vulnerable am I to this attack and what steps are developers doing to be proactive against this sort of thing?</p>
235
235
2011-02-11T20:58:34.270
2011-02-11T22:05:57.877
Is Ubuntu vulnerable to recent exploits using USB sticks and automount?
[ "security", "automount" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You're not vulnerable to the specific attack, but the approach is very interesting. The vulnerabilities used are <a href=\"http://www.ubuntu.com/usn/usn-1035-1\" rel=\"nofollow\">already fixed</a>.</p>\n\n<p>I've been chatting with Jon Larimer since I heard about his <a href=\"http://www.youtube.com/watch?v=ovfYBa1EHm4#t=90\" rel=\"nofollow\">presentation at Shmoo</a>. The defeat of ASLR takes\nquite a while (Larimer is brute-forcing it on an NX-emu 32bit system\n-- a relatively easy target -- and for the demo he disabled ASLR to show\nit more quickly), and at the time hadn't found a workable way to bypass\nAppArmor (which he also turned off for the demo), so this speaks pretty\nwell to the proactive defenses in Ubuntu. Using 64bit would have made the attack unfeasible.</p>\n\n<p>Regardless, we took the opportunity to <a href=\"https://launchpad.net/bugs/714958\" rel=\"nofollow\">ask</a> the Desktop team to find\na way to disable auto-mounting when the screen is locked to avoid this\nkind of \"local but unauthenticated\" attack, and have been reviewing\nimprovements to the other thumbnailers (adding ASLR and AppArmor\nprofiles).</p>\n\n<p>I've actually written about it <a href=\"http://www.outflux.net/blog/archives/2011/02/11/shaping-the-direction-of-research/\" rel=\"nofollow\">here</a> for people interested in more details.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-02-27T16:54:23.280", "id": "126847", "postId": "25881", "score": "0", "text": "Does it set no execute on mount of removable media?", "userDisplayName": null, "userId": "10473" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T20:52:30.060", "id": "25881", "lastActivityDate": "2011-02-11T22:05:57.877", "lastEditDate": "2011-02-11T22:05:57.877", "lastEditorDisplayName": null, "lastEditorUserId": "721", "ownerDisplayName": null, "ownerUserId": "721", "parentId": "25880", "postTypeId": "2", "score": "35" }
[ { "accepted": true, "body": "<p>You're not vulnerable to the specific attack, but the approach is very interesting. The vulnerabilities used are <a href=\"http://www.ubuntu.com/usn/usn-1035-1\" rel=\"nofollow\">already fixed</a>.</p>\n\n<p>I've been chatting with Jon Larimer since I heard about his <a href=...
null
null
null
null
null
25884
1
25892
2011-02-11T21:50:40.167
3
252
<p>This is an important question for me. I have to decide to whether to use DesktopCouch or pure CouchDB.</p> <p>Will DesktopCouch be stable in Natty?</p> <p>Up to this point, I've had too many problems with DesktopCouch. DC does not start, DC does not sync, and so on.</p>
4871
8844
2011-02-12T01:12:58.133
2011-02-12T01:12:58.133
Will DesktopCouch be stable in Natty?
[ "ubuntu-one", "11.04", "couchdb", "desktopcouch" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes. Desktopcouch went through some rough patches during Natty, because we changed several things (both in desktopcouch itself, and in the libraries and services it depends on), but it will be stable by the time the beta comes out.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-12T09:02:23.460", "id": "28437", "postId": "25892", "score": "0", "text": "thx for your answer.", "userDisplayName": null, "userId": "4871" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-11T22:50:36.880", "id": "25892", "lastActivityDate": "2011-02-11T22:50:36.880", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "711", "parentId": "25884", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Yes. Desktopcouch went through some rough patches during Natty, because we changed several things (both in desktopcouch itself, and in the libraries and services it depends on), but it will be stable by the time the beta comes out.</p>\n", "commentCount": "1", "commen...
null
null
null
null
null
25885
1
null
2011-02-11T21:52:41.617
3
2903
<p>I'm running Ubuntu in a virtual machine via VirtualBox. I have the seamless mode turned on, which is pretty cool. However, if I move an Ubuntu window around quickly, I can see the redraw of the ubuntu background quickly before it's hidden by VirtualBox again. This isn't a huge deal, but I'd like to fix it, if possible.</p> <p>I see two possible options that don't involve changing VirtualBox code:</p> <ol> <li>Make the Ubuntu desktop transparent</li> <li>Make the Ubuntu desktop hidden entirely</li> </ol> <p>Is it possible to do either?</p> <p>I know that Compiz Fusion has/had a feature to do this for their cube effects, but I don't think that I can run this on the VM. And, even if I could, I don't want to run those services for this one small feature.</p> <p>My host OS is Windows Server 2008 R2.</p>
991
25863
2012-11-21T22:47:08.693
2013-02-04T18:01:06.680
Is it possible to make the desktop background transparent or otherwise hidden?
[ "virtualbox", "virtualization" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Use the same wallpaper in the VM and in the Host?</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2011-02-11T23:35:34.180", "id": "28399", "postId": "25894", "score": "0", "text": "I'm doing that now, but it ...
null
null
null
null
null
25898
1
25902
2011-02-12T00:09:51.153
1
6858
<p>I know that if I wrote in <code>crontab -e</code> following command <code>01 04 * * * somecommand</code> then it will run <code>somecommand</code> at 4:01am on every day of every month. </p> <p>What happens if I wrote <code>* * * * * somecommand</code>? Will it run <code>somecommand</code> every single minute? Will this syntax work also?</p> <p>And it is possible to use special strings like <code>@reboot</code>, <code>@daily</code>, etc as it is explained <a href="https://help.ubuntu.com/community/CronHowto" rel="nofollow">here</a>. At what time of the day <code>somecommand</code> will be executed if I write <code>@daily somecommand</code> command?</p>
161
161
2011-02-12T00:42:06.663
2011-02-12T09:40:17.530
How to interpret this crontab command?
[ "crontab" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T14:58:38.280", "id": "28482", "postId": "25898", "score": "0", "text": "The link goes to Ubuntu wiki. Why not trust it?", "userDisplayName": null, "userId": "8973" }, { "creationDate": "2011-02-14T06:11:03.190", "id": "28843", "postId": "2589...
{ "accepted": true, "body": "<p>This will run your command every minute. It is valid syntax.</p>\n\n<p>Here are the gory details from <code>info crontab</code> :</p>\n\n<pre><code> The first five fields shall be integer patterns that specify the\n following:\n\n 1. Minute [0,59]\n\n 2. Hour [0,23]\n\n 3. Day of the month [1,31]\n\n 4. Month of the year [1,12]\n\n 5. Day of the week ([0,6] with 0=Sunday)\n\n Each of these patterns can be either an asterisk (meaning all valid\n values), an element, or a list of elements separated by commas. An ele‐\n ment shall be either a number or two numbers separated by a hyphen\n (meaning an inclusive range). The specification of days can be made by\n two fields (day of the month and day of the week). If month, day of\n month, and day of week are all asterisks, every day shall be matched.\n If either the month or day of month is specified as an element or list,\n but the day of week is an asterisk, the month and day of month fields\n shall specify the days that match. If both month and day of month are\n specified as an asterisk, but day of week is an element or list, then\n only the specified days of the week match. Finally, if either the month\n or day of month is specified as an element or list, and the day of week\n is also specified as an element or list, then any day matching either\n the month and day of month, or the day of week, shall be matched.\n</code></pre>\n\n<p>The article you linked to looks like a good one. It's giving you some good examples and it's actually easier to read than the man-page excerpt I provided here.<br>\nYou should be able to use the syntax it talks about.</p>\n\n<p>According to my crontab, @daily runs at 6:25 AM .</p>\n\n<pre><code>$ grep daily /etc/crontab \n25 6 * * * root test -x /usr/sbin/anacron || ( cd / &amp;&amp; run-parts --report /etc/cron.daily )\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T00:43:32.030", "id": "25902", "lastActivityDate": "2011-02-12T01:06:43.697", "lastEditDate": "2011-02-12T01:06:43.697", "lastEditorDisplayName": null, "lastEditorUserId": "8844", "ownerDisplayName": null, "ownerUserId": "8844", "parentId": "25898", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>This will run your command every minute. It is valid syntax.</p>\n\n<p>Here are the gory details from <code>info crontab</code> :</p>\n\n<pre><code> The first five fields shall be integer patterns that specify the\n following:\n\n 1. Minute [0,59]\n\n ...
null
null
null
null
null
25899
1
null
2011-02-12T00:25:53.167
1
299
<p>I have a problem I on my device HP dv4 with i3 processor </p> <p>After getting back from suspend the flash player on youtube or any other website lags on full screen ... audio goes perfect but video is lagging I tried some solutions from google nothing worked ... So am seeking the experts help here </p> <p>Thanks</p>
10406
null
null
2011-03-22T14:24:46.810
Flash lags after getting back from suspend
[ "flash" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>This may be an issue with the suspend feature. I'm going to assume by \"Suspend\" you mean \"Hibernate\". This kind of issue is well known to be caused by the hibernation feature in Linux. My advice is to restart your computer, and try to not hibernate your computer (if yo...
null
null
null
null
null
25901
1
null
2011-02-12T00:43:00.423
6
18440
<p>How do I move the minimuze/maximise/close buttons to the right hand under Unity, for maximised windows?</p> <p>I've used <code>gconf-editor</code> to change <em>/apps/metacity/general/button_layout</em> to move them to the right hand side for windows which aren't maximised, but once maximised it moves back to the left hand side.</p>
10669
235
2011-02-12T03:28:22.853
2011-02-12T04:50:38.663
Moving min/max/close buttons back to right hand side for full screen windows
[ "unity", "11.04", "compiz" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2015-09-11T11:48:15.270", "id": "973075", "postId": "25901", "score": "1", "text": "This question should not have been closed. It is exactly what I want to know.", "userDisplayName": null, "userId": "20557" }, { "creationDate": "2016-09-09T23:17:04.033", "i...
null
[ { "accepted": null, "body": "<p>The way unity works, the buttons appear on the left side, and it's coded to work that way only. You would have to write a bug report about this (I would support it).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC...
null
null
2011-02-14T02:50:14.590
null
null
25905
1
null
2011-02-12T00:57:50.080
9
1117
<p>Is it possible to execute an action (a command or a Bash Script) by double clicking on the Desktop?</p> <p>I want to emulate the function that Fences does in Windows systems: By double clicking the desktop, you show/hide the icons/folders you have in the Desktop.</p> <p>The script is not the problem, what I want to know is how to execute it when double clicking on an unused area of my desktop.</p>
10671
8844
2011-04-18T00:37:24.940
2011-07-05T04:29:05.410
Is it possible to execute an action by double clicking on the Desktop?
[ "gnome", "kde", "gui" ]
3
6
CC BY-SA 3.0
[ { "creationDate": "2011-02-12T02:00:25.660", "id": "28413", "postId": "25905", "score": "0", "text": "The odds of this never happening are slim. http://askubuntu.com/q/25904/8515", "userDisplayName": null, "userId": "8515" }, { "creationDate": "2011-02-12T02:47:24.543", "id":...
null
[ { "accepted": null, "body": "<p>As far as the icon organising feature of Fences: I haven't found anything yet for GNOME, but KDE.4 has a desktop widget called FolderView that I think does close to what you want. Here's the announcement, search for \"folderview\":</p>\n\n<p><a href=\"http://www.kde.org/annou...
null
null
null
null
null
25908
1
25920
2011-02-12T02:03:23.490
2
6502
<p>When I plug in my 32GB iPod Touch 4G, it mounts a 1GB drive. Rhythmbox does not react, neither does Banshee.</p> <p>Any ideas how to copy my music?</p> <p>The output of <code>df</code> with ipod plugged is:</p> <pre><code>Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda1 28834716 4347480 23022512 16% / udev 1026788 288 1026500 1% /dev none 1026788 1496 1025292 1% /dev/shm none 1026788 204 1026584 1% /var/run none 1026788 0 1026788 0% /var/lock none 1026788 0 1026788 0% /lib/init/rw /dev/sda6 96124904 62709456 28532496 69% /home </code></pre> <p>and for <code>sudo fdisk -l</code> also with ipod plugged:</p> <pre><code>Disk /dev/sda: 160.0 GB, 160041885696 bytes 255 heads, 63 sectors/track, 19457 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x0009b4b0 Device Boot Start End Blocks Id System /dev/sda1 * 1 3647 29294496 83 Linux /dev/sda2 3648 15927 98639100 5 Extended /dev/sda5 3648 3769 979933+ 82 Linux swap / Solaris /dev/sda6 3770 15927 97659103+ 83 Linux </code></pre>
5304
5304
2011-02-12T14:54:09.877
2011-07-11T22:34:02.063
How to mount my iPod Touch 4G?
[ "9.10", "ipod" ]
3
7
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T02:20:41.587", "id": "28415", "postId": "25908", "score": "0", "text": "What gen ipod do you have? Which Ubuntu? With the ipod plugged in, what is the output of `df`? of `sudo fdisk -l`?", "userDisplayName": null, "userId": "8515" }, { "creationDate"...
{ "accepted": true, "body": "<p>It appears there are issues with the iOS firmware on the iPod Touch 4G and Ubuntu - there is a long and detailed post on Ubuntu Forums <a href=\"http://ubuntu-ky.ubuntuforums.org/showthread.php?t=1576249\" rel=\"nofollow\">here</a> detailing methods to troubleshoot and fix.</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-12T12:49:06.973", "id": "28451", "postId": "25920", "score": "0", "text": "The solution uses jailbreak, is there a solution without jailbreak?", "userDisplayName": null, "userId": "5304" }, { "creationDate": "2011-02-12T16:15:54.783", "id": "28497", "postId": "25920", "score": "0", "text": "Looks like there's no way, so I'll install Windows in dual boot..", "userDisplayName": null, "userId": "5304" }, { "creationDate": "2011-02-13T22:25:08.273", "id": "28771", "postId": "25920", "score": "2", "text": "Ubuntu 11.04 alpha does the trick :D", "userDisplayName": null, "userId": "5304" }, { "creationDate": "2011-02-14T11:39:28.490", "id": "28894", "postId": "25920", "score": "0", "text": "Oh, no, it doesn't. It recognize the ipod, but the musics will not appear in the ipod player after sync with Banshee (gtkpod doesn't recognize it well). There are issues with the 4G. I'll use dual boot.", "userDisplayName": null, "userId": "5304" }, { "creationDate": "2011-02-14T12:31:35.253", "id": "28905", "postId": "25920", "score": "0", "text": "@Tom: For me on iPod touch 2G on 11.04, works like a charm. (Not jailbroken). I'm on iOS 4.2.1.", "userDisplayName": null, "userId": "6005" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T06:33:55.643", "id": "25920", "lastActivityDate": "2011-02-14T12:15:29.877", "lastEditDate": "2011-02-14T12:15:29.877", "lastEditorDisplayName": null, "lastEditorUserId": "4982", "ownerDisplayName": null, "ownerUserId": "4982", "parentId": "25908", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>It appears there are issues with the iOS firmware on the iPod Touch 4G and Ubuntu - there is a long and detailed post on Ubuntu Forums <a href=\"http://ubuntu-ky.ubuntuforums.org/showthread.php?t=1576249\" rel=\"nofollow\">here</a> detailing methods to troubleshoot and fix.<...
null
null
null
null
null
25914
1
25922
2011-02-12T05:35:03.627
28
40738
<p>I'm looking for a music player similar to Winamp.</p>
2997
3037
2011-02-12T09:10:33.570
2017-02-24T07:17:34.323
Is there a music player like Winamp?
[ "software-recommendation", "sound", "music", "mp3" ]
7
1
CC BY-SA 2.5
[ { "creationDate": "2015-11-26T18:36:26.013", "id": "1031704", "postId": "25914", "score": "1", "text": "for those who are searching for a fader or crossfader its in the effects menu on audacious", "userDisplayName": "user476362", "userId": null } ]
{ "accepted": true, "body": "<p>There's no software in Linux like the current Winamp. If you want something almost similar, try <a href=\"http://apt.ubuntu.com/p/audacious\" rel=\"noreferrer\">Audacious</a>, BUT the skined interface ONLY supports winamp 2.x skins. I came from a Winamp environment so I can say this, forget about skins and use the default GTK interface and you'll like it, I know I did :)</p>\n\n<p><img src=\"https://i.stack.imgur.com/bPhoc.png\" alt=\"enter image description here\"></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T07:24:13.017", "id": "25922", "lastActivityDate": "2011-02-12T07:24:13.017", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4384", "parentId": "25914", "postTypeId": "2", "score": "29" }
[ { "accepted": null, "body": "<p>There is Rhythmbox or VLC.Rythmbox can also be used to sort your music as winamp does.VLC media player,It can also transcode and convert media files, and act as a streaming server over unicast or multicast and IPv4 or IPv6.but doesnt have a good sort function like rythmbox wh...
null
null
2015-12-19T13:11:26.893
null
null
25917
1
null
2011-02-12T05:49:07.177
2
1313
<p>The left mouse button stops working after 5 or 10 minutes of running Ubuntu 10.10. It is a Logitech MX 1000 wireless USB mouse. Also is there a way to emulate the left mouse click on the keyboard? Mouse pointer move fine, right button works, wheel works.</p>
null
114
2011-02-12T06:05:22.080
2012-05-04T09:35:30.453
Left mouse button stops working
[ "10.10", "hardware", "mouse" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T12:40:37.180", "id": "28450", "postId": "25917", "score": "0", "text": "Here's [How to bind mouse buttons to keys](http://askubuntu.com/questions/9048/how-to-bind-mouse-buttons-to-keys).", "userDisplayName": null, "userId": "1067" } ]
null
[ { "accepted": null, "body": "<p>I had exactly the same problem. Here's how to solve it. Open a terminal and type:</p>\n\n<pre><code>sudo add-apt-repository ppa:raof/aubergine\nsudo apt-get update\nsudo apt-get upgrade\n</code></pre>\n\n<p>...and when the update/upgrade is complete, reboot your system and V...
null
null
null
null
user10678
25919
1
null
2011-02-12T06:12:02.413
6
372
<p>The "touch sensitive keys", that control volume and media worked great out of the box when I was running Ubuntu on a LiveCD, but they are totally unresponsive after installation. </p> <ul> <li>HP Pavilion dv9740us with dual-boot Vista Ultimate and Ubuntu 10.10</li> <li>Intel Core 2 Duo T5450 / 1.67 GHz</li> <li>NVIDIA GeForce 8600M GS @ 512MB</li> <li>3G DDR2 RAM, </li> </ul>
10679
47151
2012-03-14T11:58:21.363
2012-04-19T20:11:05.867
HP QuickTouch media keys worked with LiveCD but not after install
[ "shortcut-keys", "keyboard", "keyboard-layout", "hp" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2012-02-25T15:10:28.627", "id": "125747", "postId": "25919", "score": "0", "text": "This question appears to be abandoned, if you are experiencing a similar issue please [ask a new question](http://askubuntu.com/questions/ask) with details pertaining to your problem. If you fe...
null
[ { "accepted": null, "body": "<p>Most likely it was because there was a certain driver in use due to Windows/Vista being installed. During your LiveCD usage it's using the currently loaded drives from the main installation I.E. Windows and it uses those. When you install well, that all goes away. Most likely...
null
null
null
null
null
25921
1
null
2011-02-12T06:49:23.647
6
1435
<p>Using Ubuntu 10.10. I have an external screen and frequently move my computer in and out of the room. </p> <p>Is there a way of avoiding manually configuring via <code>nvidia-settings</code> every time I need to take my laptop out of my room?</p> <p>Would like to be able to press <kbd>Ctrl</kbd> + <kbd>1</kbd> and have only the laptop screen active, <kbd>Ctrl</kbd> + <kbd>2</kbd> for the external only, and <kbd>Ctrl</kbd> + <kbd>3</kbd> for TwinView.</p>
10679
3037
2011-02-12T09:18:04.000
2012-01-11T10:46:08.940
Assigning keyboard shortcuts to multi-monitor configurations
[ "10.10", "nvidia" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>My answer may not 100% appropriate for your case as I use ATI drivers, but I use a little script that would detect an external monitor and in that case enable it, using xrandr command line tool. Then I created a key shortcut that runs it.</p>\n\n<p>If xrandr also runs on your...
null
null
null
null
null
25923
1
null
2011-02-12T07:38:57.437
1
12559
<p>I have an external USB-based fingerprint scanner. On MS Windows it is used to save fingerprints as images. Are there any drivers and softwares to get it working on Ubuntu?</p> <p>Edit: The device I use is "Digital Persona U are U 4500"</p>
2968
667
2011-02-15T16:37:12.387
2017-03-13T19:36:44.943
How do I get a Digital Personal U 4500 fingerprint scanner working?
[ "drivers", "fingerprint-reader" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T08:34:23.897", "id": "28433", "postId": "25923", "score": "0", "text": "Can you tell us which fingerprint scanner you have? One way to do this is to edit your post to include the output of `lsusb`.", "userDisplayName": null, "userId": "866" }, { "cre...
null
[ { "accepted": null, "body": "<h1><a href=\"http://www.reactivated.net/fprint/wiki/Main_Page\" rel=\"nofollow noreferrer\">Fprint</a> <a href=\"http://apt.ubuntu.com/p/fprint-demo\" rel=\"nofollow noreferrer\"><img src=\"https://hostmar.co/software-large\" alt=\"install fprint-demo\" /></a></h1>\n<p>Fprint i...
null
null
null
null
null
25926
1
25950
2011-02-12T07:51:40.380
1
346
<p>is there a shared location for all python interpreters? I want to install a module so it becomes avaiable to all interpreters (2.6, 2.7, 3.1). </p> <p>Thanks you in advance,<br> rubik</p>
9376
null
null
2011-02-12T11:58:42.537
Shared location for all python interpreters
[ "development", "python", "directory" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>All the interpreters first look if there's an environment variable <code>$PYTHONPATH</code> set, which contains directories separated by <code>:</code>.</p>\n\n<ul>\n<li><p>To add a directory to it, type</p>\n\n<pre><code>export PYTHONPATH=\"$PYTHONPATH:/home/stefano/my_modules\"\n</code></pre></li>\n</ul>\n\n<p>Everything in this directory will now be available to all of your python interpreters. Non-existent directories are ignored without an error.</p>\n\n<p>If you're happy with the settings, make the change permanent by appending the export command to the <code>.bashrc</code> file (or any other startup file you like in your home directory.</p>\n\n<p>See also:</p>\n\n<ul>\n<li><p><a href=\"https://docs.python.org/using/cmdline.html#envvar-PYTHONPATH\" rel=\"nofollow noreferrer\"><img src=\"https://docs.python.org/_static/py.png\" alt=\"\"> § 6.1.2. The Module Search Path</a></p></li>\n<li><p><a href=\"https://docs.python.org/using/cmdline.html#envvar-PYTHONPATH\" rel=\"nofollow noreferrer\"><img src=\"https://docs.python.org/_static/py.png\" alt=\"\"> § 1.2. Environment variables</a></p></li>\n</ul>\n\n<hr>\n\n<p>Note: the above syntax means that the variable PYTHONPATH will contain itself and the new path, you could also remove the <code>$PYTHONPATH:</code> part to just set one directory. Normally, this variable will be empty on your system, it makes sense to check if there's anything in it: <code>echo $PYTHONPATH</code>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T11:53:09.940", "id": "25950", "lastActivityDate": "2011-02-12T11:58:42.537", "lastEditDate": "2017-03-09T18:04:15.010", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "1067", "parentId": "25926", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>All the interpreters first look if there's an environment variable <code>$PYTHONPATH</code> set, which contains directories separated by <code>:</code>.</p>\n\n<ul>\n<li><p>To add a directory to it, type</p>\n\n<pre><code>export PYTHONPATH=\"$PYTHONPATH:/home/stefano/my_modul...
null
null
null
null
null
25927
1
null
2011-02-12T08:04:53.353
2
2503
<p><strong>Till yesterday</strong>, my Ubuntu 9.10 was working fine. I had watched a movie using vlc. I had also charged my ipod using the laptop. </p> <p>Today, when I started it, I automatically booted into command line. There seems to be no filesystem corruption etc as I can view/open (text) files. Before the CLI appeared, the screen blinked with a cursor, then the white Ubuntu logo flashed, and then I got the CLI login prompt.</p> <p>After logging in, if I try startx, to start gnome, I get the following error after a few seconds:</p> <ul> <li>giving up</li> <li>xinit: No such file or directory (errno 2): unable to connect to X server</li> <li>xinit: No such process (errno 3): Server error*</li> </ul> <p>The same error comes up, even if I use sudo, or if I change my directory to '/' before using startx, and also when, from the grub, using the recovery mode option to load into CLI, and then trying startx.</p> <p>On trying command 'xinit', I get "<em>Server error</em>"</p> <p>Also, on trying GDM, I get 2 errors.</p> <p>I cannot connect to the internet in this state.</p> <p>Thanks for any help.</p> <p><strong>I am using Dell Inspiron 1440, no special graphics card.</strong></p>
null
235
2011-02-12T20:47:46.090
2011-12-22T05:52:16.417
No GUI boot; startx error, I suspect no filesystem corruption
[ "command-line", "graphics", "9.10", "gui" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T08:37:55.737", "id": "28435", "postId": "25927", "score": "1", "text": "Did you have a kernel update before? Are you able to run X with previous kernel? Did you try `dpkg-reconfigure xserver-xorg`? Have you installed fglrx (proprietary ATI driver)? See also [bug #51...
null
[ { "accepted": null, "body": "<p>/var/log/Xorg.0.log should contain the log of the X server, you can check what the exact problem is. If the problem is about the X server itself, you can check that by launching X with just command \"X\" (capital letter). It won't start any login manager, desktop environment ...
null
null
null
null
user10683
25928
1
null
2011-02-12T08:24:18.527
3
505
<p>I have been using Ubuntu since 9.10. Now Maverick crashed and my MBR is wrecked. I have run <code>dd if=/dev/zero of=/dev/sdb bs=512 count=1</code> on advice from another Ubuntu user but now I can only install any Windows release and no Ubuntu. How do I completely erase the MBR and then use an Ubuntu live CD or another HDD with Ubuntu on to install a Linux-only MBR please. </p> <p>I am rather new at the technical side of Linux and have bandwidth shortage problems so I can't download large amounts of data. Thanks in advance!</p>
10681
3037
2011-02-12T09:28:07.767
2011-05-13T20:50:35.697
How to install MBR with Maverick or Karmic
[ "10.10", "bootloader" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T10:41:47.060", "id": "28440", "postId": "25928", "score": "0", "text": "`dd if=/dev/zero of=/dev/sdb bs=512 count=1` It just fill the MBR with zeroes (on /dev/sdb in this case ...). To install/reinstall MBR you should use grub-install.", "userDisplayName": null,...
null
[ { "accepted": null, "body": "<p>I have to admit I don't know exactly what you are asking, but if you want to reinstall the bootloader <em>grub</em> then you need to enter the following at a terminal (Applications->Accessories->Terminal):</p>\n\n<pre><code>sudo grub-install /dev/sda\n</code></pre>\n\n<p>This...
null
null
null
null
null
25930
1
26645
2011-02-12T08:27:25.487
3
8818
<p>I am trying to install some applications but some of them fail to install. The three applications I tried are Vim, Emacs and GNOME-Do. I am using Ubuntu 10.10 installed as a guest OS in VirtualBox. The kernel version installed is 2.6.35-26.</p> <p>The error I got is :</p> <pre><code>alvinsim@ubuntu:/etc/apt$ sudo apt-get install emacs Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: emacs : Depends: emacs23 or emacs23-lucid but it is not going to be installed emacs23-nox but it is not going to be installed E: Broken packages </code></pre> <p>What is wrong and how do I fix this?</p> <p>Thanks.</p>
969
3778
2011-02-12T10:35:41.563
2011-02-16T14:34:25.947
Install packages with unmet dependencies
[ "package-management", "dependencies" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T09:36:20.943", "id": "28439", "postId": "25930", "score": "1", "text": "Can you dump the apt sources using `find /etc/apt/ -name '*.list' -ls -exec cat {} \\;` on http://paste.ubuntu.com/? This problem is likely caused by third party repositories.", "userDisplay...
{ "accepted": true, "body": "<p>I fixed the packages by following the steps provided by the ubuntu package manager trouble shooting procedure. I believed the previous packages were somehow broken.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-16T14:34:25.947", "id": "26645", "lastActivityDate": "2011-02-16T14:34:25.947", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "969", "parentId": "25930", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>I fixed the packages by following the steps provided by the ubuntu package manager trouble shooting procedure. I believed the previous packages were somehow broken.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC ...
null
null
2013-07-18T10:32:12.480
null
null
25934
1
25936
2011-02-12T08:51:44.767
7
2807
<p>So, here's my setup. I have one partition with the newest version installed, a second partition with an older version installed (as a backup just in case), a swap partition that both share, and a boot partition so the bootloader doesn't need to be setup after each upgrade.</p> <p>Partitions:</p> <ul> <li>sda1 ext3 /boot</li> <li>sda2 ext4 / (current version)</li> <li>sda3 ext4 / (old version)</li> <li>sda4 swap /swap</li> <li>sda5 ntfs (contains folders symbolically linked to /home on /)</li> </ul> <p>So far it has been a very good setup. I can modify the boot loaders for new installs without messing with the MBR. Adding my personal files (from the /home partition) is as easy as creating some symlinks in my home folder (even on a Windows install).</p> <p>Here's the issue. I'd like to be able to deploy an installation in the 'current version' partition to overwrite the 'old version' partition effectively making it the new 'current version'.</p> <p>The goal here is to do the install with no USB drives, external hard drives, or CD copies.</p>
2139
256317
2017-12-25T12:16:02.723
2017-12-25T12:16:02.723
Non-standard installation (installing Linux from Linux)
[ "system-installation" ]
2
4
CC BY-SA 3.0
[ { "creationDate": "2011-02-12T12:51:36.863", "id": "28453", "postId": "25934", "score": "1", "text": "Thanks for the answers. Debootstrap is definitely the way to go with Ubuntu. Unfortunately, I'm trying to load Mint (which doesn't include a debootstrap script with its distros). As soon as I fi...
{ "accepted": true, "body": "<p>Ubuntu has an article on <a href=\"https://help.ubuntu.com/community/Installation/FromLinux\" rel=\"nofollow noreferrer\">Installing Ubuntu from a Unix/Linux System</a> , using <code>debootstrap</code> to do a \"cross-install.\" It won't be a perfect fit to what you're doing, but it should get you on your way.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-12T12:49:53.197", "id": "28452", "postId": "25936", "score": "0", "text": "This is definitely the correct answer. Unfortunately, I'm using trying to install Linux Mint 10 which doesn't support it.", "userDisplayName": null, "userId": "2139" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-12T09:22:10.510", "id": "25936", "lastActivityDate": "2017-12-25T12:01:38.577", "lastEditDate": "2017-12-25T12:01:38.577", "lastEditorDisplayName": null, "lastEditorUserId": "498780", "ownerDisplayName": null, "ownerUserId": "862", "parentId": "25934", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>For all Debian based distribution (like is Ubuntu, see <a href=\"http://wiki.debian.org/Derivatives\" rel=\"nofollow\">http://wiki.debian.org/Derivatives</a>), you should really look at the <a href=\"http://wiki.debian.org/Debootstrap\" rel=\"nofollow\">debootstrap</a> tool w...
null
null
null
null
null
25941
1
25948
2011-02-12T09:38:59.623
0
1119
<p>this is a very special question. Currently I'm starting to develop a new online shop using Python (Flask). I want to use CouchDB to store (and sync) new orders. But CouchDB does not encrypt the replication as far as I know.</p> <p>Is it possible to use Python to get authentication with OAuth an start a replication via <a href="https://couchdb.one.ubuntu.com" rel="nofollow">https://couchdb.one.ubuntu.com</a> between CouchDB and the UbuntuOne Server?</p>
4871
null
null
2012-01-01T11:58:07.820
Encrypted replication between normal CouchDB and Ubuntu One?
[ "ubuntu-one", "security", "python", "encryption", "couchdb" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Yes. Desktopcouch does replication between a CouchDB (on your desktop) and <a href=\"https://couchdb.one.ubuntu.com\" rel=\"nofollow\">https://couchdb.one.ubuntu.com</a>, and that will work from any CouchDB; the CouchDB that desktopcouch runs is not something special.</p>\n\n<p>To start a replication between a CouchDB of your choice and Ubuntu One, use the Couch replication API:</p>\n\n<p>POST /_replicate HTTP/1.1</p>\n\n<pre><code>{\n \"source\":\"example-database\",\n \"target\":{\n \"url\": \"https://couchdb.one.ubuntu.com/u%2Fabc%2Fdef%2F123456%2Fexample-database\",\n \"auth\": {\n \"oauth\": {\n \"consumer_key\": \"xxx\",\n \"consumer_secret\": \"xxx\",\n \"token\": \"xxx\",\n \"token_secret\": \"xxx\"\n }\n }\n } \n}\n</code></pre>\n\n<p>You can find example code which actually kicks off this replication from Python in couchdb_io.py in the desktopcouch tree.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-12T11:27:00.310", "id": "25948", "lastActivityDate": "2012-01-01T11:58:07.820", "lastEditDate": "2012-01-01T11:58:07.820", "lastEditorDisplayName": null, "lastEditorUserId": "25798", "ownerDisplayName": null, "ownerUserId": "2387", "parentId": "25941", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Yes. Desktopcouch does replication between a CouchDB (on your desktop) and <a href=\"https://couchdb.one.ubuntu.com\" rel=\"nofollow\">https://couchdb.one.ubuntu.com</a>, and that will work from any CouchDB; the CouchDB that desktopcouch runs is not something special.</p>\n\n...
null
null
null
null
null
25951
1
null
2011-02-12T09:45:56.870
5
2715
<p>Hi I am trying to get Tor working with Irssi.</p> <p>The directions at the bottom of this page <a href="http://freenode.net/irc_servers.shtml#tor" rel="noreferrer">Freenode Install Link</a> say to </p> <pre><code>:~/.irssi$ tor MapAddress 10.40.40.40 p4fsi4ockecnea7l.onion Feb 12 04:26:51.101 [notice] Tor v0.2.1.29 (r318f470bc5f2ad43). This is experimental software. Do not rely on it for strong anonymity. (Running on Linux x86_64) Feb 12 04:26:51.101 [warn] Command-line option 'p4fsi4ockecnea7l.onion' with no value. Failing. Feb 12 04:26:51.101 [err] Reading config failed--see warnings above. </code></pre> <p>Or add it to the torrc file and reload irssi</p> <pre><code>.irssi$ cat /etc/tor/torrc |grep 10.40.40 mapaddress 10.40.40.40 p4fsi4ockecnea7l.onion </code></pre> <p>This is a paste from within irssi after running <code>$torify irssi</code></p> <pre><code>[04:33] Math::BigInt: couldn't load specified math lib(s), fallback to Math::BigInt::FastCalc at /usr/local/share/perl/5.10.1/Crypt/DH.pm line 6 [04:33] [04:33] *** Irssi: Loaded script cap_sasl </code></pre> <p>So I thought it was a CPAN module issue.</p> <pre><code>cpan[1]&gt; install Math::BigInt </code></pre> <p>This was also done for FastCalc and retried with force install.</p> <p>What am I doing wrong?</p> <p>Thanks</p>
8343
235
2011-02-12T19:47:23.643
2011-02-12T19:47:23.643
Get Tor and Irssi working together
[ "10.10", "proxy", "tor", "irssi" ]
0
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-13T12:53:48.873", "id": "28655", "postId": "25951", "score": "0", "text": "This question is also in superuser.com: http://superuser.com/questions/244927/tor-irssi-ubuntu-10-10", "userDisplayName": null, "userId": "10581" }, { "creationDate": "2012-02-21...
null
[]
null
null
2012-02-21T22:07:33.617
null
Joey Bagodonuts
25954
1
null
2011-02-12T12:17:29.680
7
2158
<p>Is it possible to use more than two monitors in Ubuntu?</p> <p>If so, which graphics cards are known to work for example with three monitors in Ubuntu?</p>
1241
1241
2011-02-14T09:32:07.290
2011-02-14T09:32:07.290
Is it possible to use more than two monitors?
[ "hardware", "multiple-monitors", "monitor" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T12:57:10.133", "id": "28458", "postId": "25954", "score": "2", "text": "To the best of my knowledge, it's \"sort of possible\" - there are some special requirements and some limitations when you get it working. [This question on superuser.com](http://superuser.com/q...
null
[ { "accepted": null, "body": "<p>Ordinary graphic cards support only up to 2 monitors. Laptop usually support own monitor (LVDS) and one external (VGA/DVI/HDMI), while desktop has 2 monitor ouptups.</p>\n\n<p>You can use more graphics cards if your motherboard and graphics card support.\nExample: <a href=\"h...
null
null
null
null
null
25955
1
null
2011-02-12T12:27:05.487
0
1884
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/14228/how-do-i-install-a-nice-notification-indicator-for-the-keyboard-layout">How do I install a nice notification indicator for the keyboard layout?</a> </p> </blockquote> <p>how can I see my keyboard layout in the panel in ubuntu 10.10</p>
null
-1
2017-04-13T12:25:03.423
2011-05-21T15:34:05.397
How can I see my keyboard layout in the panel?
[ "10.10", "indicator", "gnome-panel", "keyboard-layout" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-02-12T12:57:02.563", "id": "28457", "postId": "25955", "score": "0", "text": "Possible Duplicate: http://askubuntu.com/q/14228/3940", "userDisplayName": null, "userId": "3940" } ]
null
[ { "accepted": null, "body": "<p>From 10.10 the keyboard indicator applet is shown in the panel as soon as more than one layout was defined. For additional hints on configuration see also <a href=\"https://askubuntu.com/questions/10223/display-current-layout-language-code-country-flag-in-keyboard-indicator/1...
null
null
2011-05-21T19:38:45.933
null
user10691
25961
1
1030
2011-02-12T13:01:39.990
686
5355164
<p>I have downloaded tar.gz files. But I don't know how to install it. How do I install this kind of file?</p>
10064
114489
2014-11-10T18:51:40.833
2021-08-24T07:13:11.383
How do I install a .tar.gz (or .tar.bz2) file?
[ "software-installation", "install-from-source" ]
14
6
CC BY-SA 3.0
[ { "creationDate": "2015-04-15T14:49:05.820", "id": "855548", "postId": "25961", "score": "23", "text": "As mentioned in some of the answers below, try hard not to install packages via tarball as it will often bork managed packages and get you into in unresolvable state, and make you very sad. In...
{ "accepted": true, "body": "<p>The first thing you need to do is extract the files from inside the tar archive to a folder. Let's copy the files to your desktop. You can extract an archive by right-clicking the archive file's icon inside your file browser and pressing the appropriate entry in the context menu.\nExtracting the archive should create a new folder with a similar name. e.g. <code>program-1.2.3</code>.\nNow you need to open your terminal and navigate to that directory using the following command:</p>\n\n<pre><code>cd /home/yourusername/Desktop/program-1.2.3\n</code></pre>\n\n<p>Make sure you read a file called <code>INSTALL</code>, <code>INSTALL.txt</code>, <code>README</code>, or something similar if one was extracted. You can check if such a file exists from the terminal by using the <code>ls</code> command. The file can be opened and read with the command:</p>\n\n<pre><code>xdg-open INSTALL\n</code></pre>\n\n<p>Where INSTALL is the name of your file.\nThis file will contain the right steps to follow to continue the installation process. Usually, the three \"classical\" steps are:</p>\n\n<pre><code>./configure\nmake\nsudo make install\n</code></pre>\n\n<p>You may also need to install some dependencies if, for example, running <code>configure</code> prompted you with an error listing which dependencies you are missing.</p>\n\n<p>You can also use <a href=\"https://help.ubuntu.com/community/CheckInstall\" rel=\"noreferrer\"><code>checkinstall</code> instead of <code>make install</code></a>.</p>\n\n<p>Remember that your mileage may vary.</p>\n", "commentCount": "15", "comments": [ { "creationDate": "2010-08-05T10:10:22.823", "id": "1005", "postId": "1030", "score": "42", "text": "I would very much recommend using checkinstall, as that will make uninstalling the application much easier.", "userDisplayName": null, "userId": "334" }, { "creationDate": "2010-08-05T11:35:51.607", "id": "1018", "postId": "1030", "score": "3", "text": "Personally I like to put source in ~/src to keep my Desktop clutter free :)", "userDisplayName": null, "userId": "644" }, { "creationDate": "2010-08-05T12:29:58.163", "id": "1030", "postId": "1030", "score": "3", "text": "..of course assuming the tarball contains some kind of source code.", "userDisplayName": null, "userId": "24" }, { "creationDate": "2012-12-17T16:44:28.643", "id": "283939", "postId": "1030", "score": "0", "text": "@invert Yeah, my Windows desktop has all kinds of stuff on it: files, programs, several old, empty folders, but when I boot into Ubuntu, my desktop is *sparkling*. I have all my projects in `~/sandbox/PackageName/package-x.x-y/`", "userDisplayName": null, "userId": "95681" }, { "creationDate": "2014-08-12T13:17:50.383", "id": "689621", "postId": "1030", "score": "0", "text": "Checking for `README`s etc are also useful", "userDisplayName": null, "userId": "178596" }, { "creationDate": "2014-08-12T13:28:26.543", "id": "689628", "postId": "1030", "score": "0", "text": "That's why I wrote «Make sure you first read a file called INSTALL or INSTALL.txt or README».", "userDisplayName": null, "userId": "271" }, { "creationDate": "2015-03-28T17:50:37.737", "id": "841100", "postId": "1030", "score": "1", "text": "these are instructions for a specific case... a more common case I run into does not require compiling, the important information to know is where in my filesystem I should move it and how to make .desktop icon file", "userDisplayName": null, "userId": "75823" }, { "creationDate": "2015-03-29T16:23:29.040", "id": "841714", "postId": "1030", "score": "1", "text": "Tarballs are used to distribute source code almost every time. If you have any specific example of unusual tarball, you may consider adding it as an answer and *that* would be a specific case.", "userDisplayName": null, "userId": "271" }, { "creationDate": "2016-12-12T17:19:30.813", "id": "1325919", "postId": "1030", "score": "0", "text": "I actually largely agree with @Selah here, almost every tarball I've come across so far is compressed binaries. Source code nowadays is distributed primarily via SCM. It would be really nice to hint at potential places to extract to for binary-tarballs, as opposed to only detailing the installation of source code (which is a ridiculous thing to begin with, really, as most developers would know what to do with it).", "userDisplayName": null, "userId": "395543" }, { "creationDate": "2016-12-12T20:53:00.673", "id": "1326069", "postId": "1030", "score": "1", "text": "What kind of extremely weird tarballs do you usually download? :D", "userDisplayName": null, "userId": "271" }, { "creationDate": "2017-11-24T08:23:48.533", "id": "1574014", "postId": "1030", "score": "0", "text": "You really should promote the use of `sudo checkinstall` instead of `sudo make install` more! It's a *really* good idea to manage software compiled from source via the package management, easy removal just to mention one point. For easy dependency resolving there's `auto-apt`, see [here](https://help.ubuntu.com/community/CheckInstall#Use_CheckInstall_with_auto-apt): `auto-apt run ./configure` replaces `./configure`.", "userDisplayName": null, "userId": "507051" }, { "creationDate": "2018-03-15T15:28:00.893", "id": "1647137", "postId": "1030", "score": "0", "text": "@AndreaLazzarotto Here is an example of a program that is delivered simply as a tarred directory, not as something that needs to be compiled. https://protege.stanford.edu/products.php", "userDisplayName": null, "userId": "75823" }, { "creationDate": "2018-03-15T15:30:37.220", "id": "1647139", "postId": "1030", "score": "0", "text": "This post has a nice explanation for the situation where a tar-ed program does not need to be compiled from source: https://askubuntu.com/questions/6897/where-to-install-programs", "userDisplayName": null, "userId": "75823" }, { "creationDate": "2018-04-21T10:26:54.190", "id": "1669076", "postId": "1030", "score": "0", "text": "+1 but just wanted to comment that after 8 years someone should have written an automated bash script by now. The script would download, analyze, mkdir, un-tar, splash the README, check dependencies, compile, rm -d, report errors, etc. One could attach the script to `nautilus` right click. If such a script doesn't exist I may have found my next project :)", "userDisplayName": null, "userId": "307523" }, { "creationDate": "2018-09-01T10:13:42.960", "id": "1756975", "postId": "1030", "score": "1", "text": "try with `sh install.sh` when `xdg-open` doesn't do", "userDisplayName": null, "userId": "509163" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-08-05T09:52:17.580", "id": "1030", "lastActivityDate": "2019-10-08T17:48:46.907", "lastEditDate": "2019-10-08T17:48:46.907", "lastEditorDisplayName": null, "lastEditorUserId": "349837", "ownerDisplayName": null, "ownerUserId": "271", "parentId": "25961", "postTypeId": "2", "score": "378" }
[ { "accepted": true, "body": "<p>The first thing you need to do is extract the files from inside the tar archive to a folder. Let's copy the files to your desktop. You can extract an archive by right-clicking the archive file's icon inside your file browser and pressing the appropriate entry in the context m...
null
null
null
null
null
25964
1
null
2011-02-12T13:41:41.043
4
1111
<p>any scripting language will do, to check when the clipboard (both primary and clipboard) contents change, so that specific actions can be executed.</p>
null
null
null
2011-05-16T05:50:58.163
How to check if clipboard contents have changed from a script, other than polling?
[ "clipboard", "clipboard-manager" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You can access the Gtk Clipboard by a gtk script wrapper such as Pygtk for Python. It has functions for waiting for different kinds of clipboard input while keeping the main event loop going. Please see the <a href=\"http://developer.gnome.org/pygtk/stable/class-gtkclipboard....
null
null
null
null
user10695
25966
1
null
2011-02-12T13:56:48.880
7
4908
<p>How can I switch between fglrx and ati (open source) drivers without uninstalling fglrx? The thing is I'm using FGLRX on a daily basis, because it's better for movies--OS driver displays annoying horizontal line while playing movies. FGLRX also does this, but it's less visible. That's only disadvantage of OS driver.</p> <p>When I want to plug in external monitor with different resolution than my laptop's LCD I have to use open source driver, because FGLRX can't display two different resolutions at the same time.</p> <p>I can uninstall FGLRX, but it's rather inconvenient to do this all the time. I've noticed that when I'm using FGLRX there is xorg.conf file and when I uninstall it, then the file is missing.</p> <p>So my question is how to switch between them? It'll be perfect if I could do this without restarting my computer either.</p> <p>I'm using Ubuntu 10.10, laptop/netbook MSI U250.</p>
10509
235
2011-02-12T20:38:26.200
2011-04-14T07:40:20.253
How can I switch between fglrx and ati drivers?
[ "10.10", "drivers", "ati", "fglrx" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Unforunately you cannot switch between open and closed source graphic drivers as they need to install kernel modules.</p>\n\n<p>If you need different settings you may consider a dual boot setup.</p>\n", "commentCount": "1", "comments": [ { "creationDate"...
null
null
null
null
null
25967
1
null
2011-02-12T13:58:28.440
3
2304
<p>I recently installed <a href="https://secure.logmein.com/products/hamachi2/" rel="nofollow">hamachi²</a> and haguichi on my 10.10 machine. It works, but it loses its connection every few minutes and I have to reconnect. </p> <p>I looked into this, and apparently I need to set the KeepAlive in the configuration file to 100. This shouldn't be a hard task, so I looked for the hamachi directory. I checked the obvious place: <code>/home/username/.hamachi</code> ... but this directory doesn't exist. (Yes, I did enable hidden files.)</p> <p>After doing a file search for hamachi, it returned nothing either. I'm in the dark here, what am I missing?</p>
10286
235
2011-02-12T20:37:47.857
2011-05-19T21:52:03.973
Hamachi² configuration file... Where is it?
[ "10.10", "configuration", "vpn" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2011-04-16T20:05:18.807", "id": "39604", "postId": "25967", "score": "0", "text": "How did you install it (or from where)?", "userDisplayName": null, "userId": "8844" } ]
null
[ { "accepted": null, "body": "<p>You can also use Haguichi, this is a GUI for Hamachi.</p>\n\n<p>See:\n<a href=\"http://www.webupd8.org/2010/10/install-hamachi2-and-haguichi-gui-for.html\" rel=\"nofollow\">http://www.webupd8.org/2010/10/install-hamachi2-and-haguichi-gui-for.html</a></p>\n\n<p>I have seen the...
null
null
null
null
null
25968
1
null
2011-02-12T13:59:02.060
1
253
<p>After I log into unity-2d i see gnome panel and some other services working along side with unity services and I cannot get rid of these services.</p> <p>Besides, unity panel gets locked sometimes and i have to logout and login. Why?</p>
327
7035
2011-06-07T02:48:16.910
2011-09-19T10:59:00.490
Why Gnome desktop services work simultaneously with Unity desktop?
[ "unity", "unity-2d" ]
1
1
CC BY-SA 3.0
[ { "creationDate": "2011-04-14T02:48:54.590", "id": "39048", "postId": "25968", "score": "1", "text": "Does this still happen? This was an old problem early in the alphas.", "userDisplayName": null, "userId": "235" } ]
null
[ { "accepted": null, "body": "<p>May be this can fix, </p>\n\n<p>get your terminal and type this:\n\"killall unity\"</p>\n\n<p>and remove unity in the startup services or whatever its called.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA ...
null
null
null
null
null
25970
1
25982
2011-02-12T14:07:11.557
0
77
<p>I run into wireless router and networking issues very often. I'd like to finally just read a book on how to trouble and diagnose problems, using tools like ifconfig, editing files like /etc/network/interfaces, and whatever. Any recommendations?</p>
8986
8986
2011-02-12T14:14:01.877
2011-02-12T15:45:10.450
What book should I read to learn how to deal with networking issues?
[ "networking", "wireless", "wireless-access-point" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T14:24:21.520", "id": "28472", "postId": "25970", "score": "0", "text": "Really, the best source is internet. Why not post your details here or ubuntuforums.org and someone will be be able to help you?", "userDisplayName": null, "userId": "8973" }, { ...
{ "accepted": true, "body": "<p>Also you may want to look at Amazon.com for books on the subject. Many times there are used books at discount price that will give you want you need. </p>\n\n<p>I found a \"Linux Network Administration\" that normally lists for ~35USD for 12!</p>\n\n<p>Hope this helps.</p>\n\n<p>Randy3011</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": "2011-02-12T23:21:35.697", "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T15:45:10.450", "id": "25982", "lastActivityDate": "2011-02-12T15:45:10.450", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "10701", "parentId": "25970", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Also you may want to look at Amazon.com for books on the subject. Many times there are used books at discount price that will give you want you need. </p>\n\n<p>I found a \"Linux Network Administration\" that normally lists for ~35USD for 12!</p>\n\n<p>Hope this helps.</p>\n\...
2011-02-12T23:21:35.697
null
null
null
null
25974
1
26000
2011-02-12T14:39:04.490
6
119589
<p>here's my problem. When I log in I'm beeing asked for a password connecting to the internet which is strange because I'm the only user and the admin. I have auto log in and it never asks for passwords, (except when i do administrative tasks.) I have looked in the menu (System --> preferences, but i can't find any topic that say's passwords or similar. the only place where I have found a way to change my password is my user ((System --> preferences --> user and groups). I did try to take screenshots but nothing happened, which also is strange.</p> <p>I'm running ubuntu 10.04 LTS Desktop on my Asus 1201n (12").</p>
10698
null
null
2021-02-24T05:30:20.357
How do I change the "Default" password
[ "10.04" ]
4
5
CC BY-SA 2.5
[ { "creationDate": "2011-02-12T16:11:37.533", "id": "28496", "postId": "25974", "score": "2", "text": "Are you connecting via wireless or wired connection. I had this same problem with a wireless connection when I was set up for auto login. I think the problem is that the WPA password for the wir...
{ "accepted": true, "body": "<p>It's also possible that since your using auto-login, you might be hitting another problem - sometimes network manager doesn't seem to save the WEP/WPA key properly. You can usually get round this by opening the connection and changing it \"available to all users\".</p>\n\n<p>So, right click on network manager, choose \"Edit Connections\". Find your connection, and choose \"Properties\", then tick the \"Available to all users\" box at the bottom.</p>\n\n<p><img src=\"https://i.stack.imgur.com/y780H.jpg\" alt=\"enter image description here\"></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2011-02-12T18:14:18.800", "id": "28525", "postId": "26000", "score": "0", "text": "This answer is the same as the comment is on my first post. But it works! woho!", "userDisplayName": null, "userId": "10698" }, { "creationDate": "2011-02-12T18:29:21.313", "id": "28533", "postId": "26000", "score": "0", "text": "True. Didn't think it was the same issue though, so I put two answers to cover both possibilities. Answers shouldn't be made in comments (although sometimes it just happends!) - only \"answers\" can be \"accepted\".", "userDisplayName": null, "userId": "861" }, { "creationDate": "2011-02-23T12:35:13.977", "id": "30635", "postId": "26000", "score": "0", "text": "well we have to just up vote the comment then.. :)", "userDisplayName": null, "userId": "10698" }, { "creationDate": "2011-06-08T12:10:08.527", "id": "52631", "postId": "26000", "score": "0", "text": "There is only one user so LOL", "userDisplayName": null, "userId": "10698" }, { "creationDate": "2011-06-08T13:40:26.173", "id": "52646", "postId": "26000", "score": "0", "text": "That's irrelevant, really - the main thing is that ticking that box bypasses the use of gnome-keyring for saving your password. Instead, it's dumped in a root-only-readable file somewhere in /etc. It's less secure, but seems more reliable. Having said that, I haven't seen this \"bug\" since Lucid LTS 10.04. Maverick 10.10 has been fine for me. I haven't upgraded to Natty 11.04 yet, so can't comment.", "userDisplayName": null, "userId": "861" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T17:10:20.023", "id": "26000", "lastActivityDate": "2011-02-12T17:10:20.023", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "861", "parentId": "25974", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>In order to change the root password, open a terminal</p>\n\n<pre><code>sudo passwd\n</code></pre>\n\n<p>When asked, provide your user password in order to perform sudo tasks, then enter the \"new UNIX password\" twice.</p>\n\n<p>Now the root user has a new password.</p>\n\n<...
null
null
null
null
null
25976
1
null
2011-02-12T14:50:18.200
3
3800
<p>I proposed to implement this feature in <a href="http://brainstorm.ubuntu.com/idea/27164/" rel="nofollow">http://brainstorm.ubuntu.com/idea/27164/</a>, but it was marked as already implemented. Could someone shed light on how i can do it? I would like a shortcut to a specific connection (vpn or broadband) on my panel (one click connect).</p>
10660
null
null
2011-05-06T10:32:55.547
NetworkManager connection shortcut
[ "network-manager", "shortcuts" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>NetworkManager has D-Bus interface, which you can use in other programs or scripts.</p>\n\n<p>For example, I managed to connect one of my network-manager's VPN connections using this command:</p>\n\n<pre><code> qdbus --system \\\n org.freedesktop.NetworkManager \\\n /org/...
null
null
null
null
null
25979
1
26175
2011-02-12T15:39:08.277
6
13997
<p>In GNOME panel we could add a notification indicator by doing "Add to Panel". How to do the same in Unity 2D?</p> <p>Well what I mean is how to add additional indicators like Weather, RSS... that seems to be missing as I cannot right click on the panl and add one.</p>
9013
235
2011-05-03T20:27:56.157
2011-05-05T01:40:17.317
Adding a indicator / panel in unity panel
[ "unity", "indicator", "panel", "unity-2d" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-13T11:15:12.430", "id": "28647", "postId": "25979", "score": "0", "text": "Well what I mean is how to add additional indicators like Weather, RSS... that seems to be missing as I cannot right click on the panl and add one.", "userDisplayName": null, "userId": "...
{ "accepted": true, "body": "<p>Neither Unity or Unity 2D will support applets, see here for more information:</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/10597/can-i-use-gnome-applets-in-unity\">Can I use GNOME applets in Unity?</a></li>\n<li><a href=\"https://askubuntu.com/questions/30334/list-of-application-indicators\">What Application Indicators are available?</a> has alternatives</li>\n</ul>\n\n<p><a href=\"https://wiki.ubuntu.com/Unity/Places/\" rel=\"nofollow noreferrer\">Unity Lenses</a> might be an option if you'd like to extend Unity.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-14T05:04:41.880", "id": "28837", "postId": "26175", "score": "0", "text": "Thanks Jorge, I read thru that and seems like Places is the best option.", "userDisplayName": null, "userId": "9013" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-13T19:34:45.300", "id": "26175", "lastActivityDate": "2011-05-03T20:27:36.500", "lastEditDate": "2017-04-13T12:23:44.677", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "25979", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>Neither Unity or Unity 2D will support applets, see here for more information:</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/10597/can-i-use-gnome-applets-in-unity\">Can I use GNOME applets in Unity?</a></li>\n<li><a href=\"https://askubuntu.com/questions/30334/l...
null
null
null
null
null
25981
1
26012
2011-02-12T15:44:43.903
4
4140
<p>I have run <code>sudo fdisk -l</code> and have got the following information:</p> <pre><code>Disk /dev/sda: 120.0 GB, 120034123776 bytes 255 heads, 63 sectors/track, 14593 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes </code></pre> <p>This utility shows the whole size of the hard disk (<code>120034123776 bytes</code>) and its number of heads (<code>255 heads</code>), sectors per track (<code>63 sectors/track</code>) and number of cylinders (<code>14593 cylinders</code>). </p> <p>Multiplying heads X sectors per track X number of cylinders we must have number of sectors in the disk. </p> <pre><code>255 X 63 X 14593 = 234436545 </code></pre> <p>Having in mind that every sector is of size 512 bytes, we have </p> <pre><code>234436545 X 512 = 120031511040 </code></pre> <p>In fact, <code>120031511040 != 120034123776</code>, therefore, the question is: does <em>fdisk</em> shows incorrect information or there is something that I have missed in my calculations?</p>
10552
null
null
2011-02-12T19:00:40.373
Which numbers does fdisk show?
[ "partitioning", "gparted" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I'd say the use of <code>cylinder</code> is now deprecated and used mainly for historical reasons.</p>\n\n<p>By looking at the <code>fdisk</code> source code it seems to me that the <em>total number of bytes of a device</em> is retrieved via an <em>ioctl</em> call</p>\n\n<pre><code> if (ioctl(fd, BLKGETSIZE64, bytes) &gt;= 0)\n return 0;\n</code></pre>\n\n<p>and the other figures are then derived from this. </p>\n\n<p>For instance the number of cylinders is calculated using</p>\n\n<pre><code>llcyls = total_number_of_sectors / (heads * sectors * sector_factor);\n</code></pre>\n\n<p>The \"problem\" here is that the result of this division is truncated (rounded down), so it is bound to be imprecise.</p>\n\n<p>Using your <code>fdisk</code> output as an example</p>\n\n<pre><code>120034123776 bytes / 512 bytes_per_sector / 255 / 63 = 14593.3176471 cylinders\n</code></pre>\n\n<p>but the <code>fdisk</code> output will round this down to <code>14593</code>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2011-02-12T19:38:41.927", "id": "28544", "postId": "26012", "score": "0", "text": "+1 that's very nice answer! I like your idea to look in the source code. Could you please tell which version of the fdisk have you looked at?", "userDisplayName": null, "userId": "10552" }, { "creationDate": "2011-02-12T19:45:02.353", "id": "28546", "postId": "26012", "score": "0", "text": "Yes, it is `util-linux-ng-2.17.2`, see f.e. http://packages.ubuntu.com/maverick/util-linux", "userDisplayName": null, "userId": "9340" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2011-02-12T19:00:40.373", "id": "26012", "lastActivityDate": "2011-02-12T19:00:40.373", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "9340", "parentId": "25981", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Hmmm, as far as I see the difference is marginal, so it can be caused by the different meaning of \"kilo\", \"mega\" and \"giga\" (prefixes) in the IT world and the SI: in normal life eg \"kilo\" means 1000, while in IT the common habit was 1024. Now the confusion is even big...
null
null
null
null
null
25983
1
null
2010-12-07T07:06:13.043
0
141
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/16508/hardware-drivers-item-missing-from-menu">&ldquo;Hardware Drivers&rdquo; item missing from menu</a> </p> </blockquote> <p>I just installed the newest version of Ubuntu (10.10) and I am trying to get the appropriate drivers installed for the nvidia ion.</p> <p>However there is no system > administration > hardware drivers option in the toolbar. Does this not exist in this version of ubuntu?</p> <p>Do you know of any good links to installing the right drivers for the nvidia ion on ubuntu?</p> <p>Thanks in advance!</p>
null
-1
2017-04-13T12:23:09.107
2011-02-12T21:12:42.850
Hardware Divers option is not there
[ "10.10", "drivers" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-07T07:41:41.537", "id": "28490", "postId": "25983", "score": "1", "text": "System->Administration->Additional Drivers ??", "userDisplayName": null, "userId": "5340" } ]
null
[ { "accepted": null, "body": "<p>The name was change to <strong>Additional Drivers</strong> as one of the <strong>One Hundred Paper Cuts</strong>. See here : <a href=\"https://bugs.launchpad.net/hundredpapercuts/+bug/409338\" rel=\"nofollow\">Change the name of \"Hardware drivers\"</a></p>\n\n<p>The principa...
null
null
2011-02-13T10:00:30.767
null
zucchininja
25987
1
25992
2011-02-12T16:11:49.700
11
5992
<p>I want to see the content of the sector 0 (mbr) of my hard drive. It is possible?</p>
10552
527764
2018-06-28T19:24:27.343
2018-06-28T19:24:27.343
How do I dump disk sectors?
[ "hard-drive", "mbr" ]
2
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Yes, sure.</p>\n\n<pre><code>$ dd if=/dev/sda of=mbr bs=512 count=1\n1+0 records in\n1+0 records out\n512 bytes (512 B) copied, 0.000188571 s, 2.7 MB/s\n\n$ stat -c %s mbr\n512\n\n$ hd mbr\n00000000 eb 48 90 d0 bc 00 7c 8e c0 8e d8 be 00 7c bf 00 |.H....|......|..|\n00000010 06 b9 00 02 fc f3 a4 50 68 1c 06 cb fb b9 04 00 |.......Ph.......|\n00000020 bd be 07 80 7e 00 00 7c 0b 0f 85 10 01 83 c5 10 |....~..|........|\n00000030 e2 f1 cd 18 88 56 00 55 c6 46 11 05 c6 46 03 02 |.....V.U.F...F..|\n00000040 ff 00 00 20 01 00 00 00 00 02 fa 90 90 f6 c2 80 |... ............|\n00000050 75 02 b2 80 ea 59 7c 00 00 31 c0 8e d8 8e d0 bc |u....Y|..1......|\n00000060 00 20 fb a0 40 7c 3c ff 74 02 88 c2 52 be 7f 7d |. ..@|&lt;.t...R..}|\n00000070 e8 34 01 f6 c2 80 74 54 b4 41 bb aa 55 cd 13 5a |.4....tT.A..U..Z|\n00000080 52 72 49 81 fb 55 aa 75 43 a0 41 7c 84 c0 75 05 |RrI..U.uC.A|..u.|\n00000090 83 e1 01 74 37 66 8b 4c 10 be 05 7c c6 44 ff 01 |...t7f.L...|.D..|\n000000a0 66 8b 1e 44 7c c7 04 10 00 c7 44 02 01 00 66 89 |f..D|.....D...f.|\n000000b0 5c 08 c7 44 06 00 70 66 31 c0 89 44 04 66 89 44 |\\..D..pf1..D.f.D|\n000000c0 0c b4 42 cd 13 72 05 bb 00 70 eb 7d b4 08 cd 13 |..B..r...p.}....|\n000000d0 73 0a f6 c2 80 0f 84 ea 00 e9 8d 00 be 05 7c c6 |s.............|.|\n000000e0 44 ff 00 66 31 c0 88 f0 40 66 89 44 04 31 d2 88 |D..f1...@f.D.1..|\n000000f0 ca c1 e2 02 88 e8 88 f4 40 89 44 08 31 c0 88 d0 |........@.D.1...|\n00000100 c0 e8 02 66 89 04 66 a1 44 7c 66 31 d2 66 f7 34 |...f..f.D|f1.f.4|\n00000110 88 54 0a 66 31 d2 66 f7 74 04 88 54 0b 89 44 0c |.T.f1.f.t..T..D.|\n00000120 3b 44 08 7d 3c 8a 54 0d c0 e2 06 8a 4c 0a fe c1 |;D.}&lt;.T.....L...|\n00000130 08 d1 8a 6c 0c 5a 8a 74 0b bb 00 70 8e c3 31 db |...l.Z.t...p..1.|\n00000140 b8 01 02 cd 13 72 2a 8c c3 8e 06 48 7c 60 1e b9 |.....r*....H|`..|\n00000150 00 01 8e db 31 f6 31 ff fc f3 a5 1f 61 ff 26 42 |....1.1.....a.&amp;B|\n00000160 7c be 85 7d e8 40 00 eb 0e be 8a 7d e8 38 00 eb ||..}.@.....}.8..|\n00000170 06 be 94 7d e8 30 00 be 99 7d e8 2a 00 eb fe 47 |...}.0...}.*...G|\n00000180 52 55 42 20 00 47 65 6f 6d 00 48 61 72 64 20 44 |RUB .Geom.Hard D|\n00000190 69 73 6b 00 52 65 61 64 00 20 45 72 72 6f 72 00 |isk.Read. Error.|\n000001a0 bb 01 00 b4 0e cd 10 ac 3c 00 75 f4 c3 00 00 00 |........&lt;.u.....|\n000001b0 00 00 00 00 00 00 00 00 29 b6 ef 39 00 00 00 00 |........)..9....|\n000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|\n000001d0 01 6f 83 fe bf f6 af 35 1b 00 88 d8 9e 00 00 fe |.o.....5........|\n000001e0 ff ff 0f fe ff ff 2a 32 a2 01 97 58 ff 10 00 00 |......*2...X....|\n000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|\n00000200\n</code></pre>\n\n<p>See <a href=\"http://www.manpagez.com/man/1/dd/\" rel=\"nofollow\">man dd</a> and <a href=\"http://www.manpagez.com/man/1/hexdump/\" rel=\"nofollow\">man hd</a> for how this works.</p>\n\n<hr>\n\n<p>And yeah. <strong>Be careful with dd!</strong> Don't abuse <code>sudo</code>; regular user's account with group <code>disk</code> membership is sufficient for reading blocks. If it says \"permission denied\" — then you may be trying to overwrite hard drive, take a closer look at what you are doing. <strong>If your MBR will get erased, you will lose your partition table.</strong> It will be hard to restore (albeit not impossible). Watch carefully your hard drive device: <code>/dev/sda</code>, don't confuse with <code>/dev/sda1</code> or <code>/dev/sdb</code>. Be careful and don't rush. Read <code>man dd</code>. Good luck.</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2011-02-12T16:34:18.557", "id": "28499", "postId": "25992", "score": "0", "text": "@ulidtko: +1, good answer, I have done another way around: sudo cat /dev/sda > mydump, ctrl+c, sudo ghex mydump. Do you think makes sense?", "userDisplayName": null, "userId": "10552" }, { "creationDate": "2011-02-12T16:38:16.993", "id": "28501", "postId": "25992", "score": "0", "text": "@Tim, `dd` is better.", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-02-12T16:42:44.293", "id": "28503", "postId": "25992", "score": "0", "text": "@ulidtko: I prefer dd, but cat is also fine, although not as clean solution as dd. By not clean I mean there is no way to say: please copy only 512 bytes, in this case ctrl+c is used. Thanks for the tips,I find them helpful.", "userDisplayName": null, "userId": "10552" }, { "creationDate": "2011-02-12T17:17:46.370", "id": "28511", "postId": "25992", "score": "1", "text": "@ulidtko: Hmm it's a bit odd to say that \"don't use sudo ... regular user's account is sufficient\". I guess this is already a BIG security hole if a user can read the disk content via the /dev/ entry then (s)he can read any files, etc, what would be not possible via the filesystem because of permission issues. If it works for you in your system as regular user: too bad ... On my system /dev/sda is cannot be even read by regular user, unless (s)he belongs to the \"disk\" group ... But not by \"regular user\" that is _really_ dangerous, again!", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-12T17:26:07.733", "id": "28514", "postId": "25992", "score": "1", "text": "@LGB: he says don't abuse sudo :-)", "userDisplayName": null, "userId": "10552" }, { "creationDate": "2011-02-12T17:27:13.550", "id": "28515", "postId": "25992", "score": "0", "text": "@LGB, I do belong to `disk` group, so it works for me. You are right, this is kind of dangerous to give such privilege to *any* user. I just insisted on not *abusing* sudo, by means of not ignoring useful messages which could stop you from doing a Bad Thing.", "userDisplayName": null, "userId": "9061" }, { "creationDate": "2011-02-12T18:18:07.613", "id": "28526", "postId": "25992", "score": "0", "text": "@Tim: yeah, but the main point is \"regular user's account is sufficient for reading blocks\". It's not true. if it is, a very big security problem. User may part of the `disk` group, but then it's not so a \"regular\" user but a one who have quite serious extra privileges in the system which can be used to bypass virtually any protection which is provided by the file unix ACL mechanism (let it be std unix acl, or extended acl/attr scheme).", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-12T18:19:43.417", "id": "28527", "postId": "25992", "score": "1", "text": "@ulidtko: ok, fine, though I even removed myself from the disk group, it can be dangerous, if someone somehow break in with _my_ user, full access can be done for the disk ... And about \"not abusing sudo\": ok, my English is far from being perfect, it happens time to time that I miss something to realize from a sentence, sorry about that!", "userDisplayName": null, "userId": "10579" }, { "creationDate": "2011-02-12T19:47:49.860", "id": "28548", "postId": "25992", "score": "1", "text": "@ulidtko, +1 for warnings. This is one of the places where you really can mess things up as root in a hurry.", "userDisplayName": null, "userId": "963" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-02-12T16:28:37.597", "id": "25992", "lastActivityDate": "2014-03-04T14:17:20.717", "lastEditDate": "2014-03-04T14:17:20.717", "lastEditorDisplayName": null, "lastEditorUserId": "9061", "ownerDisplayName": null, "ownerUserId": "9061", "parentId": "25987", "postTypeId": "2", "score": "14" }
[ { "accepted": true, "body": "<p>Yes, sure.</p>\n\n<pre><code>$ dd if=/dev/sda of=mbr bs=512 count=1\n1+0 records in\n1+0 records out\n512 bytes (512 B) copied, 0.000188571 s, 2.7 MB/s\n\n$ stat -c %s mbr\n512\n\n$ hd mbr\n00000000 eb 48 90 d0 bc 00 7c 8e c0 8e d8 be 00 7c bf 00 |.H....|......|..|\n000000...
null
null
null
null
null