General :: System Distribution For Learning Embedded?
Feb 12, 2010Which linux is best for learning embedded systems which has ide like MCU8051ide, piklab and ide for arm processor.
View 2 RepliesWhich linux is best for learning embedded systems which has ide like MCU8051ide, piklab and ide for arm processor.
View 2 RepliesPossible Duplicate:
Version of Linux with a command prompt?
Which software of Linux to use for command line running? Since I am using MySQL to run from Linux and want to run Linux, which software to download in Linux? There are multiple ones. Can I run .sh scripts and learn how to operate on Linux using the command line? Also use MySQL as backend on Linux?
We have designed a board with Cirrus Logic(arm) processor, A Flash memory and some other peripherals have been connected to that. While building kernel we have selected MMU support. We have written few custom drivers for keypad,LED,LCD. But I would like to know how virtual memory mechanism can be helpful here even though there is no any hard disk has been connected. Where will be the virtual memory reside.
View 2 Replies View RelatedI'm newbie to Linux. Can anybody help-me to select the best Linux distribution for newbies?
View 14 Replies View RelatedTake Red Hat Enterprise Linux for example, it has U1 to U5 editions, and each edition supported several kernels, like U5 supported 2.6.18-194.el5PAE, 2.6.18-194.el5xen and 2.6.18-194.el5.
How can I know all the kernels supported by each edition of various Linux distribution? Like all the kernels supported by Red Hat Enterprise Linux U3 or Debian 5.0, or SUSE 11. Is there any websites providing such information or I have to log in their official site to look for? And how can I be kept posted with such information?
I am having an IBM Thinkpad R51 Laptop which has the following specs.
1.6 GHz Single Core Processor.
256MB of DDR-RAM.
2MB of cache memory.
30GB of HDD.
Could anyone suggest me which linux distribution and release best suites my laptop.
I remember screenshots in which a cli window is opened and in it kernel version, processor type, and other information is displayed along witnice little ascii art of the distribution logo. I have seen it for gentoo and debian, but forget the name.
View 6 Replies View RelatedIs any one distribution of Linux, particularly suited for color management and printing? I have alot of photo printing to do that needs to be accurate color wise, I have already installed Open Suse with Gnome to try Linux, on an old machine and the printing although good, is very slow...
View 4 Replies View RelatedI want to learn linux source code means I want to understand source code. How can I access that code in my current linux distribution? I know c,c++.
View 2 Replies View RelatedI would like to install a program (R for statistical computing). I am using Slackware. On the download page of R (The Comprehensive R Archive Network) there are options to download the code for Debian, Redhat, Suse, and Ubuntu. Which one should I download in my case (using Slackware)? Is there any of them which I should not download?
View 4 Replies View RelatedIt seems that watching an embedded video crashes my system every once in a while. Is there any way to figure out what is causing the crashes or fix it?
Some extra info - The cpu usage jumps to 45-50 percent when a embedded video is playing.
i want to export an embedded linux file system from a windows pc an NRFS server for this..
View 4 Replies View RelatedI'm looking for the most pure linux terminal distro. I am trying to learn linux and I have Ubunutu 10.10 installed but I feel like it's not as pure as other distros, like Ubuntu 10.10 is different from the average terminal experience.
Maybe I am wrong about this, but certain things like the grub .lst file is now a .cfg file in Ubuntu, is this replicated across all linux, or is this unique to Ubuntu? Little things like this that make it difficult to learn. Are all the distros unique in this way?
Suggest me the best book for learning more about directories in ubuntu filesystem
View 5 Replies View RelatedI want to start learning Red Hat Linux & take it as career. I'm in Bangalore, India. Can anyone tell me good Red Hat Linux training institutes in Bangalore (possible near BTM).
View 5 Replies View RelatedHow to remove X completely from the system?
As a Security practice I wanted to disable X from loading.
So i modified following line from /etc/inittab.
id:3:initdefault:
I was then able to start my machine in terminal mode(runlevel 3).
I wasn't satisfied at this stage as i was able to get the graphical console by merely typing code...
Now i have made the above line commented and removed execute bit of the file .
System is now behaving as i wish it would.
I have 2 questions here.
1)Is this Method considered to be stardard while removing X in linux distro.
Will it make any difference?
I m not using any application that explicitly use graphical user interface and i can work in runlevel 3.
2)Is any package responsible for loading X .If yes then removing shall remove X from the system,correct me if i m wrong.code...
I'm looking for doing AOE (Ata over ethernet) inexpensively with single board computers, like Routerboard stuff, but is there anything with sata plugs. Hopefully I can get each board for hopefully around $50, but a little more would be ok. Non-x86 is fine, Debian is as good as Ubuntu.
View 3 Replies View RelatedI'm cross-posting in order to get as a wider audience to get as much feedback as possible. I am currently studying to learn the ) Gidhlig (Scottish Gaelic language and finding studying by rote out of a book a bit 'limiting'. Because of this, I am thinking about creating a software project which could act as an interactive way to helping me learn the language. I've got a few ideas floating in my head but the direction I want to take is that the software is not an alternative but an aid to be used in conjunction with traditional studying materials. I was thinking possibly small interactive games or exercises that both are fun as well as to test and use the parts of language I have learned. There might also be a bit of reporting to show strengths and weaknesses.
Firstly, the technical specifications, that offhand, I can think of that the project will need to meet:
1. Cross-platform (while I would like it to be just Linux, I have to be realistic that people would rather use Windows)
2. The language data is separate from main program so that the software can be used with other languages.
3. Not too complex so that it is quick and easy to program as I will be doing it myself.........
I currently run Ubuntu 10.04 alongside Vista. I have been looking for a few linux projects to help me learn, the two that I have thought of have been:
1. LFS
2. Something security related
As for no.2, I am interested in learning about network security, intrusion detection, system logging, firewall logging etc. And as a project I would like to work on creating a desktop box as secure as possible, then maybe testing my own box on my home network.
1. Is there a good linux distro that is designed for security?I know people often say "the distro doesn't matter, it only matters how you configure it.
2. Does everyone agree with this? As far as security, learning, etc, are all distros created equally?
I am developing a program in a system where the Linux does not take care of the sync command automatically. So I have to run it from my application always I save some data in the disk, which in my case is a 2GB sdcard. It is true that I can make the operation system takes care of the syncronization, using a proper mount option, but in this case the programm's performance drops drastically. In particular I use the shelve module from Python to save data that comes from a socket/TCP connection and I have to deal with the potencial risk of the system being turned off suddenly Initially I wrote something like that to save data using shelve:
Code:
def saveData(vo)
fd = shelve.open( 'fileName' , 'c')
fd[ key ] = vo
fd.close()
os.system("sync")
But that takes too much time to save the data. Note that I use the sync from the OS every time I close a file to prevent data corruption in the case of the "computer" being turned off with data even in the buffer. To improve the performance I made something like that:
Code:
def saveListData( list )
fd = shelve.open('file_name', 'c')
for itemVo in list:
fd[itemVo.key] = itemVo
fd.close()
os.system("sync")
Thus, first I saved an amount of objects in a list then I open the file and save the objects. In this way I have to open the file just one time to save a lot of objects.However I would like to know if adding a lot of objects before closing the file would increase the risk of data corruption.I known that turning off the system after fd.close() and before os.sync may cause problems. But what about turning off the system after
Code:
fd = shelve.open('file_name', 'c')
but before fd.close()?
I am very new in linux/aix scripting. I request you all to give me efficient pdf book or documentation for learning scripting.
View 2 Replies View Relatedthe gnome-system-monitor in fedora 14 do not sho the distributionrelease in the system-tab. The place for the distribution release is empty.
View 7 Replies View RelatedIs there an actively developed Linux distribution that will work on a 386 or a 486 DX or DX2 that only has 16MB of RAM?
View 9 Replies View RelatedI've been switched to a new department at work and am totally clueless when it comes to scripting in bash. When I told them I was a fast learner, I didn't think they'd throw me into the deep end of the pool so fast. So to make a long story short. What is a great book to start learning scripting in bash? My supervisor already gave me a simple task to do. Conceptually it sounds quite easy in my head, but actually writing out a script is a bit more daunting and complexed than I first thought.
View 3 Replies View RelatedI have started reading book Linux Device Drivers 3rd edition. So I want to know which is the best light weight distribution to use so that learning can be more generic and also does not involve distro specific nitty-gritty details. I have already tried building kernel for Ubuntu 10.04 but it involved different commands from what is mentioned in the book. So I am not sure whether I would be able to make further in the book. Has anybody tried?
View 5 Replies View RelatedI am trying to do a basic install of CentOS 5.4 on my embedded computer. It is a Linutop 2 system with a AMD Geode 800MHz CPU and 512Mb Ram. Have installed an IBM 40Gb 2.5" HD for OS storage. I am doing the install procedure in text mode. Everything goes as planned until I get to the package selection.
1. Booting from (i386) DVD with "linux text" parameter.
2. Skipping media check.
3. Selecting "English" install language.
4. Selecting "DK-latin1" as keyboard layout.
5. Selecting "Remove all partitions and create default layout" and selecting "no" to modifying partition layout.
6. Selecting "yes" to configure "eth0" and mark to enable "IPv4" on boot.
7. Selecting DHCP for IP configuration and Manual host name.
8. Setting time zone to "Europe/Copenhagen".
9. Setting root password to a 16 digit alphanumeric pass-phrase.
10. De-selecting "Desktop - Gnome" (no other entries selected).
When the system is checking for dependencies, an exception
Traceback (most recent call first):
File "/usr/lib/python2.4/site-packages/yum/packageSack.py", line 426, in returnNewestByName
raise PackageSackError, 'No Package Matching %s' % ui_pats
File "/tmp/treedir.22057/instimage/usr/lib/anaconda/yuminstall.py", line 1072, in getBestKernelByArch
pkgs = ayum.pkgSack.returnNewestByName(pkgname)
[Code]...
I'm trying to install a SDK iso image onto an embedded linux platform. I was able to mount the image on the platform without problems. I also created a symbolic link called "bash" in the bin directory and had that point to busybox to satisfy the first line of code in the installer: "#!/bin/bash". However, when I run the installer, I get an error: "installer: applet not found"
I get the same error when I type "bash" on the command line. Is there a way to fix this? Here is the first few lines of code that causes the error:
#!/bin/bash
DEBUG=${DEBUG:="0"} # Enables debugging options
LC_OPTION=${LC_OPTION:="prompt"} # Licensing related variable
INSTALL_PATH=${INSTALL_PATH:=$HOME} # Default installation path
declare -r SCRIPT_NAME="`basename $0`"
declare -r SCRIPT_CALLED="$0 $*"
[Code]...
I'm looking for a way to remove embedded features from a PDF document. I recently purchased a Kindle DX. When I try to open some of my PDF files on the device, I get a message saying: this pdf cannot be opened due to embedded features not yet supported by kindleI'm looking for a way to remove the use of these features from the document so I can view it on my Kindle. I'm a Ubuntu Linux user. (I tried opening the PDF in Document Viewer and printing it to a PDF file by going to File->Print. This make it so I could open it on the Kindle DX, but the font is messed up and very difficult to read. This won't do.)
View 4 Replies View RelatedI am using embedded linux (xlinux) and i need to compile the programs on desktop pc.i am currently using eclipse.can someone suggest me how I can configure, to make a project thats compile the programs for the embedded linix where I need to run them.
View 1 Replies View RelatedI need to edit myfile in a script.I tried items below but it did not change anything.
myfile:
141 aaaa bb Jun 4'09su Jun15'09mo yyyy
206 vvv nn Jun 4'09su Jun16'09tu tt
208 bb yyyy Jun 4'09su Jun15'09mo vvvvvvvv
[Code].....