![]() |
|
|
#26 | |
![]() Join Date: Jul 2011
Location: Kaunas, Lithuania
Posts: 455 (0.68/day)
Thanks: 290
Thanked 196 Times in 120 Posts
|
Quote:
But then, I can see You need compilers for C, C++ and ASM (those are languages). GCC with YASM should be all You need. You can install them all with: Code:
sudo apt-get update sudo apt-get install build-essential gcc gcc-doc g++ yasm ![]() P.S. It would be nice if this forum would support attaching shell scripts
__________________
Why do you wear glasses if you're deaf? Code:
while (1) {
alone();
}
|
|
|
|
|
| The Following 2 Users Say Thank You to Vinska For This Useful Post: |
|
|
#27 |
![]() Join Date: Feb 2009
Location: Delhi,India
Posts: 640 (0.41/day)
Thanks: 110
Thanked 59 Times in 27 Posts
|
thanks vinska , i would try them and surely report them
please tell for cobol and oracle
__________________
My site : www.hgunified.com My New Youtube channel (main) :http://www.youtube.com/user/TheHGunified?feature=mhee My New Youtube Channel(other) : http://www.youtube.com/user/DAFAQxHG...d?feature=mhee My Facebook Page : http://www.facebook.com/hgunified My youtube old channel: http://www.youtube.com/user/HGunified?feature=guide |
|
|
|
|
|
#28 |
|
Hardcore Monkey Moderator
Join Date: Feb 2007
Location: Cheeseland (Wisconsin, USA)
Posts: 12,113 (5.27/day)
Thanks: 591
Thanked 5,492 Times in 2,936 Posts
|
You can get a free version of Oracle called Oracle Database XE, but it only works on Linux x64 and only allows 1 database per machine that it is installed on, so I do not know if it will meet the requirements of your school.
__________________
Cloud (noun, singular): A dynamic arrangement of multiple potential single points of failure, with a user at one end and their data at the other. Get more tech news on a wide variety of topics at NextPowerUp
|
|
|
|
|
|
#29 | |
![]() Join Date: Nov 2006
Location: Washington, US
Posts: 870 (0.36/day)
Thanks: 486
Thanked 225 Times in 124 Posts
|
Quote:
If you absolutely, without a doubt, NEED to use Turbo C, try running it under WINE. Code::Blocks has worked just fine for me. I have a Turbo C++ book sitting on my shelf. I think the code should be compatible, it's just how it's interpreted. The idea of GNU/GPL is that software shouldn't just be free, it should be open. "Free as in free beer." Anything you can "apt-get install" will not cost anything. Also, Core 2 Duos aren't slow. I'm willing to bet they'd be plenty fast if you wiped them and reinstalled Windows, not that I don't like Linux. Remember that Linux on the desktop is only user friendly when you're doing things that Ubuntu has preconfigured for you. Anything after that is going to be a long day of "sudo chmod 755" this and "./configure; make; make install" that. (..and the occasional "sudo rm -rf /" when you hate everything.)
__________________
Any computer, no matter how old, can serve a meaningful purpose.
Behind every closet door is a dusty computer waiting to be reborn. |
|
|
|
|
| The Following User Says Thank You to xvi For This Useful Post: |
|
|
#30 | ||
![]() Join Date: Jul 2011
Location: Kaunas, Lithuania
Posts: 455 (0.68/day)
Thanks: 290
Thanked 196 Times in 120 Posts
|
Quote:
Spoiler
mafia97, You can get a COBOL compiler with this: Code:
sudo apt-get install open-cobol Quote:
NOTE: DON'T run "sudo rm -rf /". It DELETES Your whole filesystem. i.e. it WIPES your HDDs!!! So DON'T do it!!!
__________________
Why do you wear glasses if you're deaf? Code:
while (1) {
alone();
}
|
||
|
|
|
| The Following 3 Users Say Thank You to Vinska For This Useful Post: |
|
|
#31 | |
![]() Join Date: Jan 2012
Location: Dover, New Hampshire, USA
Posts: 4,247 (8.85/day)
Thanks: 1,269
Thanked 1,324 Times in 982 Posts
|
Quote:
Code:
sudo dd if=/dev/zero of=/dev/sda
__________________
MyHeat |
|
|
|
|
|
|
#32 | |
![]() Join Date: Feb 2009
Location: Delhi,India
Posts: 640 (0.41/day)
Thanks: 110
Thanked 59 Times in 27 Posts
|
Quote:
thanks alot you guys are amazing well i knew rm * -f command , as i am a mischievous UNIX student
__________________
My site : www.hgunified.com My New Youtube channel (main) :http://www.youtube.com/user/TheHGunified?feature=mhee My New Youtube Channel(other) : http://www.youtube.com/user/DAFAQxHG...d?feature=mhee My Facebook Page : http://www.facebook.com/hgunified My youtube old channel: http://www.youtube.com/user/HGunified?feature=guide |
|
|
|
|
|
|
#33 | |
![]() Join Date: Jan 2012
Location: Dover, New Hampshire, USA
Posts: 4,247 (8.85/day)
Thanks: 1,269
Thanked 1,324 Times in 982 Posts
|
Quote:
Code:
man rm Code:
RM(1) User Commands RM(1)
NAME
rm - remove files or directories
SYNOPSIS
rm [OPTION]... FILE...
DESCRIPTION
This manual page documents the GNU version of rm. rm removes each specified file. By default, it does not remove directories.
If the -I or --interactive=once option is given, and there are more than three files or the -r, -R, or --recursive are given, then rm prompts the user for whether to proceed with the entire operation. If the response is not
affirmative, the entire command is aborted.
Otherwise, if a file is unwritable, standard input is a terminal, and the -f or --force option is not given, or the -i or --interactive=always option is given, rm prompts the user for whether to remove the file. If the
response is not affirmative, the file is skipped.
OPTIONS
Remove (unlink) the FILE(s).
-f, --force
ignore nonexistent files, never prompt
-i prompt before every removal
-I prompt once before removing more than three files, or when removing recursively. Less intrusive than -i, while still giving protection against most mistakes
--interactive[=WHEN]
prompt according to WHEN: never, once (-I), or always (-i). Without WHEN, prompt always
--one-file-system
when removing a hierarchy recursively, skip any directory that is on a file system different from that of the corresponding command line argument
--no-preserve-root
do not treat `/' specially
--preserve-root
do not remove `/' (default)
-r, -R, --recursive
remove directories and their contents recursively
-v, --verbose
explain what is being done
--help display this help and exit
--version
output version information and exit
By default, rm does not remove directories. Use the --recursive (-r or -R) option to remove each listed directory, too, along with all of its contents.
To remove a file whose name starts with a `-', for example `-foo', use one of these commands:
rm -- -foo
rm ./-foo
Note that if you use rm to remove a file, it might be possible to recover some of its contents, given sufficient expertise and/or time. For greater assurance that the contents are truly unrecoverable, consider using shred.
AUTHOR
Written by Paul Rubin, David MacKenzie, Richard M. Stallman, and Jim Meyering.
REPORTING BUGS
Report rm bugs to bug-coreutils@gnu.org
GNU coreutils home page: <http://www.gnu.org/software/coreutils/>
General help using GNU software: <http://www.gnu.org/gethelp/>
Report rm translation bugs to <http://translationproject.org/team/>
COPYRIGHT
Copyright ÂĐ 2011 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
SEE ALSO
unlink(1), unlink(2), chattr(1), shred(1)
The full documentation for rm is maintained as a Texinfo manual. If the info and rm programs are properly installed at your site, the command
info coreutils 'rm invocation'
should give you access to the complete manual.
GNU coreutils 8.12.197-032bb September 2011 RM(1)
![]() It's also customary to put your flags before your arguments. Code:
# Weird rm * -rf # Normal rm -rf * Code:
rsync -av --checksum ./some/dir/* some.remote.host:/some/remote/dir
__________________
MyHeat Last edited by Aquinus; Oct 15, 2012 at 11:10 AM. |
|
|
|
|
|
|
#34 |
|
Linux Advocate
Join Date: Nov 2006
Posts: 10,222 (4.29/day)
Thanks: 1,206
Thanked 2,775 Times in 1,793 Posts
|
|
|
|
|
| The Following User Says Thank You to Easy Rhino For This Useful Post: |
|
|
#35 |
![]() Join Date: Feb 2009
Location: Delhi,India
Posts: 640 (0.41/day)
Thanks: 110
Thanked 59 Times in 27 Posts
|
Sorry guys,
there is a bad news The computer department head denied ubuntu said it is tedious to work with really sorry that your efforts went waste. but atleast i learned something thanks for that ![]() mod please close the thread
__________________
My site : www.hgunified.com My New Youtube channel (main) :http://www.youtube.com/user/TheHGunified?feature=mhee My New Youtube Channel(other) : http://www.youtube.com/user/DAFAQxHG...d?feature=mhee My Facebook Page : http://www.facebook.com/hgunified My youtube old channel: http://www.youtube.com/user/HGunified?feature=guide |
|
|
|
|
|
#36 | |
![]() Join Date: Jul 2011
Location: Kaunas, Lithuania
Posts: 455 (0.68/day)
Thanks: 290
Thanked 196 Times in 120 Posts
|
Quote:
But it's a little odd - one could say Ubuntu is the epitome of "ease of work" these days. Hmmm....
__________________
Why do you wear glasses if you're deaf? Code:
while (1) {
alone();
}
Last edited by Vinska; Oct 17, 2012 at 08:11 PM. |
|
|
|
|
| The Following User Says Thank You to Vinska For This Useful Post: |
|
|
#37 |
![]() |
|
|
|
|
|
|
#38 |
![]() Join Date: Feb 2009
Location: Delhi,India
Posts: 640 (0.41/day)
Thanks: 110
Thanked 59 Times in 27 Posts
|
YA i also think they dont use it much
__________________
My site : www.hgunified.com My New Youtube channel (main) :http://www.youtube.com/user/TheHGunified?feature=mhee My New Youtube Channel(other) : http://www.youtube.com/user/DAFAQxHG...d?feature=mhee My Facebook Page : http://www.facebook.com/hgunified My youtube old channel: http://www.youtube.com/user/HGunified?feature=guide |
|
|
|
|
|
#39 | |
![]() Join Date: Jan 2012
Location: Dover, New Hampshire, USA
Posts: 4,247 (8.85/day)
Thanks: 1,269
Thanked 1,324 Times in 982 Posts
|
Quote:
B: A computer science department said that Ubuntu is too hard to use?! Might want to change schools.
__________________
MyHeat |
|
|
|
|
| The Following 2 Users Say Thank You to Aquinus For This Useful Post: |
|
|
#40 |
![]() Join Date: Sep 2010
Location: Tilburg, Netherlands
Posts: 2,057 (2.07/day)
Thanks: 4,951
Thanked 785 Times in 531 Posts
|
Thanks, I did not know I can close threads I started. No mod inrtervention needed.
@ mafia97: the option is under "thread tools". I think that it is more complicated in reality, when it comes to IT departments and Linux. Employees are simply not in a position to "learn Linux" because they must "function" at high level immediately when doing a roll-out of Lionux systems.
__________________
My FS/FT thread (EU only) | DynMap of the TPU Minecraft server | Quick monitor calibration guide | Boot Failure Troubleshooting Chart | Solar Team Eindhoven Family Car Project Using BOINC I crunch numbers for World Community Grid, Climateprediction, Free Rainbow Tables and POEM@home; hence assisting research. |
|
|
|
|
|
#41 | |
![]() Join Date: Jan 2012
Location: Dover, New Hampshire, USA
Posts: 4,247 (8.85/day)
Thanks: 1,269
Thanked 1,324 Times in 982 Posts
|
Quote:
Also linux is a great tool in education for students who are going into computer science or IT. It would be a shame not to use it.
__________________
MyHeat |
|
|
|
|
| The Following User Says Thank You to Aquinus For This Useful Post: |
|
|
#42 | |
![]() Join Date: Feb 2009
Location: Delhi,India
Posts: 640 (0.41/day)
Thanks: 110
Thanked 59 Times in 27 Posts
|
Quote:
people just have bare minimum knowledge to run computers(teachers in most cases have even less), recently a well know company came to give seminar in our college, and you wont believe what the representative said, she said HULk is green because the green color in RGB while redering hulk was turened off by mistake, red and blue resulted in gree, thats why hulk is green.I thought of killing myself at that moment. Though the tech knowledge is bad, teacher know how to teach their subject and can answer any question in syllabus, plus my college is best in the region, so i wouldnt change it ![]() sorry guys for the rant. CLOSING THREAD NOW
__________________
My site : www.hgunified.com My New Youtube channel (main) :http://www.youtube.com/user/TheHGunified?feature=mhee My New Youtube Channel(other) : http://www.youtube.com/user/DAFAQxHG...d?feature=mhee My Facebook Page : http://www.facebook.com/hgunified My youtube old channel: http://www.youtube.com/user/HGunified?feature=guide |
|
|
|
|
|
|
#43 |
|
Linux Advocate
Join Date: Nov 2006
Posts: 10,222 (4.29/day)
Thanks: 1,206
Thanked 2,775 Times in 1,793 Posts
|
i think you should leave the thread open. lots of good discussion here. this sub forum always has the best discussion.
|
|
|
|
| The Following User Says Thank You to Easy Rhino For This Useful Post: |
|
|
#44 |
![]() Join Date: Feb 2009
Location: Delhi,India
Posts: 640 (0.41/day)
Thanks: 110
Thanked 59 Times in 27 Posts
|
well i couldnt find thread closing button, so it is open for now :P.
anyways i want to thanks you guys for all the help
__________________
My site : www.hgunified.com My New Youtube channel (main) :http://www.youtube.com/user/TheHGunified?feature=mhee My New Youtube Channel(other) : http://www.youtube.com/user/DAFAQxHG...d?feature=mhee My Facebook Page : http://www.facebook.com/hgunified My youtube old channel: http://www.youtube.com/user/HGunified?feature=guide |
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need some help understanding Ubuntu/Weird DVD+R Problem | Semi-Lobster | General Hardware | 0 | Feb 21, 2010 11:15 PM |
| Really Need some Experts Help here. | fluxmaden | Overclocking & Cooling | 15 | Nov 17, 2009 10:27 PM |
| Really Need some experts help here. | fluxmaden | techPowerUp! Club Forum | 1 | Nov 17, 2009 09:31 AM |
| Need some way to play 720P on my netbook running Ubuntu | crazy pyro | Linux / BSD / Mac OS X | 5 | Jul 25, 2009 07:58 PM |
| What software for Ubuntu ? Also need lot of info about ubuntu | wolf2009 | Linux / BSD / Mac OS X | 8 | Aug 15, 2008 06:12 PM |