

InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
251. |
Solve : FTP Configuration on linux? |
Answer» I am configuring FTP on slackware and FACING PROBLEM regarding users login.Please help. |
|
252. |
Solve : make my read only ntfs read-write in opensuse 11.0? |
Answer» i KNOW THERES a load of info about it on the net, but i don't get it at all :S |
|
253. |
Solve : using ed? |
Answer» If I use ED for a file and then do the FOLLOWING: |
|
254. |
Solve : Distro Suggestion for application?? |
Answer» Looking for a Linux Distro that is easy to install to USE as a dumb work station terminal on P-II and P-III CPU systems w/ 256MB RAM, in which users will work through a Citrix Terminal Window for all their activities. |
|
255. |
Solve : viewing large file? |
Answer» hello all, Maximum file size 2147483647 bytes (2 Gbyte) when a long integer isDear All, there's an OpenSource project allowing the display of large files. It is written in Java language: you can find it at http://sourceforge.net/projects/largefileviewer/ There's a user manual. I tried it with a 1.8GB text file WITHOUT any problem but you have to use parameter -XmxMEMORY_SIZEm when you launch the program. For INSTANCE: java -Xmx700m -jar LargeFileViewer.jar BigFile.txt I never tried with a 4GB file size, in this case the -Xmx700m must be replaced by a bigger value. I heard about some limitations with the JVM heap space (2GB, but must be checked). Hope this will help you. Best Regards. gosh, Java. now i wait for the program to startup, while i sip coffee. |
|
256. |
Solve : difference between awk and sed scripting? |
Answer» the main difference is that in sed script he script is made to excute once, the main difference is that the script is made to excute once in sed but not in awk you have to make your question clear. Both are tools for processing text. awk is a programming language whose main purpose is processing text BUT it can be used as a general purpose programming language as well. yes both can be used as programming language but i dont know whats the difference ,since both are used to search pattern Although sed and awk are similar they do have different purposes. Sed is a stream editor mainly used to change change a field. For example: sed -e 's/oldstuff/newstuff/g' inputFileName > outputFileName would change all OCCURENCES of oldstuff to newstuff in inputFileName, and redirect the output to outputFileName. Awk is more usualy used to format fields. For example: awk '/regex/ { print x }; { x=$0 }' This would search for occurences of /regex/ and print the line FOLLOWING it. This is not hard and fast though as there is some overlap between the two.Helo, Caleneledh and wel come to the CH forum. This may be AWK ward, but no a criticisms of what yu just SED. Most likely ghostdog74 will not RESPOND to your answer. Its been a year from the time he made the post. But maybe he will drop it and see it. But anyway, I enjoyed your answer. Now I know the difference. Here is a reference: http://www.faqs.org/docs/abs/HTML/sedawk.html I put that here so the search engine will have some information for the keywords AWK and SED and what is the difference between AWK and SED. Quote from: Caleneledh on March 11, 2010, 02:03:21 PM Although sed and awk are similar they do have different purposes. sadly, not true. sed is a stream editor to manipulate and change text. All it ever does is using regular expression. PLUS some buffers to hold data. that's about it. It lacks abilities to count (at least easily), or lacks arrays, and other programming constructs. While, awk on the other hand, does the job of sed more easily and more intuitively. it can ALSO REPLACE text as easily as using sed. In the end, they actually do not have different purposes in terms of text/file processing. Code: [Select]sed 's/old/new' file same as Code: [Select]awk '{sub("old","new")}1' file Now, take a csv file that is comma separated and say i want to find the value of the 3rd field. Its more easily done with awk than with sed. eg awk Code: [Select]awk -F"," '{print $3}' csvfile sed Code: [Select]sed 's/\(.[^,]*\),\(.[^,]*\),\(.[^,]*\)\(.*\)/\3/' csvfile You can learn both sed and awk, but frankly, for all your text/file processing + programming needs, just learn awk will do. Quote from: Geek-9pm on March 11, 2010, 02:18:29 PM Most likely ghostdog74 will not respond to your answer. Its been a year from the time he made the post. But maybe he will drop it and see it.well, i seldom click "New replies to your posts", but if i do, i would reply as necessary |
|
257. |
Solve : carriage return not working from command line but ok on cutecom? |
Answer» I have a device that communicates with the PC using the serial port. When communication is established I get a prompt from the device where I'm supposed to type commands and hit ENTER. |
|
258. |
Solve : unix replace character? |
Answer» hi i would like to know how to REPLACE the 2nd/3rd... character in a string without knowing what value it holds.update:i CANOT use sed or awk.. you just do a substring |
|
259. |
Solve : Regarding Decimals in Cshell? |
Answer» Hello... |
|
260. |
Solve : Using GParted? |
Answer» How do you use GParted to resize a partition. I've been trying to figure this out for a while. I was told that I can use the disk that I installed Ubuntu on. I tried it and I could not resize. I wish I can delete the GRUB from the boot loader and start over. When I turn my laptop on it gives me six options After resizing my Vista partition,Posts like the above are found on some Linux forums. Before you go any further, you need to have a backup and the vista install CD. Be aware Linux utilities can erase all data on a laptop, including the recovery partition. Now thien if you are ready, here is an excellent tutorial the tells yuou how. http://www.howtogeek.com/howto/windows-vista/using-gparted-to-resize-your-windows-vista-partition/ Please do not ignore the warnings. |
|
261. |
Solve : Ubuntu Karmic and Fujitsu C2310 Laptop? |
Answer» Hey guys, I just installed Ubuntu a few days ago. I thought it was time to try Linux again. |
|
262. |
Solve : Removed Ubuntu? |
Answer» I removed the partitions to had ubuntu installed using windows xp, now when i restart grub says disk not found then goes to Grub recover> using xp only, i do not have a windows CD. Then you cannot get XP, unless....Quote from: bunafireman825 on January 13, 2010, 07:23:19 PM I want to remove the grub and go back to using xp only, i do not have a windows CD.Is this a brand name COMPUTER or a home built computer?We had a guy build it, then i have changed motherboard/ CPU but kept hard drive with xp on it. Would creating a usb flash drive BOOT disk help, if so how do i create one?I only ASKED because if it was a brand name you could contact the manufacturer and arrange for the disks to be sent out. Alternatively you could also borrow a disk from a friend, make sure it's the same version that you had and REINSTALL it. You would want to use your own key however for activation purposes.Download the XP recovery console disk here: http://www.thecomputerparamedic.com/files/rc.iso Use an image burning program, such as imgburn, to burn the image to a disk. (if you need help with this post back and I'll walk you through it.) Now boot to the disk and press R to enter the recovery console. Then you will be asked which XP installation that you want to log onto. If you have only one XP installation on your computer, press 1 and then press enter. Then you will be asked to enter the administrator password. If there is no password, leave it blank and press enter. You should then see this prompt: C:\Windows> At that prompt type in: cd\ This will take you to a standard C prompt. At that prompt type in: Code: [Select]fixbootand then Code: [Select]fixmbr Good luck!I'm not sure if the recovery console will help him if he's blown out his partitions. But I'm off to work, so I will say good luck Burnafireman825.Quote from: Quantos on January 14, 2010, 05:37:01 AM I'm not sure if the recovery console will help him if he's blown out his partitions. But I'm off to work, so I will say good luck Burnafireman825. no, he deleted the partitions with Ubuntu on them; the only thing left is the grub boot loader in the MBR; the recovery console should be able to rewrite the MBR back to the default. (the default being the one that looks for boot.ini and all that)Thanks to all that helped. JJ 3000 That worked perfectly. Thanks Bunafireman825Quote from: BC_Programmer on January 14, 2010, 06:37:16 AM no, he deleted the partitions with Ubuntu on them; the only thing left is the grub boot loader in the MBR; the recovery console should be able to rewrite the MBR back to the default. (the default being the one that looks for boot.ini and all that) Good catch BC, I must've read that wrong. Good work JJ, You're the man. |
|
263. |
Solve : Chess help? |
Answer» Hello, I'm having a problem with the chess program that comes installed with Ubuntu. It has been working fine until tonight. I though that I might try the 3d mode. When I tried to switch I got: "Unable to enable 3D mode Your system does not have the required software to enable 3D mode". Hi, How do I do that? Do I use the Ubuntu CD? Quote from: BC_Programmer on December 29, 2009, 08:08:34 AM Additionally- are you using Video drivers specific to your card/card family or just the generic type installed with Ubuntu? I'm using the generic drivers. The computer I'm using isn't the best. The video card is low end. It's and NVIDIA RIVA TNT2 with only 64mb of video ram. I don't think that it's capable of running the 3d mode. I went to the NVIDIA website and found the driver for my card but I've run into another problem here: I cant get the driver to install. I followed the instructions on the NVIDIA site. Here's the link: http://www.nvidia.com/object/linux_display_ia32_71.86.11.html I have next to no experience with Linux, but I thought that installing a driver couldn't be too hard. I downloaded the file and saved it to my desktop. Then I opened the terminal and typed in: sh NVIDIA-Linux-x86-71.86.11-pkg1.run Every time I do that I get: Can't open NVIDIA_Linux-x86-71.86.11-pkg1.run I've tried doing this several times. Also I've tried clicking on the driver and running it but that doesn't help either. Could someone please tell me what I'm doing wrong? I'm starting to get really frustrated with this problem. Isn't there some WAY to undo the change I made when I ran that code? Could I FIND that software that I installed and delete it? If so, where would it be?Hello, Go to Applications/Ubuntu Software Centre. Type "Chess" (you might need some manipulations to the query) and you will get relevant software available in the repos and locally installed. Just Uninstall it and after it is done, install it from the list. You could use Synaptic Package Manager alternatively, but thought Software Centre is better for you. Good Luck.I went to Applications -->Add/Remove and typed in chess. It found the software. It is bundled with the other games that come with Ubuntu. So, I removed games bundle, and then restarted the computer. I checked to make sure that chess was removed - it was (along with the other games). So I went back to Add/Remove and reinstalled the bundle. Chess still crashes when I try to launch it! Isn't there some way to undo the change I made when I ran that code? Also, I'm still having the problem with the video driver. I went to System -->Administration -->Hardware Drivers and I get: Searching for drivers and then I get a window that says No proprietary drivers are in use on this system at the top. The window is empty and I can only click on Help Or Close near the bottom of that window. Another person suggested that I might need to make the driver an executable. He said that I might be able to get the NVIDIA driver to install by running the following code into the terminal: Code: [Select]sudo chmod +x NVIDIA_Linux-x86-71.86.11-pkg1.runDo you think that will work? I'm HESITANT to run this code because running a code started my problem with the chess program and I don't want to make things worse. Any advice is appreciated.Hello, I guess I see whats wrong. Try this in a terminal (Applications->Accessories->Terminal): Code: [Select]sudo apt-get remove glchess sudo apt-get install glchess It would be better if you could paste the output of both the commands.Thanks for the help, Unix Guy. I really appreciate your help. I was frustrated with this issue so I decided to just reinstall Ubuntu. I wanted to upgrade to the new version ANYWAY. So I downloaded a fresh iso of version 9.10, burned a new disk and installed. I did this the night before your last RESPONSE, so I didn't have a chance to run your code. I think I like this new version better than the previous one. It has a different look and seems more intuitive. The important thing is I can play chess on this computer again. I still can't beat it on the hard setting, but I keep trying. Hi, Great! No reason why Chess shouldn't work now . Going to try the 3D Mode now?I don't think I want to go down that road again. Like I said: I don't think that my video card is capable of running the 3d mode. |
|
264. |
Solve : CentOS, how good is this operating system?? |
Answer» How's it compare to ubuntu or fedora? so basically CentOS is an independent fork of the Red Hat Linux? All the big distros have GUIs. Generally it comes down to KDE or Gnome. Ubuntu has GO a reputation because it has been aimed at people who are used to Windows. Quote from: Salmon Trout on January 07, 2010, 12:39:56 AM All the big distros have GUIs. Generally it comes down to KDE or Gnome. Ubuntu has go a reputation because it has been aimed at people who are used to Windows. So Ubuntu would be the most windows-like linux distro out there? Quote from: 2x3i5x on January 07, 2010, 11:47:02 AM So Ubuntu would be the most windows-like linux distro out there? Some people say so. I find Linux Mint and PCLinuxOS to have INDISPUTABLY the most Windows-like menu and default interfaces. They're still just gnome and kde, respectively, customized with the distributions own patchsets.Hello, In my opinion, Ubuntu goes for novices who are used to Windows. In a professional environment, I would go for Gentoo since I control what I want. Your distro CHOICE depends on where and how you are going to use it and how skilled you are. CentOS is aimed towards a business environment most likely to be operated by a Sysadmin rather than a just evolved Windows user while Ubuntu is better user friendly. |
|
265. |
Solve : Ubuntu 9.10 can´t access to the system? |
Answer» I have installed Ubuntu 9.10 and when I SHUT down the PC and turn it on, the Ubuntu 9.10 can't access to the system. Ubuntu 9.10 can't access to the system. Can you be a bit more specific, do mean Unbuntu won't start up at all or Unbuntu can't access the HDD?I mean Ubuntu won't start up at all. Does the hard drive show up in BIOS?The hard drive show up in Bios. I know a trick to access to the system. If the system is off, I turn it on and then I have to press the Esc KEY several times to access to the system. If I don't do it, the Ubuntu 9.10 can't access to the system. You must be more specific about what is happening. Where are you getting this "Ubuntu can't access the system"? Are you receiving a grub error? Are you even reaching grub? Do you have multiple hard drives? and if so, by pressing escape, is that bringing up a boot menu to select which hard drive to boot from? Otherwise, what is pressing escape accomplishing? Also, verify that you installed grub to the mbr.I am not getting this message: "Ubuntu can't access the system" It's my expression about the issue. The pc is off and then I turn it on: The screen shows me the Ubuntu logo and after that is going to be in black screen and don't do ELSE more. The pc is blocked. The pc is off and then I turn it on and I have to press the Esc key several times and I get the Gnu Grub version 1.97~beta4 screen and I choose: Ubuntu , Linux 2.6.31-16-generic. I am no receiving a grub error. I reach the grub if I press Esc key several times when I turn on the pc. I have one HDD. How do i verify if I installed grub to the mbr ? Thanks for helping. I've been slackin and don't have any experience with grub2 yet, but if you could post the contents of /boot/grub/grub.cfg, we might find some insight there.ok. Here, I post the contents of grub.cfg: # # DO NOT EDIT THIS FILE # # It is automatically generated by /usr/sbin/grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s /boot/grub/grubenv ]; then have_grubenv=true load_env fi set default="0" if [ ${prev_saved_entry} ]; then saved_entry=${prev_saved_entry} save_env saved_entry prev_saved_entry= save_env prev_saved_entry fi insmod ext2 set root=(hd0,1) search --no-floppy --fs-uuid --set c6464e80-cdfa-4f63-8eb0-911c4917391f if loadfont /usr/share/grub/unicode.pf2 ; then set gfxmode=640x480 insmod gfxterm insmod vbe if terminal_output gfxterm ; then true ; else # For backward compatibility with versions of terminal.mod that don't # understand terminal_output terminal gfxterm fi fi if [ ${recordfail} = 1 ]; then set timeout=-1 else set timeout=10 fi ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=white/black set menu_color_highlight=black/white ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### menuentry "Ubuntu, Linux 2.6.31-16-generic" { recordfail=1 if [ -n ${have_grubenv} ]; then save_env recordfail; fi set quiet=1 insmod ext2 set root=(hd0,1) search --no-floppy --fs-uuid --set c6464e80-cdfa-4f63-8eb0-911c4917391f linux/boot/vmlinuz-2.6.31-16-generic root=UUID=c6464e80-cdfa-4f63-8eb0-911c4917391f ro quiet splash initrd/boot/initrd.img-2.6.31-16-generic } menuentry "Ubuntu, Linux 2.6.31-16-generic (RECOVERY mode)" { recordfail=1 if [ -n ${have_grubenv} ]; then save_env recordfail; fi insmod ext2 set root=(hd0,1) search --no-floppy --fs-uuid --set c6464e80-cdfa-4f63-8eb0-911c4917391f linux/boot/vmlinuz-2.6.31-16-generic root=UUID=c6464e80-cdfa-4f63-8eb0-911c4917391f ro single initrd/boot/initrd.img-2.6.31-16-generic } menuentry "Ubuntu, Linux 2.6.31-14-generic" { recordfail=1 if [ -n ${have_grubenv} ]; then save_env recordfail; fi set quiet=1 insmod ext2 set root=(hd0,1) search --no-floppy --fs-uuid --set c6464e80-cdfa-4f63-8eb0-911c4917391f linux/boot/vmlinuz-2.6.31-14-generic root=UUID=c6464e80-cdfa-4f63-8eb0-911c4917391f ro quiet splash initrd/boot/initrd.img-2.6.31-14-generic } menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" { recordfail=1 if [ -n ${have_grubenv} ]; then save_env recordfail; fi insmod ext2 set root=(hd0,1) search --no-floppy --fs-uuid --set c6464e80-cdfa-4f63-8eb0-911c4917391f linux/boot/vmlinuz-2.6.31-14-generic root=UUID=c6464e80-cdfa-4f63-8eb0-911c4917391f ro single initrd/boot/initrd.img-2.6.31-14-generic } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_memtest86+ ### menuentry "Memory test (memtest86+)" { linux16/boot/memtest86+.bin } menuentry "Memory test (memtest86+, serial console 115200)" { linux16/boot/memtest86+.bin console=ttyS0,115200n8 } ### END /etc/grub.d/20_memtest86+ ### ### BEGIN /etc/grub.d/30_os-prober ### if [ ${timeout} != -1 ]; then if keystatus; then if keystatus --shift; then set timeout=-1 else set timeout=0 fi else if sleep --interruptible 3 ; then set timeout=0 fi fi fi ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ### Please, use code tags for presenting files. Do both kernels boot fine from the grub menu? Also, can you show the contents of /boot/grub/grubenv and /boot/default/grub?How do i use code tags for presenting files ? I dont understand this: Do both kernels boot fine from the grub menu? Ok. I am going to show the contents of grubenv and grub. The content of grubenv: # GRUB Environment BLOCK ####################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################################### I dont have default folder. Thanks for helping. you're going to need to edit your previous posts and put the text from the files in code tags. Use the BBC tag labeled "code". they look like [ c o d e ] [ / c o d e ]. and check for /etc/default/grub again. EDIT: and if the code tags on this forum don't add left-right scroll bar, add some breaks denoted with a " \ " at the end of the line. Please.The content of grubenv: Code: [Select]# GRUB Environment Block #######################\ The content of grub: Code: [Select]# If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. GRUB_DEFAULT=0 GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT="10" GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entrys #GRUB_DISABLE_LINUX_RECOVERY="true" |
|
266. |
Solve : root file? |
Answer» YO JUNK needs to look something like the attached image. Note, /home is superfluous, but swap is recommended. Notice the /. That is your root partition. It is absolutely required. fixed that for you unter ubermensch note, OP, that / means "root" (which is what you were lacking). did I do something wrong...? Directly linking to an image on a non-image hosting site? my bad. just something I saw on a google image search for "ubuntu MANUAL PARTITIONING" Quote from: ubermensch on JANUARY 07, 2010, 12:26:30 AM did I do something wrong...? Directly linking to an image on a non-image hosting site? my bad. just something I saw on a google image search for "ubuntu manual partitioning" No, you didn't do anything wrong, it's just that I thought it would be more useful to see the image you intended, rather than Serenux's "Don't hotlink!" png oh haha, I had the original cached and didn't realize what was happening. P.S. Salmon, I'm still not a Nazi, just an existentialist and an objectivist. Would it make you feel better if I created a new account, Mr Trout? I will, sir. Just for you, man. Cuz yer my buddy. |
|
267. |
Solve : Thinking of trying Ubuntu? |
Answer» I ordered a disk from Linux-UBUNTU 9.1. It was identical to the download- corrupted and unusable except when I RUN it from the removable drive. They say they come up with an updated version EVERY six months. |
|
268. |
Solve : Wine for Linux? |
Answer» I currently have LINUX with a DUAL boot with Windows Vista. So the acronym really isn't true at all, kind of like LAME (LAME Ain't an MP3 Encoder, yet that's exactly what it does). It's one of the well known "recursive acronyms" beloved of 'Nix folks, like Linux — Linux Is Not UniX, GNU — GNU's Not Unix, etc would Crossover make things easier than if you're just going from WINE straight on?One thing that has not been asked is which windows programs do you want to run on Linux because there is generally an equivalent or better linux program.Quote from: moksha on December 21, 2009, 04:05:08 PM One thing that has not been asked is which windows programs do you want to run on Linux because there is generally an equivalent or better linux program. good point.I read somewhere where they said Linux has the capabilities of M$ Windows NT + $5000 worth of software on it. You believe that?Quote from: 2x3i5x on January 05, 2010, 11:05:22 PM I read somewhere where they said Linux has the capabilities of M$ Windows NT + $5000 worth of software on it. You believe that? not really. while most commercial windows programs have freeware equivalents on Linux, there are also freeware equivalents of them for windows, so the comparison is a bit biassed in that regard. (the 5000$ software for windows could EASILY have freeware equivalents that are also for windows) |
|
269. |
Solve : Open Source security tools? |
Answer» hi, Is there any one who has worked or working on OPEN soucre SECURITY TOOLS?? |
|
270. |
Solve : Ubuntu again? |
Answer» sorry for the three topics but i have a different problem i downloaded it once but forgot the name downloaded it a second time then i figured out the name was administrator i couldn't believe i didn't think of trying that any way i tried it it started working got my 3d cube working like i wanted in compiz also i got my youtube videos to work but it wouldn't even load half of the time and it kept stoping, What kind of media media player would you recomend downloading i can't remember what it downloaded for youtube videos to work...You don't need a media player to watch youtube videos; you do need to have Flash Player installed in Firefox. Quote i Have 2,8ghz 1 gb ram computer but i only had 5 gb of free space and ubuntu asked me for a 3 gb are a 4 gb installation and i picked the 4 but later i realized that i wasn't getting anything more why is that i looked up on wubi images and saw installation sizes of 8 gbs and more why is that does it help it run faster that's what i thought but i'm not sure i managed to free up about 2 more gbs and wondering if this will help ubuntu run faster if so i think i'm going to try to get some more gbs by burning all my pictures that's what most of my computer is about 10gbs worthDue to your hideous grammar, I'm not totally clear on what you're saying. If you asking whether limited hard drive space may affect Ubuntu's performance, I don't know for sure but I would guess it may be a factor. I din't say i used a media player fore my youtube videos to work that was a different question i was just wondering what is a GOOD media player i could download And i got my youtube videos to work with gstreamer in syphatic and i'm pretty sure i just misspelled that i'm new to ubuntu and i'm using windows right now so i can't check it, but i tried to download adobe and i keep getting errors And i did add 1gb of extra memory and that helped with the system performence alot everythings just as quick as windows was before but it didn't solve my youtube video problems the youtube videos are just the same don't even work half of the time and when it does it keeps skipping I'm liking ubuntu alot just as quick as windows opening programs going on the internet the applications switcher and cube is pretty cool for multitasking and the background effects are really cool you can make it snow in the background and still use your computer they have a huge selections of games in sypatic i wish they would make it easier to download stuff like adobe vlc google earth and all the programs like that i keep running into problems i still don't got my google earth working i did get google desktop working though and is there any good media player for ubuntu like winamp are something like a real player i tried to upgrade to the 9.10 and it said not enough memory i needed to free up about a gb and i picked a 6 gb installation and i know i didn't download even a 1 gb worth of stuff and ubuntu is only about a 1 gb installation and by what i being reading about 9.10 it doesn't sound like there adding hardly anything but the upgrade is bigger than the hole 9.04 version and can you load any cds to ubuntu are can you only play dvds i thought you would be able to download games of of cds are atleast programs like 3d home achitect were can i download some SOFTWARE for this don't reccomend sypatic i mean online like i managed to download opera vlc google desktop i would like a goode media player and other software of anykind what are some good download sights that are SAFE to download from i never HEARD of any of the sights when i type in ubuntu downloads so i don't know what's safe are not.Quote from: james202428 on October 08, 2009, 11:32:33 AM I din't say i used a media player fore my youtube videos to work that was a different question i was just wondering what is a good media player i could downloadYou get Rhythmbox Music Player with Ubuntu. Have you looked at it?nope will do right now and how do skip the password i have to type in everytime i use sertin programs Quote from: james202428 on October 08, 2009, 12:04:34 PM and how do skip the password i have to type in everytime i use sertin programsYou can change password settings at System > Administration > Login Window. Keep in mind you're really lowering system security by disabling password login requirements. |
|
271. |
Solve : Ubuntu off ebay.? |
Answer» I recently bought something LIKE this |
|
272. |
Solve : Publish PHP Side? |
Answer» Hi to all if possible to PUBLISH php side FORM a home pc with small database only ONE or 2 PAGE............ pls help ..Maybe this might be of some help. You will need a copy of Apache that runs on a Windows PC. http://www.webmasterworld.com/forum88/4361.htm |
|
273. |
Solve : Dual Partition Thumb Drive FAT32/Linux? |
Answer» I was wondering if there was a WAY to create a dual-partitioned Thumb Drive, so I can take say my Xubuntu 9.04 bootable thumb drive and shrink it to say 1/2 the existing partition and then create a partition in the 50% of space that becomes available as FAT32 to have cross platform support. Hey cool, but is there a free alternative than paying $40...maybe a Linux utility? Windows: SwissKnife http://www.compuapps.com/Download/swissknife/swissknife.htm Linux: gparted live cd http://gparted.sourceforge.net/livecd.php Thanks...I will try GPart |
|
274. |
Solve : disk to disk cloning for ubunto? |
Answer» Is anyone here knows a free software that can do a DISK to disk cloning for ubuntu and other linux operating system? pls send me the LINK of the free software.. Thanks in advance..Partition to partition copy is on easy way to clone a disk. I wasn't aware that Gparted could create disk images. It can't. but that's not what he's trying to do: Quote knows a free software that can do a disk to disk cloning for ubuntu and other linux operating system? GParted does disk to disk copy. |
|
275. |
Solve : yellow dog on ps3? |
Answer» Is it possible to install LINUX onto a ps3 from a pen DRIVE or does it have to be from DISK ? |
|
276. |
Solve : red hat linux? |
Answer» i have change language of my linux system,now linux is booted correctly but after BOOTING i fill username and password and then it displays nothing If you are using KDE, |
|
277. |
Solve : o.s.? |
Answer» I had windows xp on a computer...computer crashed and I do not have the xp disc since the computer was purchased at a GARAGE sale.....question is, If I download a free o.s. such as a linux o.s., burn it to a cd on another system will I be able to boot up and install it on the other system?YES, I suggest you try a live CD first, something like Linux Mint. |
|
278. |
Solve : questions about raw booting a kernel? |
Answer» ok heres how it goes : |
|
279. |
Solve : can i have two operating systems on one computer? |
Answer» Quote from: smeezekitty on September 07, 2009, 06:02:57 PM you dont need nothing to do it I never got that option in Ubuntu 9.0.4 jaunty jackalope... Quote from: 876543219 on September 07, 2009, 05:49:00 PM Hello I REALLY can't free up that much space i already deletied of all the programs i didn't want and ran a compress disk drive to save space in c properties and i did a disk cleanup and have only 4.45 of free space most of my space about ten gbs worth are pictures which i can't get RID of because i don't have a cd burner I would just put the pics on a flash drive, and keep the flash drive in a safe place. You can also back them up for free with Windows Live Sky Drive or the home version of Mozy. Quote from: Geek-9pm on September 07, 2009, 06:58:26 PM
I think he wants to do this on his current PC...Quote from: smeezekitty on September 07, 2009, 06:59:44 PM if you dont have anything useful to say That's really rich, coming from you! If you followed that rule, your postcount would be around 5. hi I got ubunto through wubi and so far no problems but I have 95.2 free h.d 2gb mem and a celeron e1200Quote from: Salmon Trout on September 08, 2009, 01:01:06 AM That's really rich, coming from you! If you followed that rule, your postcount would be around 5. hehe yeah. well said Salmon TroutQuote from: cragtom on September 07, 2009, 05:46:30 PM Hi i am new to this and I am very interested in doing this but the wubu link will not work at my end plus will it work with vista as I do not fancy the partition route it is o.e.m vista with no backups please start your own thread as some of the things could be differnt from his. hello i got a cd burner i think i'm going TRY to burn ubuntu to a cd and try it on one of my older computers hardrives and use it on my computer how do i load this to a wiped out hardrive is it like xp are 95 any cd burner software you would recommend tryingno, not at all. It will load the os an allow you to use it as long as the disk is there. Thing is that you have too tell it to install to the drive. Never messed with it though, probably want to ask in the linux thread. |
|
280. |
Solve : cannot compile kernel need help NOW? |
Answer» when compiling the kernel i hit the problem:
Think about it google?Quote from: smeezekitty on September 06, 2009, 01:10:14 PM google? No, I regularly read the forums at linuxquestions. I'm not telling you my username however. Why were you so surprised I saw you on there? Didi you think you were the only person in the world who had heard of that forum? i think the best way to find you is look for an anoying teasing memberQuote from: smeezekitty on September 06, 2009, 01:18:49 PM i think the best way to find you is look for an anoying teasing member That's the best way to find yourself, I think. I repeat, Quote Why were you so surprised I saw you on there?i found 2 users that sound suspicious coldsalmon and troutDo you really think I am so dumb as to use an identical or similar username on multiple forums? i really wish they had a member list like CH anyway you still havent addressed whats wrong the DANG kernelHave you read the README like they told you? And how the H*ll do you expect anyone to help you when you post laughably idiotic things like this: Quote the gcc version is 3. (i dont exactly know) "Need help NOW" is such an autistic thing to write as a subject line. Quote from: SALMON Trout on September 06, 2009, 03:25:58 PM Have you read the readme like they told you? And how the h*ll do you expect anyone to help you when you post laughably idiotic things like this:you and me could be the useless post teamQuote from: smeezekitty on September 06, 2009, 07:09:36 PM you and me could be the useless post team Not you and ST... but it would definitely be a duo and whatnot. |
|
281. |
Solve : acess is denied? |
Answer» on linux: |
|
282. |
Solve : does visual studio work on the linux or unix..? |
Answer» hello folks, "The Mono Project" who developed it Miguel de Icaza wrote a C# compiler and LATER Ximian (now NOVELL) started the Mono project. Quote can you just give me a clear idea about it... Mono is a free and open source project led by Novell (formerly by Ximian) to create an Ecma standard compliant, .NET-compatible set of tools, including among others a C# compiler and a Common Language Runtime. Mono can be run on Linux, BSD, UNIX, Mac OS X, Solaris and Windows operating systems. http://www.mono-project.com/Main_Page http://en.wikipedia.org/wiki/Mono_%28software%29 Thanks for the link..will be posting if anything is needed...Quote from: thrinath on September 04, 2009, 12:53:37 PM Thanks for the link..will be posting if anything is needed... I don't know anything about it; I just know how to use Google. hmmmm..... Quote from: thrinath on September 04, 2009, 01:01:31 PM hmmmm..... Quote I just know how to use Google. Which you, APPARENTLY, do not...its like i dont have time to search as i need to develop the code and submit to my professor where my deadline is fast approaching...so..Quote from: thrinath on September 04, 2009, 01:07:01 PM its like i dont have time to search as i need to develop the code and submit to my professor where my deadline is fast approaching...so.. But why should I do your thinking and learning for you, when you will get the falsely earned college DEGREE, the high paid job, and sexy dancing girls, and I will get nothing? it probably takes longer to make a post asking for the info then it would have taken to find it... |
|
283. |
Solve : Dual booting..? |
Answer» you can still do that: |
|
284. |
Solve : what version of linux kernel?? |
Answer» what ersion of the kernel can i compile with gcc 3? Short answer, don't use gcc 3.whats wrong with gcc 3? - thats kind of all i got right now Quote from: smeezekitty on September 02, 2009, 01:11:02 PM whats wrong with gcc 3?Nothing is wrong with it. If you want to compile the kernal you have two choices. 1. Do it just the way the Kernel Rebuild Guide recommends. -OR- 2. Edit the source file and and the scripts so that gccc 3 does not REPORT errors. Contrary to what they say, any C compiler is not a UNIVERSAL tool that works well on any published and proven source code. Just a fact of life. This is not a slam of the C language. This kind of problem exists in most current complied languages. But if you do GET it to work on the 2.4 source code, please let others know how you did it. Here is a link that refers to 2.6 and gcc 3 and implies that it may not work. http://thomer.com/linux/migrate-to-2.6.html |
|
285. |
Solve : How to get the COMPLETE last modified DATE and TIME for files OLDER than 6 Month? |
Answer» Hi UNIX GURUs, Thank you Smeezekitty. For some reason the DIR command is not working on my system. I am getting a message "dir: command not found." I am working on SOLARIS Operating System. That's because he gave you a DOS command. It obviously won't work with UNIX. Sit tight and someone that DOES know will be along.some unix systems hvae dir built in Quote from: smeezekitty on August 24, 2009, 11:52:03 AM some unix systems hvae dir built in none that I've ever seen.depends on the shellQuote from: Quantos on August 24, 2009, 11:50:38 AM That's because he gave you a DOS command. It obviously won't work with UNIX.dir comes from GNU coreutils, and yes, it DEFINITELY is a linux command (as well). basically its the same as ls -C -b. check info coreutils 'dir invocation' for more info.you could download the GNU utils or try ls --full-timeadvice to Solaris user: "Download the GNU utils" if u comile from source they should work fineIf you are running Solaris (a kind of Unix) you don't need any "GNU utils"; you just need to write a shell script. I should have thought that an expert like you would have realised that. @salmon, how about showing smeeze how its done then , on Solaris. |
|
286. |
Solve : Centos 5 install.? |
Answer» I have had a complete failure of a Raid that was configured with Centos 5 on it. One of the hard drives in a Raid1 configuration has FAILED along with two from a second array that had 4 drives with a RAID5 configuration! |
|
287. |
Solve : problem copying files to flash drive with Live CD? |
Answer» I've got a Knoppix Live CD booted up right now, and I'm TRYING to figure out to copy directorys w/ subfolders from my hard drive with Windows XP/Vista to my flash drive... When I try to copy directorys w/subfolders it SAYS, "unable to create folder".....If I try to drag over individual files, it tells me I don't have PERMISSION... I've right clicked on the drives to try to give myself permissions but I don't know what the heck I'm doing.....could someone give any pointers? PROBLEM solved.. |
|
288. |
Solve : Which Linix?? |
Answer» I am a windows users who wants to switch to linux or some better os which will run on my desktop |
|
289. |
Solve : Dual boot XP/Ubuntu? |
Answer» Hello all. I'm an absolute beginner with Linux and want to install Ubuntu 9.04. I have no problems using Ubuntu live cd, or installing Ubuntu on the same hard drive as XP (XP prior installed) or installing Ubuntu on a dedicated hard drive but I want to install Ubuntu on a slave drive (Pata). |
|
290. |
Solve : Running Redhat Linux and Microsoft Windows XP? |
Answer» High members! |
|
291. |
Solve : Linux and internet gaming? |
Answer» Here in the Philippines, on-line GAMING is very popular with the younger people at the internet cafes. I am considering buying an established internet cafe. I will have one or two pc's with Windows, but the rest I plan on using Linux. My question is are there any limits or restrictions when using Linux for the various websites for on-line gaming? SINCE ole Bill Gates is cracking down on piracy, and the Philippine government is doing inspections at the internet cafes, which is an epedemic here, I can use Linux legally without buying a BUNCH of licenses for Windows. Only a couple of Windows PC's will be available in case someone thinks they need it. How about any plugins necessary for some websites for their gaming? All input is appreciated.That shouldnt be a problem. I use Linux and Windows and play online GAMES on both. I think the only thing you need is Adobe Flash. What distro are you planning to use?Quote from: frog on August 08, 2009, 09:16:38 PM Here in the Philippines, on-line gaming is very popular with the younger people at the internet cafes. I am considering buying an established internet cafe. I will have one or two pc's with Windows, but the rest I plan on using Linux. My question is are there any limits or restrictions when using Linux for the various websites for on-line gaming? Since ole Bill Gates is cracking down on piracy, and the Philippine government is doing inspections at the internet cafes, which is an epedemic here, I can use Linux legally without buying a bunch of licenses for Windows. Only a couple of Windows PC's will be available in case someone thinks they need it. How about any plugins necessary for some websites for their gaming? All input is appreciated. Just make sure that you go through the licences to make sure that they allow you to run it in an environment where you are MAKING money off of the computers. There may be the odd piece of software that won't allow it. You can't be too safe when audits are the policy. |
|
292. |
Solve : Unix machine CPU model? |
Answer» How to FIND what is the CPU MODEL on a Unix/Linux machineCode: [SELECT]LESS /proc/cpuinfo |
|
293. |
Solve : OpenSSl will not update? |
Answer» Greetings, |
|
294. |
Solve : Mapping drives? |
Answer» Is it possible to map drives in Linux? I.e. home directory as C:\, disk drives as D:\ instead of /dev/sr'x'? |
|
295. |
Solve : Find Specific records from file and add totals into variables? |
Answer» Hi Eveyone, |
|
296. |
Solve : When I click on 'Network Center', nothing happens? |
Answer» Hi EVERYONE! |
|
297. |
Solve : Can anyone help me to get Java on my Ubuntu 9.04? |
Answer» I am a beginner in using the Pc and trying to Install Java on my Ubuntu 9.04 so I can PLAY games on my Pc. is anyone able to help me so I can start playing games on my Pc. I have tried some links that came up in google but was badly unsessful in doing so. |
|
298. |
Solve : Install Linux to VPC2007 Virtual Environment issues? |
Answer» Anyone have any tips on how to get a GUI Based Linux to install to a Virtual Environment successfully? I tried to install Ubuntu Desktop, Fedore Core 6, and Knoppix to a virtual installation in Virtual PC 2007 and it crashes or hangs on the installation. |
|
299. |
Solve : Substring Unix Command : Help? |
Answer» Hi, |
|
300. |
Solve : fedora 10 user screen? |
Answer» so.. i just loaded up the fedora core 10 OS on a IBM think CENTRE and it loads the user screen and lets me log on.. but go to black screen and WONT go any farther... help..type startxi have nothing to type it into.. all i have is a black screen and my curser in loading form..after you log int your machine, you would see something like: |
|