Review Of CRST After 3 Months - Page 1 (2024)

") {$(textAreaBox).setCursorPosition(selectionStart + 8);}else {$(textAreaBox).setCursorPosition(selectionStart + 3);}}else {$(textAreaBox).focus();$(textAreaBox).surroundSelectedText(commandBefore, commandAfter);}}if ($(closestDiv).is('.tableLinkButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkButton').addClass('tableButtonPressed');$('.linkForm').fadeIn();}if ($(closestDiv).is('.tableImageButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableImageButton').addClass('tableButtonPressed');$('.imageForm').fadeIn();}if ($(closestDiv).is('.tableLinkTTButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkTTButton').addClass('tableButtonPressed');$('.linkOnTTForm').fadeIn();}if ($(closestDiv).is('.tableSmileyButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableSmileyButton').addClass('tableButtonPressed');$('.smileyForm').fadeIn();}});$('.formatFormCancel').on('click', function() {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();});$('.previewButton').on('click', function(e) {e.preventDefault();$('.previewButton').html('...Creating Preview')var comment = $('.textAreaBox').val();var dataToSend = {"comment": comment, "createPreview":1};$.post('/truckers-forum/includes/php/admin.php', dataToSend, function(data) {$('html, body').animate({'scrollTop':'+=300'}, 600);$('.previewButton').html('Preview');$('.previewDivInner').html(data.comment);$('.previewDiv').fadeIn();},'json');});$('.previewCancel').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();});$('.previewReply').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();$('.replyButton').trigger('click');});$('.replyButton').on('click', function(e) {e.preventDefault();if ($('.textAreaBox').val().length > 5500) {alert('Your post is too long. Please reduce the size to below 5,500 characters. The count is shown below the window you\'re typing into.');}else {$('.replyButton').html('Sending...');var topicBody = $('.textAreaBox').val();var categoryID = $('.categoryHeading').data('category');var topic = $('.topicHeading').data('topic');if ($('.subscribeButton').hasClass('subscribedToTopic')) {var subscribed = "yes";}else {var subscribed = "no";}var dataArray = {'categoryID': categoryID, 'comment': topicBody, 'topic': topic, 'subscribed': subscribed};$.post('/truckers-forum/includes/php/insertNewComment.php', dataArray, function(data) {var dataReturned = $.parseJSON(data);if (dataReturned.status == "success") {$('.replyButton').html('Success! Reloading page...');location.reload(true);}// if they posted too recentlyelse if (dataReturned.status == "timeLimit") {alert('Sorry, you can only post a new comment every two minutes. Please wait a short time and hit Submit again.');}else if (dataReturned.status == "moderation") {alert('Your comment is awaiting moderation. We will send you an email if it is approved. Hopefully it will only be a few minutes but it could be a few hours so we appreciate your patience. We\'re doing all we can to keep this a friendly and helpful community for everyone. Thanks!');location.reload(true);}else if (dataReturned.status == "commentLimit") {alert('Sorry, you have too many comments in moderation right now. Please be patient while we get caught up and submit this again in a little while. Thanks.')}else if (dataReturned.status == "banned") {alert('Sorry, you have been banned from posting in our forum.');}else {alert('There was an error of some sort. Please hit the "Submit" button again. If this error continues, contact brett@truckingtruth.com and we\'ll get it straightened out. Thanks.');}});}});$('.tagListUL').on('click', function(e) {e.preventDefault();var $target = $(e.target);if ($target.hasClass('btn')) {$target.toggleClass('tagged');}});$('.submitTagsButton').on("click", function(e) {e.preventDefault();$('.submitTagsButton').html('...sending');var taggedElements = $('.tagListUL').find('.tagged');var tagArray = [];for (i=0; i\n\n'; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(insertedHtml, selectionStart, true);$('.imageForm').fadeOut();$('.tableImageButton').removeClass('tableButtonPressed');$('.urlForImage').val('');}img.src = imageUrl;}$('.submitImageButton').on('click', function() {var imageUrl = $('.urlForImage').val();validateImageUrl(imageUrl); });function validateLink(link) {return fetch(link, { method: 'HEAD' }).then(response => {return (response.status === 200 || response.status === 301 || response.status === 302);}).catch(error => {console.log('Error:', error);return false;});}$('.submitLinkButton').on('click', function(e) {e.preventDefault();var textForLink = $('.textForLink').val();if (textForLink.length < 4) {alert('Please put a description for the page you\'re linking to in the "Link Text" field.');}else {var linkUrl = $('.urlForLink').val();var linkHtml = '' + textForLink + '';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);$('.linkForm').fadeOut();$('.tableLinkButton').removeClass('tableButtonPressed');$('.textForLink').val('');$('.urlForLink').val('');}});$('.ttLinkButton').on('click', function(e) {e.preventDefault();var link = parseInt($(this).data('link'));// we have to subtract 1 from link to get the proper array indexvar linkHtml = ttLinkButtonArray[link - 1];// var linkText = $(this).html();// var linkHtml = '' + linkText + ''; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);});$('.smileyForm').on('click', function(e) {e.preventDefault();if ($(e.target).data('name') == "cancel") {return;}var imageName = $(e.target).closest('img').data('name');if (imageName !== 'cancel') {var imageHtml = 'Review Of CRST After 3 Months - Page 1 (1) ';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(imageHtml, selectionStart, true);}});$('.quoteButton').on('click', function(e) {e.preventDefault();$('.newTopicWrapper').show();var comment = $(this).parents('.commentWrapper').find('.commentText');var commentor = $(this).parents('.commentWrapper').find('.nickname').html();$('html, body').animate({scrollTop: ($('.newTopicWrapper').offset().top)}, 500);// gotta get the glossary .definitionTerm spans and .tooltipElements out of the quote$(comment).find('.tooltipElements').remove();$(comment).find('.definitionTerm').each(function(i,v) {$(this).replaceWith($(this).text().trim());});$(comment).find('.viewMoreQuoteButton').remove();// $(comment).find('span[itemprop="text"]').unwrap();// $(comment).trim();var commentWrapped = "
" + $(comment).html().trim() + "
\n\n";var uidOfSender = $('.uidDiv').data('uid');// we have to get the current content of the textarea then append this quotevar currentTextAreaVal = $('.textAreaBox').val();var newTextAreaVal = currentTextAreaVal + "\n\n\n\n" + commentWrapped;// $('.textAreaBox').val(commentWrapped);$('.textAreaBox').val(newTextAreaVal);textAreaCheck(0, 1);});// this is the report button$('.reportButton').on("click", function(e) {e.preventDefault();$thisButton = $(this);if (confirm("Just confirming that you would like to report this comment?")) {$thisButton.text("..sending");var $commentWrapper = $(this).parents('.commentWrapper');var commentId = $commentWrapper.data('commentid');var commentText = $commentWrapper.find('.commentText').html();var nickname = $commentWrapper.find('.nickname a').text();var topicID = $('.topicHeading').data('topic');var topicHeading = $('.topicHeading').text();var page = $('.topicHeading').data('page');var uidOfSender = $('.uidDiv').data('uid');var options = {"reportComment":"1", "topic":topicID, "nickname":nickname, "commentText":commentText, "commentId":commentId, "uidOfSender":uidOfSender, "topicHeading":topicHeading, "page":page};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {$thisButton.text('Report');if (data.status == "success") {alert("Thanks! We've received your report about this comment and you can be certain we'll be taking a close look at it. We appreciate the help!");}else {alert("hmmmm....that didn't go through for some reason. Try hitting the 'report' button one more time. Thanks.");}},'json');}});$('.subscribeButton').on('click', function(e) {e.preventDefault();$(this).toggleClass('subscribedToTopic');});$('.goToPageSubmit').on('click', function(e) {e.preventDefault();var topic = $('.topicHeading').data('topic');var page = $(this).parents('.topicPaginationWrapper').find('.goToPage').val();var subjectString = $('.topicHeading').data('subjectstring');var locationString = "https://www.truckingtruth.com/truckers-forum/Topic-" + topic + "/";locationString += "Page-" + page + "/" + subjectString;location.href=locationString;});// this looks for the first blockquote in each commentTextWrapper and shortens it if it's really long$.each($('.commentWrapper'), function(i,comment) {// console.log($(this));var $quote = $(this).find('blockquote:first');// console.log($quote);// if the quote is taller than 450 pxif ($quote.height() > 450) {// create the "View More" buttonvar a = $("").addClass('btn btnDarkBlueArrowDown viewMoreQuoteButton').attr('data-id', i).html('View More');// add the heightReduced class to the quote$quote.addClass('heightReduced');// append the View More button and clearTall$(a).insertAfter($quote);$('').insertAfter($(a));}});// this will expand the blockquote which we shortened with the previous .each function$('.viewMoreQuoteButton').on("click", function(e) {e.preventDefault();// find the blockquotevar $blockquote = $(this).parents('.commentText').find('blockquote:eq(0)')// if the height is currently reducedif ($blockquote.hasClass('heightReduced')) {// remove the height restrictino$blockquote.removeClass('heightReduced');// convert the arrow down to an arrow up$(this).html("View Less").removeClass('btnDarkBlueArrowDown').addClass('btnDarkBlueArrowUp');// scroll to the top of the blockquote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}// if it's currently at full heightelse {// add heightReduced to reduce the height$blockquote.addClass('heightReduced');// convert the button to arrow down$(this).html("View More").removeClass('btnDarkBlueArrowUp').addClass('btnDarkBlueArrowDown');// scroll back to the top of the quote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}});// if there are new comments this will scroll the page to themif ($('.topicHeading').data('pagename') == "Newest" && $('.newTopic').length) {$('html, body').animate({scrollTop: ($('.newTopic:eq(0)').offset().top - 20)}, 500);}// this creates a searchable list out of the tags with List.js (/includes/js/List.js)// and the fuzzysearch plugin (/includes/js/fuzzysearch.js)var listOptions = { valueNames: [ 'sorted' ], listClass: 'tagListUL', page: 500, plugins:[ListFuzzySearch()]};var tagList = new List('tagListInnerDiv', listOptions);// this is for the page button// make an array of elements that should be included in page menuvar inclusionArray = ["h1","h2","h3",".commentInfo",".nextPageButton",".prevPageButton",".startNewTopic",".returnButtons"];// make an array of elements that should not be included in page menuvar exclusionArray = [".mobileShortcutDiv",".tooltipElements",".previewDiv",".jumpDiv",".newTopicWrapper",".tagListWrapper"];// createPageMenuButton(inclusionArray,exclusionArray);// this is for submitting ratings and tags for each conversation$('.ratingSubmitButton').on('click', function(e) {e.preventDefault();$(this).html('...sending');var rating = $('.ratingSelect').val();var topic = $('.topicHeading').data('topic');$.post('/truckers-forum/includes/php/updateTags.php', {"rating":rating, "topic_id": topic}, function(data) {$('.ratingSubmitButton').html('Success!');setTimeout(function() {$('.ratingSubmitButton').html("Submit");}, 600);});});});

Topic 698 | Page 1

  • Trucker's Forum
  • Review Of CRST After 3 Months - Page 1 (2)
  • Diaries Category
  • Review Of CRST After 3 Months - Page 1 (3)
  • CRST after 3 months

Page 1 of 3 Next PageGo To Page:

Troubador222's Comment

Review Of CRST After 3 Months - Page 1 (4)

Troubador222

Cape Coral, FL

Rookie Solo Driver

Posts: 151

Joined Us:

11 years, 5 months ago

11 years, 1 month ago

Editor's Note: We have a fantastic Review Of CRST Paid CDL Training so check that out.

28 days with my trainer and now starting into 2 months with my co driver. It has been a solid and sometimes scary adventure. We have made it through our mistakes, which have included twice making wrong turns and coming up on low marked over passes. We have had 2 retread trailer tires go out, that looked perfectly fine on pre trips, and had good pressure. One I caught in my mirrors before it blew, with chinks of rubber coming off. The other just shed the retread and exploded while my co driver was driving, and damaged the tire next to it. It also wrapped around the mud flap bar and bent that. We were lucky both times, got to help safely and back on the road in hours.

I see lots of questions from people looking to start with CRST, and lots of bashing of the company on some of the other trucking forums. CRST is a big company, and they use drivers at low pay, for paying for their school. Thats not that bad a thing, when you look at what you are getting, a 4500 dollar free education and a class A CDL. They are an expediting trucking company, and to do well here, you have to have a good work ethich, and show them, you want to run and be on time. Being late will get you sitting in truck stops waiting for loads, and very little pay. A large part of their freight are air freight loads that are time sensitive. Being late will hurt you. Being on time, all the time, often means you have a load coming in before you even deliver the next one. And because the pay rate for contract drivers is 22 cents a mile for the first 3 months, that is the only way to make a living here.

Team driving is tough. You live with a co driver 24/7 in a space the size of a walk in closet. My co driver and I went through school together, and roomed together, and thought we would be alright, but at the end of our first 2 weeks, we were on the verge of splitting. We ended up working it out, and now are doing well, but he asked to be off the truck, and I was ready at that time to let it happen. He came out of training as a bit of a super trucker, and I came out a bit too over cautious. I resented his "know it all attitude" and he thought I was going to to be to slow. After the initial fire works, we sat on it for a day, and talked, then worked it out. The bottom line is, we are glad we did, because through that conflict, we found, we both have strengths and weaknesses in what we got through school, and training, and when we can communicate, and put our heads together, we found the two heads are better than one. Now, i realize, that without him, I might have made some serious mistakes that not only could have cost me my job, but could have hurt someone. And he is the same way. You just have to get through those egos, and find that common ground. I think we are lucky and blessed to have done that. We are also fortunate, to have a really good Fleet Manager , who took us seriously when we said we wanted to run hard and does a pretty good job of keeping us moving. Last time we were at our terminal , we took him to lunch to show him we appreciated him keeping us busy.

CRST is portrayed in some forums as being the "evil empire".Review Of CRST After 3 Months - Page 1 (5)Review Of CRST After 3 Months - Page 1 (6) That is bull malarkey, and I can tell you those people doing that are the ones who could not cut it, when it came down to being on time, being available for loads, and being aware of the laws and safety issues that govern trucking.

CRST does have an awful CSA safety rating, that is true. That is due to a couple of things, mainly speeding tickets, (most are caught either on down hill areas or going into reduced speed zones), and not wearing the seat belts. In the year before I came to drive here, they became very serious about bringing that score down. They redid their entire safety department from the bottom up. They hired a couple of ex dot officers whose job it is to travel around to truck stops, find CRST trucks, and do mock DOT inspections on the tractors and trailers, to find violations before the real DOT finds them. The drivers are not penalized, just shown what to look for. Pretrip is what they want, and is what they expect. Right now, they are doing a huge repair and inspection on their trailers. We were in Laredo TX the other day at our drop yard there, and they had a repair service in there working and checking all trailers that came into the yard. They have told us that they are instituting a plan, where of we have a trailer that has a problem, and drop it without reporting it they are going to go back and look to see who dropped that trailer without reorting the problem, and penalize those drivers. That is where things stand.

They also told us they are looking at ways to increase driver retention. A big problem here is home time. I was out 9 weeks before my last home time, and will be out 8 weeks until the next. That is hard on a lot of people. I have no kids at home, and my wife and I have been married for 32 years, and it is still hard on us. They say they are working on ways to make that better. Time will tell.

Bottom line is, they are not the evil empire, they are just a huge company, that is always going through changes to adapt. The people who come in thinking they will be the center of the universe will be disappointed, but that will happen anywhere. I am getting my school paid for. Thats good for me

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Terminal:

A facility where trucking companies operate out of, or their "home base" if you will. A lot of major companies have multiple terminals around the country which usually consist of the main office building, a drop lot for trailers, and sometimes a repair shop and wash facilities.

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

SAP:

Substance Abuse Professional

The Substance Abuse Professional (SAP) is a person who evaluates employees who have violated a DOT drug and alcohol program regulation and makes recommendations concerning education, treatment, follow-up testing, and aftercare.

DOT:

Department Of Transportation

A department of the federal executive branch responsible for the national highways and for railroad and airline safety. It also manages Amtrak, the national railroad system, and the Coast Guard.

State and Federal DOT Officers are responsible for commercial vehicle enforcement. "The truck police" you could call them.

Fleet Manager:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

TWIC:

Transportation Worker Identification Credential

Truck drivers who regularly pick up from or deliver to the shipping ports will often be required to carry a TWIC card.

Your TWIC is a tamper-resistant biometric card which acts as both your identification in secure areas, as well as an indicator of you having passed the necessary security clearance. TWIC cards are valid for five years. The issuance of TWIC cards is overseen by the Transportation Security Administration and the Department of Homeland Security.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Old School's Comment

Review Of CRST After 3 Months - Page 1 (7)

Old School

Moderator

Huntington, TX

Experienced Driver

Posts: 11599

Joined Us:

11 years, 9 months ago

732 Photos

11 years, 1 month ago

Troubador, Congratulations on all your hard earned successes! Wow, that is just a really great post in my opinion, it gives a lot of insight into the things we talk about here at Trucking Truth. Things like it's not so much the "good company" that will help you be successful, but your attitude and work ethic that will help you survive and even excel at this new lifestyle and way of earning a dollar. You know this may sound funny, but I've seen a lot of CRST trucks out there in my travels and every time I see one I wonder if that could be my old friend Troubador in there. Man that must be a big operation because I see the trucks everywhere, and they're not sitting at the truck stops they are moving.

Our experiences have some parallels, in that we both went to work for a company that a lot of people bash on the internet, and that our companies have a high CSA score. My employer is implementing all the same strategies that you mentioned in your post, including the idea of hiring some former DOT officers. Time will tell on management's decisions, and you can bet they will change their mind a couple hundred times on how best to deal with the problems.

I didn't even realize that CRST had a flat bed division, but ran into a few drivers at an OSB plant in the North East. Were you aware of that? If you want to go into flat bed work you might could just move over to that division with out much of a problem. The driver that I spoke with talked like that was how CRST got started in the first place, but that their expediting business really grew fast into what it is today. This driver told me he was very happy with CRST and that he wouldn't work for anybody else hauling flat bed, because they gave him the best pay and home time he could ever ask for.

I know that teaming is tough just from my short experience with it while I was training. We ran like a team because that was the way my trainer could make some real money. There wasn't a whole lot of training going on, but we did burn up some highway. I actually enjoyed it though, because when my trainer was asleep I didn't have to put up with his craziness. I think the best training came from actually getting out there and doing the job, getting yourself out of the messes that you got yourself into in the first place, and just getting a good feel for what to watch out for and what to do when you've got to go to plan B. Right from the start I was doing 600 miles a day or a little better, and I was exhausted when it was time to get in the sleeper - I adapted real quick to sleeping in that moving truck, in fact I really slept well most of the time. I did the same as you, I'd usually kind of unwind by going through the recent posts on Trucking Truth on my phone and then drift off to sleep.

I'll keep my eyes open for you, and hopefully we'll run into each other one day.

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

DOT:

Department Of Transportation

A department of the federal executive branch responsible for the national highways and for railroad and airline safety. It also manages Amtrak, the national railroad system, and the Coast Guard.

State and Federal DOT Officers are responsible for commercial vehicle enforcement. "The truck police" you could call them.

Troubador222's Comment

11 years, 1 month ago

Thanks oldschool, I would love to run into you out there and grab a cup of coffee. We're truck 3984.

Yeah Malone is CST, but they are all owner ops or lease drivers. No company drivers there. Its like a different division entirely and drivers dont just move back and forth. STI our specialty division is the same way. All owner ops, or lease. They do mostly LTL and very high value loads.

LTL:

Less Than Truckload

Refers to carriers that make a lot of smaller pickups and deliveries for multiple customers as opposed to hauling one big load of freight for one customer. This type of hauling is normally done by companies with terminals scattered throughout the country where freight is sorted before being moved on to its destination.

LTL carriers include:

  • FedEx Freight
  • Con-way
  • YRC Freight
  • UPS
  • Old Dominion
  • Estes
  • Yellow-Roadway
  • ABF Freight
  • R+L Carrier

Brett Aquila's Comment

Review Of CRST After 3 Months - Page 1 (9)

Brett Aquila

Moderator

Keeseville, NY

Experienced Driver

Posts: 13359

Joined Us:

17 years, 4 months ago

138 Photos

11 years, 1 month ago

That was a fantastic post Troubador! Incredibly helpful and interesting. And congrats on doing so well with the start of your career!

CRST does indeed get more than their fair share of negativity on the Internet and of course I always say that you make your own way in trucking regardless of the company you work for. If you run hard, you're safe, you're reliable, and you have a great attitude you're going to do well no matter what company you're with.

I also try to emphasize to people that they should be getting their opinions about a trucking company from the company's current drivers, face to face if possible. I mean, you read TheTruckersReport and you'd think these companies were "evil empires" as you mentioned. But listen to a driver that's out there doing it successfully day in and day out and you get a much more upbeat and positive report about life at the company. You're the perfect example of that. You're out there doing it right, and life on the road with CRST is rolling along nicely for ya.

That was a great read!!! Thanks for the update! Review Of CRST After 3 Months - Page 1 (10)

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Mo C.'s Comment

Review Of CRST After 3 Months - Page 1 (11)

Mo C.

Home State: IL

In CDL School

Posts: 7

Joined Us:

11 years, 4 months ago

11 years, 1 month ago

Hey! Troubador222 thanks for the info on CRST, I'm interested in them and would like to get your experience with their orientation, physical etc. do's and don'ts when you get a moment. I sent in an app and was contacted by recruiter John who stated they didn't have a school in Illinois area and due to Illinois strict CDL laws he recommended I get my CDL first. He also said to keep him informed on my progress. It was a little disappointing but also made me realize why we have somany Cdl schools here. I have a list of over fifty certified state schools and the majority here in Chicago. IT took a while to find the right school that fit. So thanks again and Much Success. Sincerely Mo!

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

SAP:

Substance Abuse Professional

The Substance Abuse Professional (SAP) is a person who evaluates employees who have violated a DOT drug and alcohol program regulation and makes recommendations concerning education, treatment, follow-up testing, and aftercare.

Troubador222's Comment

Review Of CRST After 3 Months - Page 1 (12)

Troubador222

Cape Coral, FL

Rookie Solo Driver

Posts: 151

Joined Us:

11 years, 5 months ago

11 years, 1 month ago

Hey! Troubador222 thanks for the info on CRST, I'm interested in them and would like to get your experience with their orientation, physical etc. do's and don'ts when you get a moment. I sent in an app and was contacted by recruiter John who stated they didn't have a school in Illinois area and due to Illinois strict CDL laws he recommended I get my CDL first. He also said to keep him informed on my progress. It was a little disappointing but also made me realize why we have somany Cdl schools here. I have a list of over fifty certified state schools and the majority here in Chicago. IT took a while to find the right school that fit. So thanks again and Much Success. Sincerely Mo!

Thanks Mo. I can tell you one advantage to getting your CDL first is you will not be a contract employee. I went to a CRST sponsored school and I am obligated to them for 8 months. If you come in with your CDL, your starting pay is a bit higher, and if you dont like it, you can leave anytime. If I leave before my 8 months is over, I will owe them for the school, plus if I dont pay, they will not release my school certificate. I did not have the resources for school on one hand, and because I am a home owner, I did not qualify for aid, so I decided to go the company school route.

We took our physicals at the school, the first day we were there. It is not that involved. First we did a drug test, then they did an eye test, and blood pressure the first day. That was with a nurse/PA. The next day the doc came in and we touched our tows, and he checked us for some mobility and a hernia. Listened to our hearts and checked some vital signs. One thing he told me that I took to heart, was about losing weight. I had lost 10 lbs in the weeks leading up to leaving for school, and have since lost another 30. He said if I didn't lose that weight, chances were when I went to renew my med card, I would be required to take a sleep apnea test at my expense. A bonus too to losing is my blood pressure is down again, and I no longer need meds to keep it range, so next time, I should get a two year card.

After we finished school, we shipped down to cedar rapids for orientation. It was a 3 day affair, but long hours. The first 2 days started at 7 in the morning, and went to 8 at night with breaks. They also provided us with lunch. Orientation was company policy, safety, and some classes that we were tested on. The 2 of note were on HAZMAT procedures and the handling of high value and air freight loads. We also took a company road test. The last day was only 8 to 2. We dod not find out if we were hired or not until the end of that last day, when they brought us our company IDs and comdata cards. Not everyone was hired. For various reasons, which included failing the tests. You had one chance to retake them if you failed, and they were open book tests. You also had a chance to take the driving test again if you failed. I did the first time, simply because I kissed a curb with the trailer tires on a tight right turn. I passed with compliments the second time. (When you leave the parking lot, there is a sidewalk bike path before you get to the road. I was the only one who stopped there. )

Like I said above, they are not bad. They are a big company, so you are one of thousands of employees. If you work hard, and are on time, you will get the miles. They have their teams rated 1 through 6 with 1 being the best and 6 the worst. To get to 1 you also have to have HAZMAT, and those teams with HAZMAT get more miles. We were told this weekend, we are already at a 2. My codriver has his HAZMAT endorsem*nt, and I took and passed the test and was finger printed when I was home last, so mine should be done by my next hometime. (Thanks again to the Highroad program here at TT. I went through the HAZMAT section again the night before I took the test and passed by a mile. Cant thank you enough for that Brett!)

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

HAZMAT:

Hazardous Materials

Explosive, flammable, poisonous or otherwise potentially dangerous cargo. Large amounts of especially hazardous cargo are required to be placarded under HAZMAT regulations

SAP:

Substance Abuse Professional

The Substance Abuse Professional (SAP) is a person who evaluates employees who have violated a DOT drug and alcohol program regulation and makes recommendations concerning education, treatment, follow-up testing, and aftercare.

Sleep Apnea:

A physical disorder in which you have pauses in your breathing, or take shallow breaths, during sleep. These pauses can last anywhere from a few seconds to a few minutes. Normal breathing will usually resume, sometimes with a loud choking sound or snort.

In obstructive sleep apnea, your airways become blocked or collapse during sleep, causing the pauses and shallow breathing.

It is a chronic condition that will require ongoing management. It affects about 18 million people in the U.S.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Troubador222's Comment

Review Of CRST After 3 Months - Page 1 (13)

Troubador222

Cape Coral, FL

Rookie Solo Driver

Posts: 151

Joined Us:

11 years, 5 months ago

11 years, 1 month ago

That was a fantastic post Troubador! Incredibly helpful and interesting. And congrats on doing so well with the start of your career!

CRST does indeed get more than their fair share of negativity on the Internet and of course I always say that you make your own way in trucking regardless of the company you work for. If you run hard, you're safe, you're reliable, and you have a great attitude you're going to do well no matter what company you're with.

I also try to emphasize to people that they should be getting their opinions about a trucking company from the company's current drivers, face to face if possible. I mean, you read TheTruckersReport and you'd think these companies were "evil empires" as you mentioned. But listen to a driver that's out there doing it successfully day in and day out and you get a much more upbeat and positive report about life at the company. You're the perfect example of that. You're out there doing it right, and life on the road with CRST is rolling along nicely for ya.

That was a great read!!! Thanks for the update! Review Of CRST After 3 Months - Page 1 (14)

I could not have done this without you and your wonderful web site, nor all the people here who gave me good advice and helped along they way. Thank You!

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Mo C.'s Comment

Review Of CRST After 3 Months - Page 1 (15)

Mo C.

Home State: IL

In CDL School

Posts: 7

Joined Us:

11 years, 4 months ago

11 years, 1 month ago

Thanks for the great info Troubador and I also am thankful for this site, you and others, My goal was to get pre approved and see if I was even qualified before I fork out 2000 bucks for Cdl school. It really paid off cause when I mention this site or I am monitoring one of their employees progress, I get almost instant call backs, I'm approved to start orientation when I finished school from a few companies. I'm really surprised cause when I started researching this industry last year and before TT site, I was at another site and with all the negativity (I said no I don't think so!) Then I read Brett's book which was hilarious by the way, this site changed my perspective on the trucking industry. Now finally I think I'm almost ready with having my personal life in order because from what I'm hearing I must be prepared to be out on the road for awhile. So thanks again, Mo out!!!!

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Brett Aquila's Comment

Review Of CRST After 3 Months - Page 1 (16)

Brett Aquila

Moderator

Keeseville, NY

Experienced Driver

Posts: 13359

Joined Us:

17 years, 4 months ago

138 Photos

11 years, 1 month ago

this site changed my perspective on the trucking industry

I can't think of anything that makes us more proud than hearing that!

There's nothing easy about trucking, but at the same time there's nothing in the world like it. If you're cut out for it and you dive in with all of the hard work, determination, and great attitude you can muster, you'll come away with some of the most priceless memories imaginable, a long list of lessons in life you might not find anywhere else, and a career you can be truly proud of.

We're here to help so don't hesitate anytime you have any questions. We're always happy to help out any way we can.

Sharaya 's Comment

Review Of CRST After 3 Months - Page 1 (17)

Sharaya

Home State:

Preparing For School

Posts: 3

Joined Us:

11 years, 1 month ago

11 years, 1 month ago

@Troubador222Great info. CRST was my choice too. Hoping to be heading to school soon. I've seen lots of negative info about the pay scale, but it didn't bother me. The CSA rating was worrisome, so I'm happy to hear about the new changes within the safety department that have already been implemented. Hopefully, I'll be one of the drivers that helps to improve that rating once I get out there.

Thanks also for the heads-up about the trailer tire issues. It's one of the things I've learned about through Brett's High Road course that looked to be one of the most vulnerable areas of the vehicle.

Singing your praises Brett for this wonderful site you have created for those of us that are just getting started in the industry. Lots of gratitude for the experienced drivers that share the wealth of their hard-earned wisdom.

CSA:

Compliance, Safety, Accountability (CSA)

The CSA is a Federal Motor Carrier Safety Administration (FMCSA) initiative to improve large truck and bus safety and ultimately reduce crashes, injuries, and fatalities that are related to commercial motor vehicle

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

Page 1 of 3 Next PageGo To Page:

Return To Diaries CategoryTrucker's Forum Homepage

New Reply:

New! Check out our help videos for a better understanding of our forum features

Bold

Italic

Underline

Quote

Photo

Link

Smiley

Links On TruckingTruth

Done

Review Of CRST After 3 Months - Page 1 (18)Review Of CRST After 3 Months - Page 1 (19)Review Of CRST After 3 Months - Page 1 (20)Review Of CRST After 3 Months - Page 1 (21)Review Of CRST After 3 Months - Page 1 (22)Review Of CRST After 3 Months - Page 1 (23)Review Of CRST After 3 Months - Page 1 (24)Review Of CRST After 3 Months - Page 1 (25)Review Of CRST After 3 Months - Page 1 (26)Review Of CRST After 3 Months - Page 1 (27)Review Of CRST After 3 Months - Page 1 (28)Review Of CRST After 3 Months - Page 1 (29)Review Of CRST After 3 Months - Page 1 (30)Review Of CRST After 3 Months - Page 1 (31)Review Of CRST After 3 Months - Page 1 (32)Review Of CRST After 3 Months - Page 1 (33)Review Of CRST After 3 Months - Page 1 (34)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

This topic has the following tags:

Choosing A Truck Driving JobChoosing A Trucking CompanyCompany Sponsored CDL TrainingCRST Van ExpeditedDriver ResponsibilitiesFirst Solo Months On The RoadLife On The RoadTruck Driving LifestyleTruck Driving Stories

Click on any of the buttons above to view topics with that tag, or you can view a list of all forum tags here.

Review Of CRST After 3 Months - Page 1 (2024)
Top Articles
Latest Posts
Article information

Author: Rueben Jacobs

Last Updated:

Views: 5990

Rating: 4.7 / 5 (77 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Rueben Jacobs

Birthday: 1999-03-14

Address: 951 Caterina Walk, Schambergerside, CA 67667-0896

Phone: +6881806848632

Job: Internal Education Planner

Hobby: Candle making, Cabaret, Poi, Gambling, Rock climbing, Wood carving, Computer programming

Introduction: My name is Rueben Jacobs, I am a cooperative, beautiful, kind, comfortable, glamorous, open, magnificent person who loves writing and wants to share my knowledge and understanding with you.