- To make a file--a text file-- able to be executed, you can type: sudo chmod +x
(file is the absolute path to whatever you are trying to make executable). - to find free disk space type: df -h (the -h means 'human readable' or something)
- to find file/directory size of the contents of a directory I'm in, type: sudo du -sh *
- I got the message that /tmp was full when trying to install CmapServer on the server at the district. Probably an issue resulting from the bloating of the plone 2.1 Data.fs file. Anyway, I had to create a temporary (I think) /tmp/ folder. I used info from this page: http://techpubs.borland.com/am/bes/v6/en/updates/zseries_install.html (can't find the other page that had a more effecient command). The first step was to make a directory in my home directory (I called it 'test'). The following commands make this directory to be the new tmp directory, export it to my something or another, and finally check it.
- dgroos@cmap:~$ IATEMPDIR=/home/dgroos/test
dgroos@cmap:~$ export IATEMPDIR
dgroos@cmap:~$ echo $IATEMPDIR
/home/dgroos/test - OK found the site I first got this info from and so have the command that will do the two commands in one:
$ TMPDIR=/path/to/alternative/tmp/dir bin/instance start
- Here's a command to open 'activity monitor' with root privledges to check folder size graphically: gksu baobab
- To open an x term window of local client: ltsp-localapps xterm.
- ps ax | grep fire will list all processes that contain the string 'fire'.
Thursday, December 17, 2009
helpful commands
Sunday, November 22, 2009
More Shoutouts to come...
Thanks to Jack U, Fred O, and Brian D-G. Nor do I want to forget to mention alkisg and sbalneav as well! More details to come!
Labels:
community
Trevor Advanced GCoS this Summer
Well, I've been quite lame at publishing posts to this project blog since July and am going about looking at some of the old ones polishing them a bit, then publishing them. One thing I want to do for a LONG time is recognize the efforts of Trevor Blanton throughout this summer, from the start of the summer when we first met in Professor Paul's office to the end of the summer when most everything was set up on the server.
Trevor biked over to my house a couple times every week, working for a couple to several hours each time, attacking and solving 1 challenge after another. I learned many things about the command line interface this summer from him, as well as learning more about Ubuntu and LTSP in general. Equally important to the intellectual aid was the morale support his determination provided. Neither I nor GCoS would be at this point if it weren't for his support. Thanks!
His setup got a bit friendlier as the summer progressed--at least better for his back!
Trevor biked over to my house a couple times every week, working for a couple to several hours each time, attacking and solving 1 challenge after another. I learned many things about the command line interface this summer from him, as well as learning more about Ubuntu and LTSP in general. Equally important to the intellectual aid was the morale support his determination provided. Neither I nor GCoS would be at this point if it weren't for his support. Thanks!
His setup got a bit friendlier as the summer progressed--at least better for his back!
Labels:
community,
thin_client_server
Wednesday, November 04, 2009
Starting and Stopping the CmapServer
One can stop CmapServer using AdminTool. To get AdminTool just download the CmapServer software from the IHMC site. The only thing you need from the folder is the AdminTool application.
Rodrigo from IHMC fame told me how to start the CmapServer and stop it from the command line interface. First ssh into the server running the CmapServer. Get to the right location and run the command mentioned shortly. To get to the right place I need to 'sudo su' since I installed as root. Then cd to /root/IHMC_CmapServer. At that point I can run the following command to start the CmapServer:
Rodrigo from IHMC fame told me how to start the CmapServer and stop it from the command line interface. First ssh into the server running the CmapServer. Get to the right location and run the command mentioned shortly. To get to the right place I need to 'sudo su' since I installed as root. Then cd to /root/IHMC_CmapServer. At that point I can run the following command to start the CmapServer:
nohup ./bin/CmapServer &And to stop it you need to first find out the CmapServer process ID:
(then it replies:)
root@cmap:~/IHMC_CmapServer# nohup: ignoring input and appending output to `nohup.out'
(and inserts a blank line and it is then that I enter return again and I'm back to the prompt!)
ps -Af | grep -i CmapServer
(it won't be obvious which number is the PID. The first word of output will be 'root'. right after that is the PID#. Also, there will be a line for the actual 'grep' process--ignore that line.)
Then to stop it using the just-discovered process id:To make configuration adjustments you need to first become root, then open the file with an editor such as nano:
sudo kill -9 PID (where you type in the process id # in place of 'PID')
(for example, 'sudo kill -9 1286)
sudo su
nano /root/IHMC_CmapServer/bin/serverconfig.txt
Labels:
CmapServer,
community
Sunday, November 01, 2009
Hiding the 'user' and 'news' and 'events' folders in plone
This was such a cool thing I've needed to do for a while on my Plone sites.
Re: Hiding News, Events, Users tabs in Plone? Default page in folder?
To hide tabs:
From the Plone Control Panel, go the the Zope Management Interface.
Click portal_properties, then navtree_properties
In the field 'IdsNotToList', enter the ids of the folders for which you do not want to generate tabs (one item per line)
Click 'save changes'
OR you can turn off automatic tab generation altogether and define tabs in portal_actions in the ZMI.
To set a default page for a folder, use the 'display' content menu, click 'change content item as default view'
From the Plone Control Panel, go the the Zope Management Interface.
Click portal_properties, then navtree_properties
In the field 'IdsNotToList', enter the ids of the folders for which you do not want to generate tabs (one item per line)
Click 'save changes'
OR you can turn off automatic tab generation altogether and define tabs in portal_actions in the ZMI.
To set a default page for a folder, use the 'display' content menu, click 'change content item as default view'
Tuesday, September 22, 2009
Process of setting up server--from start
In case this is useful at some future point...
- Boot from Alternate CD, at install screen, select F4, then from menu selected install LTSP server, Chose eth1 as the 100 MB NIC. Chose UTC time/Central, chose 'guided, use entire disk' for partitioning. Went through steps and restarted.
- Booted into the new system, update manager, installed and rebooted.
- Tested thin client boot and worked.
- Added extra sources: https://edge.launchpad.net/~sbalneav/+archive/ppa
- Added more sources: https://launchpad.net/~stgraber/+archive/ppa
- Added more sources: https://launchpad.net/~edubuntu-italc-devel/+archive/ppa This last one I didn't yet install (kept boxes in sources 'unchecked'.
- I did update with the "system/update manager" and there were install issues with the "ltsp-server-standalone" it didn't want to update well. Through irc stgraber said: try through the command line interface: sudo apt-get dist-upgrade. and things went perfectly. Really, I think the problem was the ldm.
- I used Synaptic to install sun-java6-jre I think it was called, and then sun-java6-plugin. Looks like I didn't need to install this for CmapTools as CmapTools installs its own runtime environment. However, this was helpful for Flash. Next time go to Ubuntu/LTSP pages at help.ubuntu.com.
- ...
Wednesday, July 29, 2009
Install CmapTools in chroot for LocalApp
This is a big accomplishment. Thanks to Ahmuck, ace_suares, mhall119|work and ogra, not to mention Tom Marble and 1 blog on the internet that I already lost track of. Here are the directions to install CmapTools on a chroot so that it works as a local app.
Make X session work, type in terminal:
MAKE SURE YOU DO THIS WHEN YOU ARE DONE INSTALLING--DON'T FORGET--or terrible things may happen, (you never know what).
Finally, I added both CmapTools and /usr/lib/IHMC_CmapTools/bin/CmapTools in the lts.conf file with sudo gedit /var/lib/tftpboot/ltsp/i386/lts.conf. Finally, I rebuilt the image with sudo ltsp-update-image to get those changes I had done into the image that gets loaded into the thin client at boot time.
Next step is to get it to boot as a local app!
And typing this into terminal did it...
:)
Make X session work, type in terminal:
- xhost +
- sudo su
- export DISPLAY=:0
- This needs to be installed where the root that will be running the shell script is located--the root in the chroot. Use this, still as root)
- cp /home/dgroos/.Xauthority /opt/ltsp/i386/root
- cp /home/dgroos/.Xauthority ~/
- exit (gets you out of the root account--this is important!)
sudo mount -t proc proc /opt/ltsp/i386/proc sudo mount --bind /tmp /opt/ltsp/i386/tmp sudo mount --bind /dev /opt/ltsp/i386/dev sudo mount --bind /home /opt/ltsp/i386/home sudo cp /opt/ltsp/i386/etc/passwd /opt/ltsp/i386/etc/passwd.bak sudo cp /opt/ltsp/i386/etc/group /opt/ltsp/i386/etc/group.bak sudo cp /etc/passwd /etc/group /opt/ltsp/i386/etc sudo chroot /opt/ltsp/i386/ su $SUDO_USER
MAKE SURE YOU DO THIS WHEN YOU ARE DONE INSTALLING--DON'T FORGET--or terrible things may happen, (you never know what).
exit (in other words, you've got to get out of being the root user) sudo mv /opt/ltsp/i386/etc/passwd.bak /opt/ltsp/i386/etc/passwd sudo mv /opt/ltsp/i386/etc/group.bak /opt/ltsp/i386/etc/group sudo umount /opt/ltsp/i386/home sudo umount /opt/ltsp/i386/dev sudo umount /opt/ltsp/i386/tmp sudo umount /opt/ltsp/i386/proc
Finally, I added both CmapTools and /usr/lib/IHMC_CmapTools/bin/CmapTools in the lts.conf file with sudo gedit /var/lib/tftpboot/ltsp/i386/lts.conf. Finally, I rebuilt the image with sudo ltsp-update-image to get those changes I had done into the image that gets loaded into the thin client at boot time.
Next step is to get it to boot as a local app!
And typing this into terminal did it...
- ltsp-localapps /usr/lib/IHMC_CmapTools/bin/CmapTools
- xprop -root -f LTSP_COMMAND 8s -set LTSP_COMMAND "sh /usr/lib/IHMC_CmapTools/bin/CmapTools"
:)
Labels:
CmapTools,
LocalApps,
thin_client_server
Wednesday, July 22, 2009
Trevor at work
The first job Trevor had this summer was to make the server you see here in my basement available over the internet so that people could work on it from afar. I had gotten a permanent ip address from Qwest for this purpose. Their tech people and web help pages were un-helpful and even discouraging--they said that I couldn't use the IP address for a web/ssh server. They were proven wrong by Trevor who did some port forwarding and now the server, which is on my home LAN, can be accessed via the internet. Trevor's giving a break to his back in this picture--ergonomics not quite what they ought to be :-)
Labels:
community,
thin_client_server
Sunday, July 12, 2009
Meeting with Professor Paul and Trevor
As the summer wore on, so did the hours spent in front of the computer. Sure there was progress but extrapolating its trajectory wasn't encouraging. I knew I really needed Linux help... This is not to say that I hadn't been receiving tons of great help from the #edubuntu irc, edubuntu user and devel lists, nonetheless I needed something more.
I e-mail Paul Imbretson, a professor at the University of Minnesota to ask for ideas or support for the server setup, suggesting that perhaps he knew a U of M student who might be interested in a service learning project... I got Professor Imbretson's name from Haftom, someone I had met at a Teknie event. Long story shorter. I heard about their cool partnership with North HS Angela and her science class' partnership with a town in Nigeria where they are working on building relationships--and wind power. It ended with Trevor and I creating a quick google doc to organize and help coordinate our work. It has a grid of tasks to be done with related columns. It also has a log at the bottom to record efforts. This was hugely encouraging!
I e-mail Paul Imbretson, a professor at the University of Minnesota to ask for ideas or support for the server setup, suggesting that perhaps he knew a U of M student who might be interested in a service learning project... I got Professor Imbretson's name from Haftom, someone I had met at a Teknie event. Long story shorter. I heard about their cool partnership with North HS Angela and her science class' partnership with a town in Nigeria where they are working on building relationships--and wind power. It ended with Trevor and I creating a quick google doc to organize and help coordinate our work. It has a grid of tasks to be done with related columns. It also has a log at the bottom to record efforts. This was hugely encouraging!
Saturday, July 11, 2009
GCoS PD--Day 3
- We looked at Eddie's Standards web. It doesn't have the connecting phrased between the bubbles--just connecting lines--it isn't a concept map, instead it's a 'web'. In contrasting the colored bubbles with the blank background bubbles at the back, we discussed what words to use in these questions. We concluded that, by avoiding jargon (science vocabulary words) these maps of the standards can server as guides to students (and families) before studying a unit. In other words, a student can often get an idea of what they will be studying before having studied--not possible with the regularly worded standards. Here is how his web looked when he brought it in. I'll repost in a while when he has further-improved them.

- Luckily, there is an instructional framework which one can use to grow a community of (novice) scientists: Progressive Inquiry. I introduced it with the help of this diagram
which comes from this page, and overview of many of the ideas I've presented are on that page, with links to further pages. Lots of great work about knowledge building in science classroom comes from this research group. - I then introduced a software tool called FLE3 which scaffolds knowledge building in a classroom. This is a tool that has a fairly steep learning curve, so Eddie had the idea of making poster-sized printout of each of the pages students encounter, posting them in the classroom, making them ever-present and available for public reference as needed.
- "To teach with a tool we need to be users of the tool." This statement is a general principle of GCoS classrooms. We are starting a FLE3 knowledge building discussion with the context (note we are using a question): What does a classroom community of novice, KB scientists act, look and sound like? We've posted some sub-questions (threads) such as: 1. What specific student behaviors are we looking for? (James); 2. What does KB mean? (Eddie); 3. What is the role of questions in a KB community? (me); 4. "Experimenting".
- We learned about using FLE3. Numbers 6-8 below show some of the significant ideas we had...
- ... Start a Context (Unit of study?) with an essential-type question. It provides a rallying point around which one can assess if one is addressing the topic... or not.
- ... The very first time a class uses FLE3 the first thread ought to be one in which users can experiment with the FLE3 tool. Thus the thread mentioned above, "Experimenting". In this thread, users would not need to use any of their attention thinking about questions, answers, knowledge types, etc, but instead ask, 'what does this button do?', 'how do you get to this screen?', etc. Providing a space like this in the first (maybe second also?) context will decrease ineffective posts in the rest of the content-oriented threads.
- ... At the VERY first interaction students have with FLE3, I'd copy one from a previous year, add a generic student account and allow students to enter this copy of the FLE3 and explore it--seeing how it was used.
GCoS PD--Day 2
- We started by looking at Eddie's concept map of his 'values, mission and goals'. Our talk was split between the map and the use of the software, CmapTools. Considering that Eddie's been using CmapTools for over a year now and I've used it for better than 3, it's interesting to note that there's still much to refine in our practice.
- When James arrived we continued the discussion of developing scientific habits of mind. (Here's a map of some. Please don't be dismayed with the security warnings your browser will give when trying to see this map--we have not yet purchased one of those, 'security certificates' which causes the browser to not give these security warnings.)
- This was intertwined with our talk of Knowledge Building epistemology. I commented that a metaphor that comes to my mind when I think of knowledge building was a circle of people batting a beach ball around, each person adding their own spin to the 'knowledge object', seeking to improve it with each interaction. I said that this metaphor breaks down when you consider that the beach ball (ie the knowledge object) doesn't really change in important ways.
- Then Eddie came up with the idea that you could do this activity in class but each person would add a sticky note with one of his/her values written on it! That was cool! We batted this idea around a bit more, each improving the idea. Here's the final state of this knowledge object (class activity): Each person gets a piece of masking tape, writes what he/she would like to propose as a shared value for our class, and as the beach ball bounces between all class members, slaps it on the ball, improving the object. After this, as a class we would analyze the entries (the second half of this post) on the ball and decide which ones we wanted for our community.
- We practiced collaborative editing of concept maps. As we did this we discussed values and accomanying norms that follow from them while synchronously editing maps. James changed something on Eddies map of his values/mission/goals and we came up with the idea that one ought to be sensitive when changing another person's ideas! I shared ideas of the layout of bubbles on a concept map as I re-arranged the layout of Eddies map, though not changing what was written nor where the links were attached. Some of the principles of layout are: Group Clusters and have some white space around them, aim for palmate structure and not serial or 'chain' structure, avoid crossing lines...
- Thinking about the tools we had to master as well as teach our students (ie novice scientists) to master, Eddie mentioned the need for a basic set of instructional flow maps, such as this one, that would tell how to use these tools. I need to identify this set of basic instructions...
- Our homework was to create kid-friendly webs of the MN state science standards, converting each sub-standard into jargon-less questions such as this one on the nature of science that I made when I taught 8th grade.
Monday, July 06, 2009
GCoS PD--Day 1
We're getting together for some professional development. I'm leading, we're all learning (creating knowledge in our community)
- A major goal for this day was to initiate software tools-- joining and getting proper access to the GCoS site, this coming year's Class site, FLE3 and CmapTools on the CmapServer. This process was time consuming and a bit bumpy but also was successful.
- A second major goal was to do the "epistemological discussion". Numbers 3-8 are the points covered in this discussion. I argued...
- ... That theories/models (such as Dalton's theory of the atom or constructivism) do NOT tell how the real thing works, just like the map isn't the territory.
- ... That as our theories/models/maps develop they don't become ever-more accurate descriptions of 'reality'. Not everyone agreed with this. I asserted that these theories/models become more successful at solving the problems we care about, using the tools and 'habits of mind' available to the community.
- ... That, for many (hundreds?) of years, at least in the western world, we've consider the mind like a container and knowledge as a thing to acquire: the "Mind as Metaphor" and "Acquisition Metaphor of learning". Both traditional "Transmitter-Receiver" and more modern "Constructivism" models of learning are within the Acquisition Metaphor of Learning.
- ... That in the last 20 some years another model of learning has been/is being developed that looks at learning differently. That it sees learning as 'authentic participation' in a community of practitioners such as plumbers or scientists. Knowledge in this view is not a thing, but an action w/in a community. This model has gained great favor these last years.
- ... That there has been a great argument between these 2 camps, the acquisition and participation groups. It has been somewhat resolved by accepting the, 'map isn't the territory' arguement. That, each metaphor or model of learning is useful to solve particular educational problem--of course neither handles all challengers.
- ... That more metaphors have been created that can be grouped together and called a, 'Knowledge Creation" metaphor. This theory of learning subsumes the acquisition and participation models. The version of this metaphor that I'm using as my main framework for Growing Communities of Scientists is the "Knowledge Building" model. Note, this Wikipedia article is becoming less useful and more ideological over time but it is an introduction.
- Finally, we ending on talking about developing community values. We briefly looked at the AAAS site which shows Benchmarks--we looked at chapter 12, "Habits of Mind". Our homework was to make a concept map on the shared server of our values, goals and mission and then too read chapter 12, at the high school level, and start to consider a concept map showing shared values, attitudes and beliefs of the scientist community.
Saturday, July 04, 2009
Setting up a GCoS Edubuntu thin client server
The GCoS Edubuntu Server needs a variety of capabilities. The following lists them . If you see ** at the start of the line, it shows that capability set up.
- **Run Edubuntu on Jaunty Jackalope (9.0.4).
- **Use the built-in thin client server--LTSP 5.
- Use Gnome Watchdog to auto kill stale processes.
- Use the LocalApps solution for the following programs: Firefox 3.5, CmapTools, JRE, JVM, OpenOffice Suite.
- Use Webmin for management of server. It is necessary to install and change port number from 10000 to something like... PSM, before installing and configuring iTALC which also wants to use this port.
- An effective replacement for the standard, "Users and Groups" system application.
- Remote Desktop solution using NoMachine's NX Free Edition For Linux --DEB
- Management of thin client machines with iTALC.
- Management of users desktop environments with Sabayon (currently in Jaunty Beta)
- Easy to use software to view user's Firefox 'histories'. The presence of an effective accountability system proactively discourages abuses.
- Setup printers on local LAN.
- Squid Proxy
- SquidGuard to manage user internet capabilities. level1, level2, level3
- LDAP integration with district AD.
- Java apps such as at the phet site, need to work well.
- Flash content needs to work well.
- Quicktime content needs to work well.
- Firefox management program would be great--control things like not allowing students to erase history, change proxy settings, etc. It would be awesome to tie in this management system with the level1, level2, level3 permission management system.
- Edubuntu users mailing list archives
- Edubuntu developers mailing list archives
- Re-building the chroot
- Curent LTSP on line admin reference guide
- Ubuntu documentation on LTSP --lots of links to other pages, mainly.
- LocalApps on Jaunty LTSP--this is a key doc. Refers to related page
- LTSP user forums in sourceforge
- iTALC site
- iTALC on LTSP--pending
- Sabayon
- Gnome Watchdog
- Servers: 2, dual-core Xeon processors, 2.8 GHz, 3 GB RAM, RAID5, running Ubuntu Jaunty Server edition w/LTSP enabled.
- Clients: 2 kinds: Pentium III 933 MHz, at least 384-512 MB RAM, 100 MB NIC/ Pentium IV, 2.4 MHz, 512 MB RAM, 100 NIC.
Labels:
Firefox,
thin_client_server
Monday, June 29, 2009
New server, new iTALC, new webmin... No! I mean...
..."New server, new webmin (change port to something like 10010), then new iTALC". Learned my lesson, didn't I :-). I followed the instructions from the Ubuntu wiki on installing iTALC on LTSP, seems to work for jaunty as well as hardy. Also, didn't add root to any groups! Both iTALC and webmin seem to be working well.
::::Update--iTALC not working :(
YET.
::::Update--iTALC not working :(
YET.
Saturday, June 27, 2009
Ways to think about homework
I just finished reading Rick DuFour interesting post on thinking about homework. He commented on the ironic situation where someone learned all that was expected of him-her but then failed the class because of a refusal to do homework. He recommends that one decide the purpose of providing homework and go from there. The following is copied from his post though I recommend reading the whole thing:
How might I implement these ideas in my practice...? We'll I like the idea in his second scenario:
Hmmm... thinking this through. Let's say someone doesn't pass the summative/formative 'test' of measuring mass, for example. Well, we are moving on to the next skill of making concept maps. Well, assuming that no one passes the concept mapping pretest everyone will have that HW to do. However, what intervention then does one use for the students who didn't master measuring mass? Additional HW? After-School-Required-Study? One can feel the workload creaking...
I agree with DuFour's perspective on being explicit on one's goals for HW, requiring it/or not (and not permitting "0's") and making it a useful learning tool by providing students with providing students with individually-useful feedback. Nonetheless, providing useful feedback on students' HW adds up to a LOT of time outside of class. I know this as I've attempted it sometimes. Adapting/creating good curriculum not to mention preparing materials for this instruction already is taking a lot of out-of-class time.
In addition to calling families, communicating/coordinating teammates, and all the administrative requirements to teaching, this HW concept is sounding questionable in the practicality dept.
Therefore, I submit the following propositions:
- Homework should be given only when the instructor feels it is essential to student learning. If, for example, the teacher believes that by practicing a skill and receiving prompt and specific feedback students will learn at higher levels, homework is very appropriate and should be assigned.
- The teacher then has an obligation to monitor the homework carefully and provide individual students with precise feedback based on their specific needs.
- If the work is deemed essential to a student’s learning, that student should not have the option of taking a zero but instead should be required to complete the work. This necessitates a coordinated, schoolwide approach to responding when students do not complete their work because there are limits as to what an individual teacher can require. The schoolwide response should be timely, directive (non-invitational), systematic (not left to the discretion of individual teachers), and should never require the student to be removed from new direct instruction. (For examples of such a systematic approach, see Whatever It Takes: How Professional Learning Communities Respond When Kids Don’t Learn by DuFour, DuFour, Eaker, and Karhanek and/or Pyramid Response to Intervention: RTI, Professional Learning Communities, and How to Respond When Kids Don’t Learn by Buffum, Mattos, and Weber.)
How might I implement these ideas in my practice...? We'll I like the idea in his second scenario:
...that students will not be required to continue practicing each day when they have demonstrated they are mastering the content. There will be daily homework for all students for the first two weeks of school, at which time a unit test will be given. Students who earn an A or B on the test will not be required to complete daily homework during the next unit. For them, homework will be optional. All other students will be required to continue doing their daily practice.The idea of the "Martial-Arts Metaphor"--which I'll develop soon--could work smoothly with this idea. Perhaps I would provide a pre-test of the skill, also, so students could opt out of the after-school practice if they had previously mastered the content in some other context. However, this undermines the coercive effects mentioned by DuFour: a student is motivated to do well on a unit/summative test so as to avoid required HW for the next unit.
Hmmm... thinking this through. Let's say someone doesn't pass the summative/formative 'test' of measuring mass, for example. Well, we are moving on to the next skill of making concept maps. Well, assuming that no one passes the concept mapping pretest everyone will have that HW to do. However, what intervention then does one use for the students who didn't master measuring mass? Additional HW? After-School-Required-Study? One can feel the workload creaking...
I agree with DuFour's perspective on being explicit on one's goals for HW, requiring it/or not (and not permitting "0's") and making it a useful learning tool by providing students with providing students with individually-useful feedback. Nonetheless, providing useful feedback on students' HW adds up to a LOT of time outside of class. I know this as I've attempted it sometimes. Adapting/creating good curriculum not to mention preparing materials for this instruction already is taking a lot of out-of-class time.
In addition to calling families, communicating/coordinating teammates, and all the administrative requirements to teaching, this HW concept is sounding questionable in the practicality dept.
Labels:
assessment,
Instructional_Strategies,
Planning
Thursday, June 25, 2009
Back to CmapServer issue--not found on 'list of Places'
For some reason our CmapServer doesn't show up on West Florida University Directory of Places. It should. I've been working on this issue for a couple of months, back-burner style, and have gotten a few replies. I'm in the middle of trouble shooting it with Doug Roberts and Rodrigo Carvajal's help. Here are a couple of cool commands I learned to check out the status of network ports:
- netstat -nat This will list active internet connections, servers and established.
- netstat -at |grep LISTEN This lists the ____ that have the state "LISTEN".
Labels:
CmapServer,
commands
Wednesday, June 24, 2009
NX Client and me
NoMachine's remote access software is great, the best, to my experience. I can sit at any computer with NXclient and open a window from a remote computer that's running NXserver, and the experience is about as good as if I were actually sitting in front of that remote computer. This is is important for me so as I can access my server (soon to be servers) from at home or behind locked doors. Of course, I know there are people who prefer the (potentially) powerful, linear, command-line interface to the 2/3 dimension access provided by a Graphical User Interface. That's fine, I like my GUI.
As I mentioned in my last post, my NXclient access broke in working on the firefox localapp: advance on one front, retreat on another...
So, I spent 5+ hours today trying to regain access. I won't go into gory details but finally when I removed a hidden file from my file system
[Also--I got all hidden files (the ones with . at the start of the file name like, .letter.txt), to show up on my file system by these 2 commands:]
As I mentioned in my last post, my NXclient access broke in working on the firefox localapp: advance on one front, retreat on another...
So, I spent 5+ hours today trying to regain access. I won't go into gory details but finally when I removed a hidden file from my file system
- sudo rm -r Users/admin/.nx
- sudo rm -rf /usr/NX
- sudo rm -rf /Applications/NX*.app
[Also--I got all hidden files (the ones with . at the start of the file name like, .letter.txt), to show up on my file system by these 2 commands:]
- defaults write com.apple.finder AppleShowAllFiles TRUE
- killall Finder
Labels:
commands,
solution,
thin_client_server
Localapps on Jaunty -- if it doesn't work...
One of the main reasons I upgraded to Jaunty from the LTS Hardy was that localapps--running applications of your choice on the 'thin client'--is almost built into this version. However, like most things that are trivial to someone who really knows Linux, it can be an ordeal for one who doesn't. Thanks to pmatulis who first started answering my questions and then a huge thanks to alkisg who worked with me for over 3 hours to successfully get firefox running as a localapp!
I'm going to recreate the directions alkisg provided which supplement the fine directions at https://wiki.edubuntu.org/LTSPLocalAppsJaunty. In other words, do the instructions on that page first and if it doesn't work, then use these additional instructions, here. These directions are a 20-20 hindsight version, of course, not exactly as they happened.
I followed the directions at this above address, booted my client, opened firefox and wondered, how do I know if firefox is running in localapp mode? I now know that when firefox is working as a localapp it will say "Mozilla Firefox (on ltsp20)" or something similar, on the title bar of the window. However, one can also 'log into the client' (open console mode) and check there. If you have intrepid or jaunty you can do this:
The next step was getting firefox to be able to access the internet. Now that firefox was being run on client instead of on the server I had to set up NAT on the server to act as the 'middle man' between the client and the internet. (How does Squid/SquidGuard fit in here?) Now, alkisg had written a script that sounded pretty robust which would do all this stuff. However, since it has parts in Greek and well, Greek is unfortunately greek to me I couldn't avail myself of this help. I typed in the following commands at the terminal prompt on the server as root. (note this interrupts network access but is re-established. It did break my NX access :( and haven't been able to get it to work since)
then I ran:
I'm going to recreate the directions alkisg provided which supplement the fine directions at https://wiki.edubuntu.org/LTSPLocalAppsJaunty. In other words, do the instructions on that page first and if it doesn't work, then use these additional instructions, here. These directions are a 20-20 hindsight version, of course, not exactly as they happened.
I followed the directions at this above address, booted my client, opened firefox and wondered, how do I know if firefox is running in localapp mode? I now know that when firefox is working as a localapp it will say "Mozilla Firefox (on ltsp20)" or something similar, on the title bar of the window. However, one can also 'log into the client' (open console mode) and check there. If you have intrepid or jaunty you can do this:
- open terminal on the thin client, type 'ltsp-localapps xterm' which gives a local xterm.
- type, 'ps ax | grep fire' and check the output--a list of 'processes' that are currently running on the local client that have the text string, 'fire' in them. It will always show the, 'grep fire' process or whatever you 'grepped'. In my case, it showed that firefox was not running locally. What to do?
- ltsp-localapps firefox
[Default]Upon adding this, saving and rebooting the client, firefox booted from the menu!!! I've added this info to the ubuntu wiki page mentioned above.
The next step was getting firefox to be able to access the internet. Now that firefox was being run on client instead of on the server I had to set up NAT on the server to act as the 'middle man' between the client and the internet. (How does Squid/SquidGuard fit in here?) Now, alkisg had written a script that sounded pretty robust which would do all this stuff. However, since it has parts in Greek and well, Greek is unfortunately greek to me I couldn't avail myself of this help. I typed in the following commands at the terminal prompt on the server as root. (note this interrupts network access but is re-established. It did break my NX access :( and haven't been able to get it to work since)
- invoke-rc.d dhcp3-server stop
- invoke-rc.d NetworkManager stop
- invoke-rc.d networking stop
- sed -i -e 's/192\.168\.0\.254/192.168.0.1/g' /etc/network/interfaces
- invoke-rc.d networking start
- invoke-rc.d NetworkManager start
- invoke-rc.d dhcp3-server start
then I ran:
- sed -i -e "s/^# By default this script does nothing\./# By default this script does nothing\.\n\niptables -t nat -A POSTROUTING -j MASQUERADE/" /etc/rc.local
- sed -i -e 's/^[[:space:]]*##*[[:space:]]*net.ipv4.ip_forward[[:space:]]*=[[:space:]]*1/net.ipv4.ip_forward=1/' /etc/sysctl.conf
- sysctl -p
- iptables -t nat -A POSTROUTING -j MASQUERADE
- ltsp-update-sshkeys
- ltsp-update-image -a i386_w_localapps
--actually, I typed this last command as: ltsp-update-image which updated the original chroot, not the copy I had made per the instructions on: https://wiki.edubuntu.org/LTSPLocalAppsJaunty and that resulted in issues--I still couldn't log into my client after restart. to help troubleshoot the problem I added the following 2 lines right under the line that said [Default] in the above-mentioned lts.conf file:After doing the "ltsp-update-image -a i386_w_localapps" command mentioned above, everything would have worked. I *would* have been able to get to the internet on firefox at this point but, upon opening the app, firefox automatically opened a saved tabs with Flash video content. Since the localapp doesn't have much in the way of plugins, firefox crashed. When I quickly closed all open tabs and went to Google.com it worked!!!This allows me to open the console on the thin client by pressing Alt+Ctrl+F2 and back to normal screen by pressing Alt+Ctrl+F7.
SCREEN_02=shell SCREEN_07=ldm
Labels:
commands,
community,
solution,
thin_client_server
Saturday, June 20, 2009
Which version of java for jaunty?
I asked myself this multiple times in the last few days--some are saying that the java-6-sun version is better than java-6-openjdk. What does better mean? I just got a hold of the guy who got me started with Ubuntu and open source and planted the seeds for thin clients--Tom Marble. He worked for many years at Sun and was passionatly involved in the open-sourcing of java. He said that the java-6-sun version, as long as you have all of it's dependencies, is probably more stable. This was in response to, 'which is better'. He then led me through the terminal steps to set this up:
in terminal:
I'll comment back when I've done more tests...
in terminal:
- "sudo su" to become the root user.
- "update-java-alternatives --list" to find out what java you have installed. I had both java-6-openjdk and java-6-sun.
- "update-java-alternatives --set java-6-sun" upon which tons of lines started rolling by like, 'No alternatives for appletviewer', etc. He reassured me this was fine.
- And then it ended. Then I typed, "java -version" and it said: "java version "1.6.0_13"" and that was great since in all my efforts to update java I'd never gotten it to say that advanced of a version (it always reported, '1.6.0_0').
I'll comment back when I've done more tests...
Labels:
commands,
Java,
leadership,
teamwork,
thin_client_server
Wednesday, June 17, 2009
Scientific habits of mind
AAAS--the American Association for the Advancement of Science has been an inspirational organization to me, or at least their publications have been. I'll share a secret--I'm not a scientist (one who creates knowledge within a community of scientists)--I'm a teacher of science.
AAAS in their 2 watershed publications, "Science for All Americans" and "Benchmarks" provided me with lots to think about the question, 'what is the nature of science, and what is it like being a scientists?' While I took lots of science classes in college and in high school--I've always loved science--I never was a science professional--really just a dabbler--not really even an apprentice--well maybe a bit.
While studying for my MA a brilliant Philosophy professor, Jonas Soltis, gave us students the following task for our final paper: "Imagine it is the last day of classes for your students and that they are walking out of your science class for the last time in their life. Describe what you want them to think science, is."
The Benchmarks dedicates chapter 12 to this topic of the "habits of mind" of scientists or more specifically, how it can be developed throughout grades K-12. Chapter 12 addresses "Problem Solving" unarguably one of lifes most important skills. It talks about this:
To be continued...
AAAS in their 2 watershed publications, "Science for All Americans" and "Benchmarks" provided me with lots to think about the question, 'what is the nature of science, and what is it like being a scientists?' While I took lots of science classes in college and in high school--I've always loved science--I never was a science professional--really just a dabbler--not really even an apprentice--well maybe a bit.
While studying for my MA a brilliant Philosophy professor, Jonas Soltis, gave us students the following task for our final paper: "Imagine it is the last day of classes for your students and that they are walking out of your science class for the last time in their life. Describe what you want them to think science, is."
The Benchmarks dedicates chapter 12 to this topic of the "habits of mind" of scientists or more specifically, how it can be developed throughout grades K-12. Chapter 12 addresses "Problem Solving" unarguably one of lifes most important skills. It talks about this:
Quantitative, communication, manual, and critical-response skills are essential for problem solving, but they are also part of what constitutes science literacy more generally. That is why they are brought together here as scientific habits of mind rather than more narrowly as problem-solving skills or more generally as thinking skills.
To be continued...
Sunday, June 14, 2009
Student Agency? Questions as meaning-making tools...
(Most of this post was written on May 7--I'm finishing it up today)
A quiet, generally hard working 9th grader in class today wasn´t helping out his group. Today wasn´t the first time this has happened... He´s well liked and does his homework showing a well-developed level of responsibility (HW is a stretch for many of my students).
I had recently partially reconstituted this 4-person table, switching out a couple of students that needed a lot of support and added a couple of pretty active students to that table. These fairly active students joined 2 quiet and 'responsible' students. I did this about a week ago.
So now when I re-visited this table several minutes later, only 1 of the new boys was working. I quickly deduced that the main problem was that the 2 boys who were originally from the table didn´t know what to do and were being pretty passive about this. I chose the boy mentioned above to start with...
I asked him what their table´s experiment was about. I probably used a dangling proposition, then, too. He couldn´t tell me. So I went about asking several questions trying to see where his thinking was at. I quickly saw that he was lost so I changed my track. I said, OK I´ve got a deal for you, ask me any question you want to try and figure out what you need to know to help your group.
He couldn´t come up with a single question even with my help. Why? Was he on the spot and his mind shut down? I was rather matter of fact about things so I didn´t put him in a pressure cooker but still this might have been part of the explanation. Was he resisting my questioning and directions? In other words was he silent as a way to retain some control--AKA ´the silent treatement´? Maybe...but he wasn´t acting sullen or angry...
I didn´t know what was the deal but the group was ticked with him and he wasn´t helping so I asked him to step aside and that I´d be with him in a few minutes. I then helped the remaining members and they got up to speed, quickly.
About 3 minutes later I went back to where he was standing (I´ve got a huge room) and asked him if he knew what he could have asked me and he was silent then shook his head. I could see this wasn´t going to be a quick intervention so I asked him to stay after class to talk for a few minutes (I had prep next period). He agreed and went back to his table.
The bell rang; classmates cleared out. We sat down and I worked to understand why he hadn´t sought to understand things, just, ¨I don´t know¨. I certainly gave him plenty of prompts to ´ask me a question´. He said he doesn´t ask questions in any class. Our team of teachers know him as a good natured, generally hard working student that is sometimes frustrating to teach, too.
After more talking, I figured out that he doesn´t know how to use questions as a tool to dig himself out of confusion. This was a major revelation, I've been teaching many years and knew that sometimes students were so lost they didn't know how to work their way out of it, but I really think I need to focus more on this next year.
I've used "sentence starters" like, 'give me an example of what you mean', 'what are you talking about', 'why are we studying this', 'what does x mean' etc. I taught this student these and over the following days helped him practice them and indeed he did take a more active role in his group :-) including knowing what was going on more and being able to ask me questions. This is a start.
Many students may need extensive help to take control over their learning. What support in a GCoS classroom can I provide them?
A quiet, generally hard working 9th grader in class today wasn´t helping out his group. Today wasn´t the first time this has happened... He´s well liked and does his homework showing a well-developed level of responsibility (HW is a stretch for many of my students).
I had recently partially reconstituted this 4-person table, switching out a couple of students that needed a lot of support and added a couple of pretty active students to that table. These fairly active students joined 2 quiet and 'responsible' students. I did this about a week ago.
So now when I re-visited this table several minutes later, only 1 of the new boys was working. I quickly deduced that the main problem was that the 2 boys who were originally from the table didn´t know what to do and were being pretty passive about this. I chose the boy mentioned above to start with...
I asked him what their table´s experiment was about. I probably used a dangling proposition, then, too. He couldn´t tell me. So I went about asking several questions trying to see where his thinking was at. I quickly saw that he was lost so I changed my track. I said, OK I´ve got a deal for you, ask me any question you want to try and figure out what you need to know to help your group.
He couldn´t come up with a single question even with my help. Why? Was he on the spot and his mind shut down? I was rather matter of fact about things so I didn´t put him in a pressure cooker but still this might have been part of the explanation. Was he resisting my questioning and directions? In other words was he silent as a way to retain some control--AKA ´the silent treatement´? Maybe...but he wasn´t acting sullen or angry...
I didn´t know what was the deal but the group was ticked with him and he wasn´t helping so I asked him to step aside and that I´d be with him in a few minutes. I then helped the remaining members and they got up to speed, quickly.
About 3 minutes later I went back to where he was standing (I´ve got a huge room) and asked him if he knew what he could have asked me and he was silent then shook his head. I could see this wasn´t going to be a quick intervention so I asked him to stay after class to talk for a few minutes (I had prep next period). He agreed and went back to his table.
The bell rang; classmates cleared out. We sat down and I worked to understand why he hadn´t sought to understand things, just, ¨I don´t know¨. I certainly gave him plenty of prompts to ´ask me a question´. He said he doesn´t ask questions in any class. Our team of teachers know him as a good natured, generally hard working student that is sometimes frustrating to teach, too.
After more talking, I figured out that he doesn´t know how to use questions as a tool to dig himself out of confusion. This was a major revelation, I've been teaching many years and knew that sometimes students were so lost they didn't know how to work their way out of it, but I really think I need to focus more on this next year.
I've used "sentence starters" like, 'give me an example of what you mean', 'what are you talking about', 'why are we studying this', 'what does x mean' etc. I taught this student these and over the following days helped him practice them and indeed he did take a more active role in his group :-) including knowing what was going on more and being able to ask me questions. This is a start.
Many students may need extensive help to take control over their learning. What support in a GCoS classroom can I provide them?
- How does this support look?
- How can I include this support, especially at the start of the year, on a day to day basis?
- How can I assess where students are at on this skill? Probably scenarios would be helpful.
- Obviously many educators have created lessons and structures to support this. It would be nice not totally re-inventing the wheel...
Labels:
assessment,
culture,
Curriculum,
Scaffolding
building a culture (started 4-30, finished today)
I've spent a little time each day on reviewing each classes posts to one another and also updating the class list of values. It has been cool doing activities and discussions in class as well as on line. I've been able to reference things students have said to our codified class list of values. Even students have referred to it a couple of times, including once when a student challenged another student saying that he wasn't adding anything new to the conversation, just repeating other people's stuff.
See the screen shots at the bottom showing Period 4's list and their comments listed below. This is an un-edited list, of course so you get what's there.
There is much to do in this area:


See the screen shots at the bottom showing Period 4's list and their comments listed below. This is an un-edited list, of course so you get what's there.
There is much to do in this area:
- Don't have a list for each class, but have a single list of values that all of my science students and I can agree to. What's a process by which to do this that is effective and maintains all students buy-in? Is this possible while allowing for and developing the unique personalities of each class?
- Bring professional scientists into this dialog.
- Find effective ways to grow the culture--for example, start with just a couple at the start of the year and constantly re-visit the list, adding and improving and changing as the year goes on?
- What are different strategies to bringing this to life in daily class? That is, what is scaffolding for both the students and I to help us develop the habit of mind of referencing what we do relative to agreed upon community values.
- How do we keep this a living list?
- Of course, all of the answers must be practical or they won't be used!


Labels:
community,
culture,
Curriculum,
values
Subscribe to:
Posts (Atom)

