Penguin
Blame: QuestionsFromWindowsUsers
EditPageHistoryDiffInfoLikePages
Annotated edit history of QuestionsFromWindowsUsers version 25, including all changes. View license author blame.
Rev Author # Line
17 IanMcDonald 1 I figured the Wiki would be better for getting a useful response to these for "~DrWho?"
14 FilipeMagro 2 I've attempted to reformulate the questions to get at what I thought was actually being asked.
3
4 NOTE: I'm far too lazy to be actually answer them, and I don't use a "normal" setup, so my answers would be less than useful :) (plus, I'm on FreeBSD ;)
5
6 ----
7
8 Q: Ok so how do I find com1 on Linux?
9
10 Reformulation: What do I need to know about serial ports in Linux? Is there an equivalent to "com1" from DOS/Windows?
11
12 A: Serial ports are called /dev/ttyS0, /dev/ttyS1 etc under Linux. The reason for this is that anything that can be used like a terminal is called a "tty", and therefore serial tty's are called "/dev/ttySx". Linux also numbers from 0 not from 1, so COM1: under Windows is usually /dev/ttyS0 under Linux.
13
14 Many distros will automatically detect a modem and make a symlink from the appropriate serial device to /dev/modem. If you have a serial mouse, /dev/mouse will point to the serial device the mouse is using.
15
16 The program setserial(8) can be used to configure serial port properties under Linux. (like mode under windows; but do you know anyone who uses that?!! Stuff like that is normally handled by the application) There may be a [GUI] tool, [YMMV].
17
18 ----
19
17 IanMcDonald 20 Q: Where is the control panel to find what com port my modem is connected too?
14 FilipeMagro 21
22 Reformulation: How do I find out what serial port my modem is connected to?
23
15 PeterHewett 24 A: Some distros provide [GUI] tools to do system configuration, eg [Mandriva Control Center|Mandriva]. Many distros (eg RedHat's KudZu) will auto detect a modem on bootup and create a /dev/modem symlink for you.
14 FilipeMagro 25
26 ----
27
28 Q: Where is the dial-up networking icon?
29
30 Reformulation: How do I configure and use some sort of dial up network?
31
17 IanMcDonald 32 A: This varies from distro to distro. Probably the biggest problem in this area is that there are SO MANY GUI tools to choose from. RedHat has an "Internet Configuration Wizard", and will also let you set up a dialout connection under "Network configuration". This is very similar to how XP handles things.
18 BruceKingsbury 33
34 Ubuntu lets you configure dialup connections under "Networking", and for easy control of the connection you can add the "Modem Monitor" applet to your panel.
14 FilipeMagro 35
23 IanMcDonald 36 kppp is the only other GUI tool I've used and it's also very easy. I've also heard ~ModemLights mentioned favorably.
14 FilipeMagro 37
38 Worst possible case, you might need to get help setting up pppd(8) 'the hard way', but if you get it set up for DialOnDemand you'll never need to worry about it again because your computer will just dial out by itself when any application tries to use the internet.
39
40 ----
41
17 IanMcDonald 42 Q: I click on an [MP3] file and it does not play?
14 FilipeMagro 43
44 Reformulation: How do I play mp3's? Can I make them play from some sort of file manager?
45
15 PeterHewett 46 A: Ensure that a mp3 player is installed, such as mplayer, xmms, etc.
18 BruceKingsbury 47
48 Due to patent issues most Linux distro's won't play or encode mp3's by default, but the capability is easily added, usually just by downloading a package or two. Example;
49 https://help.ubuntu.com/community/RestrictedFormats will tell you how to get mp3's, wma's, and most other formats working in Ubuntu.
14 FilipeMagro 50
51 ----
52
53 Q: Where is explorer?
54
55 Reformulation: How do I manage my files (using a GUI)?
56
57 A: See FileManager - your DesktopEnvironment will probably give you a "Start Here" or "user's Home" option, which is a good place to start.
58
59 ----
60
61 Q: Where is MicrosoftOutlook?
62
63 Reformulation: What programs are there offering similar functionality to MS Outlook? -- Which may mean, 'How do I read mail', which is actually a different question to the reformulated one above.
64
65 A: [Evolution] offers most, if not all of Outlooks functionality.
66
67 ----
68
17 IanMcDonald 69 Q: Where is ~ScanDisk and Defrag?
14 FilipeMagro 70
71 Reformulation: Do I need to defragment my filesystems? How about checking for and correcting errors?
72
16 CraigBox 73 A: The Linux filesystems (such as [Ext2], [Ext3], [ReiserFS]) don't normally require defragmentation the same way windows FileSystem~s do.
14 FilipeMagro 74
16 CraigBox 75 A: fsck(8) (__F__ile __S__ystem __C__hec__k__) is the program which repairs damaged filesystems. most (all?) distro's will do this on boot if a filesystem is damaged. With the recent advent of [journalling file systems|FileSystem] even this isn't required, Linux file systems shouldn't encounter corruption except for extreme hardware failure
14 FilipeMagro 76
77 ----
78
79 Q: Where is the antivirus software?
80
15 PeterHewett 81 A: Where are the [viruses|Virus]? In general Linux machines don't have antivirus software because viruses are a reasonably unknown threat to Linux users. You can buy Virus scanners for Linux if you really want (usually because you want to scan emails that are being sent to Windows clients).
14 FilipeMagro 82
83 ----
84
85 Q: Where is the Network Neighborhood?
86
87 Reformulation: How do I interact with an MS Windows network?
88
89 A: type smb:// into Nautilus, or Go -> My Computer -> Windows Network
90
91 ----
92
93 Q: Where is the file / print sharing?
94
95 Reformulation: How do I make my files and printers available over a network?
96
97 A: [Samba] - RedHatLinux comes with a nice applet to set up sharing anymore
98
99 ----
100
101 Q: Where is My Documents?
102
103 Reformulation: Where would my documents normally be stored?
104
22 BruceKingsbury 105 A: In your home directory, which is /home/username - can be referred to as "$HOME" or "~~" in the command line.
14 FilipeMagro 106
107 ----
108
109 Q: Where is Program Files?
110
111 Reformulation: Where do my applications get installed to?
112
113 A: /bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/bin:/usr/X11R6/bin
114
24 BruceKingsbury 115 If you stick with a packaged distro such as RedHat, [Mandriva], [Ubuntu] or [Debian], applications will be put somewhere sensible that you never need to worry about and an appropriate menu item will get added so you can run them.
14 FilipeMagro 116
117
118 If you really must know; "which programname" will tell you where programname is getting run from, and "locate programname" will find directories, configuration files, etc. that are probably related to it.
119
120
121 ----
122
123 Q: I plug my scanner / printer into the USB port, but the new hardware window does not pop up.
124
125 Reformulation: How do I setup new hardware (in particular USB)? Is it possibly to do this automatically when the device is plugged in?
126
127 A lot of supported hardware just 'appears' when you plug it in, eg cameras, scanners, cd writers. Run the appropriate application and you might find the device is already configured.
128
24 BruceKingsbury 129 In [Ubuntu], "System > Preferences > Removeable Drives and Media" has an option to run programs automatically when various devices are connected, although this is more than most users need. Printers are configured under "System > Administration > Printing" and the correct port and printer type is usually autodetected for you. Most scanners are detected on the fly by xsane, although some types (like parallel port scanners) need a slight configuration change first.
20 BruceKingsbury 130
131 If you use RedHat, try running the printer config (System settings / Printing). It might be automatically detected, and a lot of printers are already supported.
132
14 FilipeMagro 133
134 ----
135
136 Q: I go too the scanner / printer / modem / whatever web site and there are no drivers for linux, so where do I find them?
137
138 Reformulation: How do I work with various types of hardware? Do I need special software from the manufacturer?
139
20 BruceKingsbury 140 A: Linux drivers tend to be written based on the chipset rather than for individual devices, so if you find some cheap tiwanese card based on a de4x5 chip Linux will use it right away, while Windows is likely to expect specific drivers that can only be found on some obscure .tw website.
14 FilipeMagro 141
20 BruceKingsbury 142 Many common chipsets are well supported under Linux, and with any mainstream distro the hardware will start working as soon as you plug it in.
14 FilipeMagro 143
144 ----
145
146 Q: Where is my scanners TWAIN driver?
147
148 Reformulation: How do I get drivers for my scanner?
149
150 Plug it in. Run SANE. It's very likely already working. If not, bring it along to a meeting.
151
152 ----
153
154 Q: I put the install disk into my PC with 256Mb of RAM, but it wont run the installer as it says I only have 64MB of RAM?
155
156 Reformulation: Why won't it detect more than 64Mb of RAM?
157
23 IanMcDonald 158 It probably also says what you can try to resolve this problem; if you KNOW you have more ram, reboot and type 'linux mem=256M' at the boot prompt. I'll bet this hint is RIGHT THERE on the same screen because it's a well known issue with some older BIOSes. This shouldn't affect you on a more modern PC.
14 FilipeMagro 159
160
161 ----
162
163 Q: The setup program asks me what monitor I have and its not listed so what do I do? I have drivers for windows can I use some info from them?
164
165 Reformulation: How do I get my screen going with XFree86?
166
167 Under windows properties, find out what resolution and refresh rate you were using. The monitor can do at least that. Alternatively, try fairly high numbers and use the 'test' button until you find a resolution and refresh the monitor likes.
168
169 ----
170
171 Q: I start my computer in Linux, where is my windows partiton?
172
173 Reformulation: How do I access Windows filesystems from Linux?
174
175 A: During the install, it identified your windows partition. If you're using FAT32 and thought ahead, you might have assigned that a mount point such as /mnt/windows so you'd be able to access it from Linux.
176
23 IanMcDonald 177 If you forgot to do that, or if you're running a 'marginally supported' filesystem like [NTFS] it's still not too late but it's a bit harder to set up. Bring the box along to a meeting and ask for help.
14 FilipeMagro 178
20 BruceKingsbury 179 You can also access your Linux partitions from the windows side with a number of third-party tools. Google [ext3+linux|http://www.google.co.nz/search?q=ext3%20windows] or [reiserfs+linux|http://www.google.co.nz/search?q=reiserfs%20windows].
14 FilipeMagro 180
181 ----
182
183 Q: Where is my print queue?
184
185 Reformulation: How do I manage printing?
186
24 BruceKingsbury 187 RedHat has a very windows-like print manager. So does [Ubuntu]. You should be able to figure it out.
14 FilipeMagro 188
189
190 ----
191
192 Q: Where is the add / remove programs?
193
194 Reformulation: How do I install and remove software?
195
196 A: This depends on your distribution, for debian you usually use apt(8)
197 For redhat, you run 'System settings / Packages' and get a package manager remarkably like windows' add/remove programs.
25 ChrisRodliffe 198
199 There are also graphical package manager frontends such as Kpackage (under KDE) or
200 Synaptic (under Gnome).
14 FilipeMagro 201
24 BruceKingsbury 202 In [Ubuntu] there's an "Add/Remove programs" option at the bottom of the main menu.
14 FilipeMagro 203
204 ----
205
206 Q: I have jetstream with an internal modem, where is the PPPoA in Linux? How do I configure Linux for PPPoA?
207
208 A: [LinuxPPPoA]
209
210 ----
211
212 Q: I have Win2K / XP installed and the setup program warns me it does not support NTFS?
213
23 IanMcDonald 214 Reformulation: Are there any problems with reading [NTFS] file systems? And how do I do it?
14 FilipeMagro 215
23 IanMcDonald 216 A: Since [NTFS] is a closed standard, it's hard to write support for it. Linux can read [NTFS] fairly well, but writing it is still very risky. If you really need to share files between Windows and Linux set up a fat32 partition they can both read. Or transfer all your files to a genuinely open and properly documented filesystem which [both OS's|http://www.google.co.nz/search?q=ext3%20windows] can share.
14 FilipeMagro 217
25 ChrisRodliffe 218 Alternatively you can read your Linux (ext2 and ext3) partitions from within Windows
219 with Explore2fs.exe.
14 FilipeMagro 220
221 ----
222
223 Q: What the hell is a partition? how do I make it?
224
15 PeterHewett 225 A: Instead of treating your hard disk is one large chunk of data, you usually segment it up into smaller sections (called [Partitions|Partition]). Usually an OperatingSystem will require at least one Partition. Linux usually uses at least one extra for swap as well. See PartitioningSuggestions.
14 FilipeMagro 226
227 Partitions are managed using fdisk.exe under windows, fdisk(8) or cfdisk(8) under Linux.
20 BruceKingsbury 228
24 BruceKingsbury 229 You can set up Windows to use different partitions for the system and user data if you want, most experienced users do. And you can just as easily run Linux on a single root partition with a swapfile, the way Windows is typically set up by default.
20 BruceKingsbury 230
14 FilipeMagro 231
232 ----
233
234 Q: What the hell is /usr/var/....?
235
236 A: er, directories.
237 what the hell is C:\windows\system32..?
238
239
240 ----
241
242 Q: Where is notepad! and edit!
243
244 Reformulation: Are there simple graphical and console mode text editors?
245
15 PeterHewett 246 A: gedit, and kate are simple text editors for [Gnome] and [KDE] respectively. nano is a simple console text editor.
14 FilipeMagro 247
248 ----
249
250 Q: Where is the CD writing software?
251
252 Reformulation: How do I burn CDs?
253
15 PeterHewett 254 Try k3b, xcdroast, GnomeToaster, koncd, or any of the several other GUI tools.
20 BruceKingsbury 255
24 BruceKingsbury 256 In [Ubuntu], insert a blank disk and it will ask if you want to write a data CD or an audio CD. It couldn't be easier!
14 FilipeMagro 257
258 ----
259
260 Q: What is all the crap that scrolls as Linux is starting, is it error messages?
261
25 ChrisRodliffe 262 A: Nope, it's Linux telling you what hardware it's detected and how it's configured it. Useful for when your computer crashes on startup to see what hardware or driver is causing the fault. (Windows just hides all that stuff behind its startup screen).
14 FilipeMagro 263
264 ----
265
266 Q: What the hell is a bad super block?
267
268 A: The first block of a partition is the "super block". this contains information about what kind of filesystem it is amongst other things. Without this a filesystem is pretty useless. Never fear, there are backup superblocks. Talk to an advanced user about repairing your (very) broken filesystem.
20 BruceKingsbury 269
23 IanMcDonald 270 And if your [NTFS] partition was this badly corrupted, you would likely see a windows "stop screen" on boot which is even less informative.
14 FilipeMagro 271
272 ----
273
274 Q: How do I back-up my files?
275
276 A: Kinda need more information on this one, back them up where? to CD? to tape? somewhere else on the network?
277
278 ----
279
280 Q: How much disk space do I have free, what the hell is a block?
281
282 A: df -h will show you how much space you have (df, disk free). -h will display it in "human readable format". a block is the smallest unit of allocating data on the disk.
283
284 ----
285
286 Q: What on earth is a dependency? where do I find it as lots of things complain about it when I try too install something.
287
15 PeterHewett 288 A: It's a requirement, something that is needed before this program will work. For instance, to get a [GUI] mail reader working, you'll need a [GUI] first. If a distribution says that "a depends on b" when you're trying to install "a", then it means you need to install "b" first. If a distribution says "a depends on b" when you're trying to remove "b" then you need to remove "a" first. Some distributions handle this automatically for you (see [urpmi] or [APT].
14 FilipeMagro 289
290 ----
291
15 PeterHewett 292 Q: The biggy :- I ring my ISP as I am having problems connecting too the internet and when I tell them I am using Linux they tell me they do not support [Linux], have you thought about using Windows? as we do support that.
14 FilipeMagro 293
294 Reformulation: I can't get things working, where do I go for help?
295
19 DavidHallett 296 A: Hey, thats why we have the LUG right? Try reading around the wiki, we may have already answered your question somewhere here. Try emailing the wlug mailing list (wlug@list.waikato.ac.nz) asking for help, or try asking us on [IRC] irc://irc.undernet.org/%23wlug
21 BruceKingsbury 297
24 BruceKingsbury 298 Most of the options are the same (IP address, DNS, gateway, and so on.) and in very similar places, particularly with [Ubuntu], so often times the best option is to just not tell them you use Linux. Or if you dual-boot, copy the working settings from Windows to the corresponding places in Linux.
21 BruceKingsbury 299
300
14 FilipeMagro 301
302 ----
303 CategoryBeginners

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach() (...repeated 4 times)